diff --git a/.env.example b/.env.example new file mode 100644 index 0000000000000000000000000000000000000000..30ad0b7df01c28daf5a82737c214bb8c0e6a6d1e --- /dev/null +++ b/.env.example @@ -0,0 +1,5 @@ +AI71_API_KEY= # Get at https://marketplace.ai71.ai/api-keys +ROBOFLOW_API_KEY= # Get at https://app.roboflow.com/ + +INFERENCE_API_URL= +INFERENCE_API_KEY= \ No newline at end of file diff --git a/.gitattributes b/.gitattributes index ff4fb52b945713da7c3ea32d08ad355a44ded8a2..f2d9f2c797e94478351e73cc46721cb148347ed9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,5 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +frontend/react-code/src/assets/falcondemo.mp4 filter=lfs diff=lfs merge=lfs -text +frontend/FINAL_MODEL.keras filter=lfs diff=lfs merge=lfs -text *.jpeg filter=lfs diff=lfs merge=lfs -text *.jpg filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..674482f28b1e447423eca3204645ef44d6cb2c6b --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.pyc +__pycache__/ +db.sqlite3 +.env +.conda/ +.venv/ +.vscode/ + +backend/.hc_backend +backend/api/migrations/* + +frontend/.hc_frontend +.aider* +frontend/.streamlit/secrets.toml \ No newline at end of file diff --git a/.streamlit/secrets.toml b/.streamlit/secrets.toml new file mode 100644 index 0000000000000000000000000000000000000000..c7535bca1baedf2811112f53bedd3cceca9c8a78 --- /dev/null +++ b/.streamlit/secrets.toml @@ -0,0 +1,3 @@ +INFERENCE_API_URL = "https://detect.roboflow.com" +INFERENCE_API_KEY = "LSbJ0tl3WTLn4Aqar0Sp" +AI71_API_KEY = "api71-api-1a7b704d-f950-4507-95cc-c26ce3457d75" \ No newline at end of file diff --git a/Disease_Detection/app.py b/Disease_Detection/app.py new file mode 100644 index 0000000000000000000000000000000000000000..ca679bd9a86617d5cfa7d347af568ccd17940fd2 --- /dev/null +++ b/Disease_Detection/app.py @@ -0,0 +1,80 @@ +import streamlit as st +from PIL import Image +import tensorflow as tf +import cv2 +import numpy as np + +# Load the model +try: + model = tf.keras.models.load_model('FINAL_MODEL.keras') +except FileNotFoundError: + st.error("Disease classification model not found. Please ensure 'FINAL_MODEL.keras' is in the same directory as this app.") + model = None + +# Title of the app +st.title("DISEASE DETECTION n CLASSIFICATION") + +# Upload an image file +uploaded_image = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"]) + +if uploaded_image is not None and model is not None: + + img_opened = Image.open(uploaded_image).convert('RGB') + #image_opened = Image.open(uploaded_image) + image_pred = np.array(img_opened) + image_pred = cv2.resize(image_pred, (150, 150)) + + # Convert the image to a numpy array + image_pred = np.array(image_pred) + + # Rescale the image (if the model was trained with rescaling) + image_pred = image_pred / 255.0 + + # Add an extra dimension to match the input shape (1, 150, 150, 3) + image_pred = np.expand_dims(image_pred, axis=0) + + # Print the shape of the preprocessed image + print("Shape of the preprocessed image:", image_pred.shape) + + # Predict using the model + prediction = model.predict(image_pred) + + # Example prediction output + prediction = np.array(prediction) + + #print(f"Prediction_Classes for different types\ncovid: 0\nnormal_chestray: 1\npneumonia: 2") + + # Get the predicted class + predicted_ = np.argmax(prediction) + # Display the image + print(f"Predicted array for : {predicted_}") + + # Decode the prediction + if predicted_ == 0: + predicted_class= "Covid" + elif predicted_ == 1: + predicted_class= "Normal_chestray" + else: + predicted_class= "Pneumonia" + + # Print the predicted class + print(f'The predicted class is: {predicted_class}') + #print(prediction) + + + st.image(image_pred, caption='Input image by user', use_column_width=True) + st.write("CLasses description for understanding") + st.write("Prediction Classes for different types:") + st.write("COVID: 0") + st.write("Normal Chest X-ray: 1") + st.write("Pneumonia: 2") + st.write("\n") + # Display some text + st.write("DETECTED DISEASE DISPLAY") + st.write(f"Predicted Class : {predicted_}") + st.write(predicted_class) +else: + st.write("Please upload an image file or ensure the disease model is loaded.") + + + diff --git a/Disease_Detection/code b/Disease_Detection/code new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Disease_Detection/code @@ -0,0 +1 @@ + diff --git a/Disease_Detection/for_all_classe.ipynb b/Disease_Detection/for_all_classe.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..7fae470f80ebd9049a6c28e1c56860a26974e6b5 --- /dev/null +++ b/Disease_Detection/for_all_classe.ipynb @@ -0,0 +1,1292 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "76fe7874-7381-4b1b-ac6d-89747001b561", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-sdk in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.31.0)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.6.7)\n", + "Requirement already satisfied: opencv-python>=4.8.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (10.3.0)\n", + "Requirement already satisfied: supervision<1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.22.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (1.26.4)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.2.1)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.7.6)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (9.0.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2024.7.4)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pyyaml>=5.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (6.0.1)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (1.13.1)\n", + "Requirement already satisfied: packaging>=17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses-json>=0.6.0->inference-sdk) (23.2)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (3.0.9)\n", + "Requirement already satisfied: python-dateutil>=2.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (2.9.0.post0)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (1.0.0)\n", + "Requirement already satisfied: typing-extensions>=3.7.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (4.11.0)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil>=2.7->matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.16.0)\n" + ] + } + ], + "source": [ + "!pip install inference-sdk" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "320bfd94-b6ab-45e7-bcc8-0822b3b206c0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-cli in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests<=2.31.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.31.0)\n", + "Requirement already satisfied: docker==6.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.1.3)\n", + "Requirement already satisfied: typer==0.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.9.0)\n", + "Requirement already satisfied: rich<=13.5.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (13.3.5)\n", + "Requirement already satisfied: skypilot==0.4.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.4.1)\n", + "Requirement already satisfied: PyYAML>=6.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.0.1)\n", + "Requirement already satisfied: supervision>=0.17.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.22.0)\n", + "Requirement already satisfied: opencv-python>=4.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: tqdm>=4.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.66.4)\n", + "Requirement already satisfied: GPUtil>=1.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.4.0)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (9.0.0)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.2.1)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.6.7)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (10.3.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.26.4)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.7.6)\n", + "Requirement already satisfied: packaging>=14.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (23.2)\n", + "Requirement already satisfied: urllib3>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.26.19)\n", + "Requirement already satisfied: websocket-client>=0.32.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.8.0)\n", + "Requirement already satisfied: pywin32>=304 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (305.1)\n", + "Requirement already satisfied: wheel in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.43.0)\n", + "Requirement already satisfied: cachetools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.3.3)\n", + "Requirement already satisfied: click>=7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (8.1.7)\n", + "Requirement already satisfied: colorama<0.4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.4.4)\n", + "Requirement already satisfied: cryptography in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (42.0.5)\n", + "Requirement already satisfied: jinja2>=3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.1.4)\n", + "Requirement already satisfied: jsonschema in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.19.2)\n", + "Requirement already satisfied: networkx in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.2.1)\n", + "Requirement already satisfied: pandas>=1.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.2.2)\n", + "Requirement already satisfied: pendulum in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.0.0)\n", + "Requirement already satisfied: PrettyTable>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.10.2)\n", + "Requirement already satisfied: python-dotenv in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.21.0)\n", + "Requirement already satisfied: tabulate in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.9.0)\n", + "Requirement already satisfied: typing-extensions in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.11.0)\n", + "Requirement already satisfied: filelock>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.13.1)\n", + "Requirement already satisfied: psutil in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.9.0)\n", + "Requirement already satisfied: pulp in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.9.0)\n", + "Requirement already satisfied: awscli>=1.27.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.33.31)\n", + "Requirement already satisfied: botocore>=1.29.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: boto3>=1.26.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (3.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2024.7.4)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.15.1)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (1.13.1)\n", + "Requirement already satisfied: docutils<0.17,>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.16)\n", + "Requirement already satisfied: s3transfer<0.11.0,>=0.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.10.2)\n", + "Requirement already satisfied: rsa<4.8,>=3.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (4.7.2)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.0.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (2.9.0.post0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jinja2>=3.0->skypilot==0.4.1->inference-cli) (2.1.3)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich<=13.5.2->inference-cli) (0.1.0)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (3.0.9)\n", + "Requirement already satisfied: pytz>=2020.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2024.1)\n", + "Requirement already satisfied: tzdata>=2022.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2023.3)\n", + "Requirement already satisfied: wcwidth in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from PrettyTable>=2.0.0->skypilot==0.4.1->inference-cli) (0.2.5)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-cli) (1.0.0)\n", + "Requirement already satisfied: cffi>=1.12 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cryptography->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: jsonschema-specifications>=2023.03.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (2023.7.1)\n", + "Requirement already satisfied: referencing>=0.28.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.30.2)\n", + "Requirement already satisfied: rpds-py>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.10.6)\n", + "Requirement already satisfied: time-machine>=2.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pendulum->skypilot==0.4.1->inference-cli) (2.14.2)\n", + "Requirement already satisfied: pycparser in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cffi>=1.12->cryptography->skypilot==0.4.1->inference-cli) (2.21)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil<3.0.0,>=2.1->botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: pyasn1>=0.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rsa<4.8,>=3.1.2->awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.4.8)\n", + "Command failed. Cause: Error connecting to Docker daemon. Is docker installed and running? See https://www.docker.com/get-started/ for installation instructions.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\paramiko\\transport.py:219: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release\n", + " \"class\": algorithms.Blowfish,\n" + ] + } + ], + "source": [ + "!pip install inference-cli && inference server start" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e059518c-7cd2-4ec3-a18e-4f8610333cf0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "e34a866f-695a-4161-8010-44fc1a62759b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python-headless in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python-headless) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python-headless" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "349632ea-a626-4152-9485-6653ad96aaa1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python-headless in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python-headless) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python-headless" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "ba247bf8-e415-4f46-8cb6-6c7581d404d9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-contrib-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-contrib-python) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-contrib-python" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "d691f42e-c0e6-4a67-afaa-c2172a943ad1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pillow in c:\\users\\sriram\\anaconda3\\lib\\site-packages (10.3.0)\n" + ] + } + ], + "source": [ + "!pip install pillow" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "e380f580-00cd-4a25-befe-62a8e7d60a43", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded 3 Test image categories.\n", + "Loaded 3 Train image categories.\n" + ] + } + ], + "source": [ + "import os\n", + "import cv2\n", + "\n", + "def load_images_from_folder(folder):\n", + " images = []\n", + " for filename in os.listdir(folder):\n", + " if filename.endswith(('.png', '.jpg', '.jpeg')):\n", + " img_path = os.path.join(folder, filename)\n", + " #img = cv2.imread(img_path)\n", + " images.append(img_path)\n", + "\n", + " return images\n", + "\n", + "def load_images_test_dataset(test_folder):\n", + " test_images = [] # Initialize the list\n", + " covid_folder = os.path.join(test_folder, 'Covid')\n", + " normal_chestxray_folder = os.path.join(test_folder, 'Normal_chestxray')\n", + " pneumonia_folder = os.path.join(test_folder, 'Pneumonia')\n", + " \n", + " \n", + " test_images.append({\"category\": \"covid\", \"images\": load_images_from_folder(covid_folder)}) # Append images\n", + " test_images.append({\"category\": \"normal_chestray\", \"images\": load_images_from_folder(normal_chestxray_folder)}) # Append images\n", + " test_images.append({\"category\": \"pneumonia\", \"images\": load_images_from_folder(pneumonia_folder)}) # Append images\n", + " \n", + " return test_images\n", + "\n", + "def load_images_train_dataset(train_folder):\n", + " train_images = [] # Initialize the list\n", + " covid_folder = os.path.join(train_folder, 'Covid')\n", + " normal_chestxray_folder = os.path.join(train_folder, 'Normal_chestxray')\n", + " pneumonia_folder = os.path.join(train_folder, 'Pneumonia')\n", + " \n", + " train_images.append({\"category\": \"covid\", \"images\": load_images_from_folder(covid_folder)}) # Append images\n", + " train_images.append({\"category\": \"normal_chestray\", \"images\": load_images_from_folder(normal_chestxray_folder)}) # Append images\n", + " train_images.append({\"category\": \"pneumonia\", \"images\": load_images_from_folder(pneumonia_folder)}) # Append images\n", + " \n", + " return train_images\n", + "\n", + "def load_image_main_folder(main_folder):\n", + " test_folder = os.path.join(main_folder, 'test')\n", + " train_folder = os.path.join(main_folder, 'train')\n", + " \n", + " test_images = load_images_test_dataset(test_folder)\n", + " train_images = load_images_train_dataset(train_folder)\n", + " \n", + " return test_images, train_images\n", + "\n", + "# Example usage\n", + "main_folder = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification'\n", + "test_images, train_images = load_image_main_folder(main_folder)\n", + "\n", + "print(f\"Loaded {len(test_images)} Test image categories.\")\n", + "print(f\"Loaded {len(train_images)} Train image categories.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "2d72287e-faf5-4057-b6b2-837aef3c52f0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded [{'category': 'covid', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0100.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0102.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0105.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0106.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0108.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0111.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0112.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0113.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0115.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0118.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0119.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0120.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\094.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\096.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\098.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-2020_01_31_20_24_2322_2020_01_31_x-ray_coronavirus_US.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-a-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-b-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-c-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-d-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00003b.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00012.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00022.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00033.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00037.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\radiopaedia-2019-novel-coronavirus-infected-pneumonia.jpg']}, {'category': 'normal_chestray', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0101.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0102.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0103.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0105.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0106.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0107.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0108.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0109.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0110.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0111.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0112.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0114.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0115.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0116.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0117.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0118.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0119.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0120.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0121.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0122.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0241-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0242-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0243-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0244-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0245-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0248-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0249-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0250-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0251-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0253-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0255-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0256-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0257-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0261-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0262-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0264-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0265-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0266-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0268-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0269-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0270-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0272-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0273-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0274-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0275-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0276-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0277-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0278-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0279-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0280-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0282-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0283-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0285-0001.jpeg']}, {'category': 'pneumonia', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0115-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0117-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0119-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0122-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0125-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0127-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0128-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0129-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0131-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0133-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0135-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0137-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0140-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0141-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0143-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0145-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0147-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0149-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0151-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0152-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0154-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0156-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0158-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0160-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0162-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0164-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0166-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0168-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0170-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0172-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0176-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0177-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0178-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0180-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0182-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0183-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0185-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0187-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0189-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0191-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0193-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0195-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0199-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0201-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0203-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0205-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0206-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0207-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0209-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0210-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0211-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0213-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0214-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0215-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0216-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0217-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0218-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0219-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0220-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0221-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0222-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0223-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0224-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0225-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0226-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0227-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0228-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0229-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0230-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0231-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0234-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0235-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0236-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0237-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0238-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0239-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0240-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0241-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0242-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0243-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0244-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0245-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0248-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0249-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0250-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0251-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0253-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0255-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0256-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0257-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0261-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0262-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0264-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0265-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0266-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0268-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0269-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0270-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0272-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0273-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0274-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0275-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0276-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0277-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0278-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0279-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0280-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0282-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0283-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0285-0001.jpeg']}] Test image categories.\n", + "Loaded [{'category': 'covid', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\01.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\010.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\012.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\015.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\019.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\02.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\020.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\021.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\022.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\024.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\025.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\026.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\027.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\03.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\031.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\032.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\033.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\039.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\04.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\040.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\041.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\042.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\043.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\044.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\045.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\046.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\047.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\048.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\049.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\050.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\051.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\052.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\053.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\054.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\055.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\056.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\057.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\058.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\059.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\06.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\060.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\061.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\062.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\064.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\065.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\067.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\068.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\069.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\07.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\071.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\072.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\073.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\074.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\076.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\078.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\079.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\08.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\080.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\081.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\082.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\083.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\084.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\085.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\086.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\088.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\089.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\09.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\090.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\091.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\092.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00001.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00002.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00003a.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00003b.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00004.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00005.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00006.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00007.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00008.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00009.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00010.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00011.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00012.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00013a.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00013b.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00014.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00015a.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00015b.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00016.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00017.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00018.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00019.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00020.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00021.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00022.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00023.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00024.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00025.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00026.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00027.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00028.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00029.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00030.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00031.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00032.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00033.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00034.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00035.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00036.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00037.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00038.jpg']}, {'category': 'normal_chestray', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\01.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\010.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\011.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\012.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\013.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\014.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\015.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\016.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\017.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\018.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\019.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\02.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\020.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\021.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\022.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\023.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\024.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\025.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\03.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\04.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\05.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\050.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\051.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\052.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\053.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\054.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\055.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\056.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\057.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\058.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\059.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\06.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\060.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\061.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\062.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\063.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\064.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\065.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\066.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\067.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\068.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\069.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\07.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\070.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\071.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\072.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\073.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\074.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\075.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\076.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\077.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\079.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\08.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\080.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\081.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\082.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\083.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\084.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\085.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\086.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\087.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\088.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\09.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\091.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\092.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\093.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\094.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\095.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\096.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\097.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0115-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0117-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0119-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0122-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0125-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0127-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0128-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0129-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0131-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0133-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0135-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0137-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0140-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0141-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0143-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0145-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0147-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0149-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0151-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0152-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0154-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0156-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0158-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0160-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0162-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0164-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0166-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0168-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0170-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0172-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0176-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0177-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0178-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0180-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0182-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0183-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0185-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0187-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0189-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0191-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0193-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0195-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0199-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0201-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0203-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0205-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0206-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0207-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0209-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0210-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0211-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0213-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0214-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0215-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0216-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0217-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0218-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0219-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0220-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0221-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0222-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0223-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0224-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0225-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0226-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0227-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0228-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0229-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0230-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0231-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0234-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0235-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0236-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0237-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0238-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0239-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0240-0001.jpeg']}, {'category': 'pneumonia', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person10_bacteria_43.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person11_bacteria_45.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person12_bacteria_46.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person12_bacteria_47.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person12_bacteria_48.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person13_bacteria_49.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person13_bacteria_50.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person14_bacteria_51.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person15_bacteria_52.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person16_bacteria_53.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person16_bacteria_54.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person16_bacteria_55.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person17_bacteria_56.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person18_bacteria_57.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_58.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_59.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_60.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_61.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_62.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_63.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person1_bacteria_1.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person1_bacteria_2.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_64.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_66.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_67.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_69.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_70.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person21_bacteria_72.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person21_bacteria_73.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person22_bacteria_74.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person22_bacteria_76.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person22_bacteria_77.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_100.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_101.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_102.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_103.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_104.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_105.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_106.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_107.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_78.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_79.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_80.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_81.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_82.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_83.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_84.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_85.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_86.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_87.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_88.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_89.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_90.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_91.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_92.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_93.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_94.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_95.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_96.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_97.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_98.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_99.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_108.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_109.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_110.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_111.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_112.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_113.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_114.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_115.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_116.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_117.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_118.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_119.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_120.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_121.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_122.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_123.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_124.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_126.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_127.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_128.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_129.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_130.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_131.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_132.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_133.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_135.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_136.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_137.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_138.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_139.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_141.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_142.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_143.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person29_bacteria_144.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person2_bacteria_3.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person2_bacteria_4.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person30_bacteria_145.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person30_bacteria_146.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person30_bacteria_147.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_10.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_11.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_12.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_13.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person4_bacteria_14.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_15.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_16.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_17.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_19.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person6_bacteria_22.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_24.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_25.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_28.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_29.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person8_bacteria_37.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_38.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_39.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_40.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_41.jpeg']}] Train image categories.\n" + ] + } + ], + "source": [ + "print(f\"Loaded {test_images} Test image categories.\")\n", + "print(f\"Loaded {train_images} Train image categories.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "dd253634-c77e-4e6a-90f8-857c75b5a596", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: tensorflow in c:\\users\\sriram\\anaconda3\\lib\\site-packages (2.17.0)\n", + "Requirement already satisfied: tensorflow-intel==2.17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow) (2.17.0)\n", + "Requirement already satisfied: absl-py>=1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.1.0)\n", + "Requirement already satisfied: astunparse>=1.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.6.3)\n", + "Requirement already satisfied: flatbuffers>=24.3.25 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (24.3.25)\n", + "Requirement already satisfied: gast!=0.5.0,!=0.5.1,!=0.5.2,>=0.2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (0.6.0)\n", + "Requirement already satisfied: google-pasta>=0.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (0.2.0)\n", + "Requirement already satisfied: h5py>=3.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.11.0)\n", + "Requirement already satisfied: libclang>=13.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (18.1.1)\n", + "Requirement already satisfied: ml-dtypes<0.5.0,>=0.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (0.3.1)\n", + "Requirement already satisfied: opt-einsum>=2.3.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.3.0)\n", + "Requirement already satisfied: packaging in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (23.2)\n", + "Requirement already satisfied: protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.20.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.20.3)\n", + "Requirement already satisfied: requests<3,>=2.21.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.31.0)\n", + "Requirement already satisfied: setuptools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (69.5.1)\n", + "Requirement already satisfied: six>=1.12.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.16.0)\n", + "Requirement already satisfied: termcolor>=1.1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.4.0)\n", + "Requirement already satisfied: typing-extensions>=3.6.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (4.11.0)\n", + "Requirement already satisfied: wrapt>=1.11.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.14.1)\n", + "Requirement already satisfied: grpcio<2.0,>=1.24.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.65.1)\n", + "Requirement already satisfied: tensorboard<2.18,>=2.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.17.0)\n", + "Requirement already satisfied: keras>=3.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.4.1)\n", + "Requirement already satisfied: numpy<2.0.0,>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.26.4)\n", + "Requirement already satisfied: wheel<1.0,>=0.23.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from astunparse>=1.6.0->tensorflow-intel==2.17.0->tensorflow) (0.43.0)\n", + "Requirement already satisfied: rich in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (13.3.5)\n", + "Requirement already satisfied: namex in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (0.0.7)\n", + "Requirement already satisfied: optree in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (0.12.1)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (2024.7.4)\n", + "Requirement already satisfied: markdown>=2.6.8 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (3.4.1)\n", + "Requirement already satisfied: tensorboard-data-server<0.8.0,>=0.7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (0.7.2)\n", + "Requirement already satisfied: werkzeug>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (3.0.3)\n", + "Requirement already satisfied: MarkupSafe>=2.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from werkzeug>=1.0.1->tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (2.1.3)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich->keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich->keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (2.15.1)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich->keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (0.1.0)\n", + "Requirement already satisfied: efficientnet in c:\\users\\sriram\\anaconda3\\lib\\site-packages (1.1.1)\n", + "Requirement already satisfied: keras-applications<=1.0.8,>=1.0.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from efficientnet) (1.0.8)\n", + "Requirement already satisfied: scikit-image in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from efficientnet) (0.23.2)\n", + "Requirement already satisfied: numpy>=1.9.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras-applications<=1.0.8,>=1.0.7->efficientnet) (1.26.4)\n", + "Requirement already satisfied: h5py in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras-applications<=1.0.8,>=1.0.7->efficientnet) (3.11.0)\n", + "Requirement already satisfied: scipy>=1.9 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (1.13.1)\n", + "Requirement already satisfied: networkx>=2.8 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (3.2.1)\n", + "Requirement already satisfied: pillow>=9.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (10.3.0)\n", + "Requirement already satisfied: imageio>=2.33 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (2.33.1)\n", + "Requirement already satisfied: tifffile>=2022.8.12 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (2023.4.12)\n", + "Requirement already satisfied: packaging>=21 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (23.2)\n", + "Requirement already satisfied: lazy-loader>=0.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (0.4)\n" + ] + } + ], + "source": [ + "!pip install tensorflow\n", + "!pip install -U efficientnet" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "f056b2ef-bdb0-4f82-b0fe-9a3daa0163c3", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " category image\n", + "0 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "1 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "2 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "3 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "4 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + ".. ... ...\n", + "184 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "185 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "186 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "187 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "188 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "\n", + "[189 rows x 2 columns]\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "flattened_data = []\n", + "for entry in test_images:\n", + " category = entry['category']\n", + " for img in entry['images']:\n", + " flattened_data.append({'category': category, 'image': img})\n", + "\n", + "# Convert to DataFrame\n", + "test_dataset = pd.DataFrame(flattened_data)\n", + "\n", + "# Display the DataFrame\n", + "print(test_dataset)" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "beaa8548-b4c9-4de3-ac14-37a22f2b8062", + "metadata": {}, + "outputs": [], + "source": [ + "test_dataset_f = test_dataset.sample(frac=1).reset_index(drop=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "5b4c6248-259a-4b82-82cf-b67019bb7ab4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " category image\n", + "0 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "1 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "2 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "3 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "4 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + ".. ... ...\n", + "373 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "374 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "375 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "376 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "377 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "\n", + "[378 rows x 2 columns]\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "flattened_data = []\n", + "for entry in train_images:\n", + " category = entry['category']\n", + " for img in entry['images']:\n", + " flattened_data.append({'category': category, 'image': img})\n", + "\n", + "# Convert to DataFrame\n", + "train_dataset = pd.DataFrame(flattened_data)\n", + "\n", + "# Display the DataFrame\n", + "print(train_dataset)" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "9543cc21-a078-4926-ab32-a37164c6df37", + "metadata": {}, + "outputs": [], + "source": [ + "train_dataset_f = train_dataset.sample(frac=1).reset_index(drop=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "c6ecb731-37e2-4d6f-86ac-d166fd1b2288", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Label to Integer Mapping:\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n" + ] + } + ], + "source": [ + "from sklearn.preprocessing import LabelEncoder\n", + "# Initialize the LabelEncoder\n", + "label_encoder = LabelEncoder()\n", + "\n", + "# Fit and transform the 'category' column\n", + "train_dataset_f['category_encoded'] = label_encoder.fit_transform(train_dataset_f['category'])\n", + "\n", + "# Print the DataFrame with encoded labels\n", + "#print(train_dataset_f)\n", + "\n", + "# Retrieve and print the mapping of labels to integers\n", + "classes_tra = label_encoder.classes_\n", + "print(\"Label to Integer Mapping:\")\n", + "for idx, label in enumerate(classes_tra):\n", + " print(f\"{label}: {idx}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "id": "ae819fc2-0bfa-4bd8-94d3-385ac88d4f14", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
categoryimagecategory_encoded
0pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
1pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
2pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
3normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
4pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
............
373covidC:\\Users\\SRIRAM\\Documents\\Image Classification...0
374normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
375pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
376normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
377pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
\n", + "

378 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " category image \\\n", + "0 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "1 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "2 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "3 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "4 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + ".. ... ... \n", + "373 covid C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "374 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "375 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "376 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "377 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "\n", + " category_encoded \n", + "0 2 \n", + "1 2 \n", + "2 2 \n", + "3 1 \n", + "4 2 \n", + ".. ... \n", + "373 0 \n", + "374 1 \n", + "375 2 \n", + "376 1 \n", + "377 2 \n", + "\n", + "[378 rows x 3 columns]" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train_dataset_f" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "847a0963-9f30-4d38-9572-69f7ca5ce822", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Label to Integer Mapping:\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n" + ] + } + ], + "source": [ + "# Initialize the LabelEncoder\n", + "label_encoder = LabelEncoder()\n", + "\n", + "# Fit and transform the 'category' column\n", + "test_dataset_f['category_encoded'] = label_encoder.fit_transform(test_dataset_f['category'])\n", + "\n", + "# Print the DataFrame with encoded labels\n", + "#print(df)\n", + "\n", + "# Retrieve and print the mapping of labels to integers\n", + "classes_tes = label_encoder.classes_\n", + "print(\"Label to Integer Mapping:\")\n", + "for idx, label in enumerate(classes_tes):\n", + " print(f\"{label}: {idx}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "57a86407-d8d9-4d5a-8ce1-9003b790c0f9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
categoryimagecategory_encoded
0pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
1covidC:\\Users\\SRIRAM\\Documents\\Image Classification...0
2normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
3pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
4pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
............
184pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
185pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
186covidC:\\Users\\SRIRAM\\Documents\\Image Classification...0
187pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
188pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
\n", + "

189 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " category image \\\n", + "0 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "1 covid C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "2 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "3 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "4 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + ".. ... ... \n", + "184 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "185 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "186 covid C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "187 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "188 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "\n", + " category_encoded \n", + "0 2 \n", + "1 0 \n", + "2 1 \n", + "3 2 \n", + "4 2 \n", + ".. ... \n", + "184 2 \n", + "185 2 \n", + "186 0 \n", + "187 2 \n", + "188 2 \n", + "\n", + "[189 rows x 3 columns]" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_dataset_f" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "262e4f09-f7ab-4539-b8da-9270dfacba16", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found 378 validated image filenames belonging to 3 classes.\n", + "Found 189 validated image filenames belonging to 3 classes.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\keras\\src\\layers\\convolutional\\base_conv.py:107: UserWarning: Do not pass an `input_shape`/`input_dim` argument to a layer. When using Sequential models, prefer using an `Input(shape)` object as the first layer in the model instead.\n", + " super().__init__(activity_regularizer=activity_regularizer, **kwargs)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Epoch 1/10\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\keras\\src\\trainers\\data_adapters\\py_dataset_adapter.py:121: UserWarning: Your `PyDataset` class should call `super().__init__(**kwargs)` in its constructor. `**kwargs` can include `workers`, `use_multiprocessing`, `max_queue_size`. Do not pass these arguments to `fit()`, as they will be ignored.\n", + " self._warn_if_super_not_called()\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m50s\u001b[0m 3s/step - accuracy: 0.3158 - loss: 1.2204 - val_accuracy: 0.2857 - val_loss: 0.6017\n", + "Epoch 2/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.5890 - loss: 0.5441 - val_accuracy: 0.4180 - val_loss: 0.7031\n", + "Epoch 3/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.7783 - loss: 0.3766 - val_accuracy: 0.3968 - val_loss: 1.2036\n", + "Epoch 4/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.7288 - loss: 0.4041 - val_accuracy: 0.4074 - val_loss: 0.9209\n", + "Epoch 5/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.8326 - loss: 0.3062 - val_accuracy: 0.3704 - val_loss: 1.3143\n", + "Epoch 6/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m40s\u001b[0m 2s/step - accuracy: 0.8650 - loss: 0.2402 - val_accuracy: 0.5503 - val_loss: 0.6968\n", + "Epoch 7/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.8697 - loss: 0.2311 - val_accuracy: 0.4550 - val_loss: 0.9919\n", + "Epoch 8/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.8797 - loss: 0.2156 - val_accuracy: 0.3968 - val_loss: 1.7659\n", + "Epoch 9/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.8894 - loss: 0.1851 - val_accuracy: 0.4021 - val_loss: 1.7183\n", + "Epoch 10/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.9005 - loss: 0.1703 - val_accuracy: 0.3862 - val_loss: 1.7062\n", + "\u001b[1m6/6\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m9s\u001b[0m 1s/step - accuracy: 0.4315 - loss: 1.5615\n", + "Validation accuracy: 0.38624337315559387\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from tensorflow.keras.preprocessing.image import ImageDataGenerator\n", + "from tensorflow.keras.models import Sequential\n", + "from tensorflow.keras.layers import Conv2D, MaxPooling2D, Flatten, Dense, Dropout\n", + "\n", + "\n", + "# Label Encoding\n", + "\n", + "# Create ImageDataGenerators\n", + "train_datagen = ImageDataGenerator(\n", + " rescale=1./255, \n", + " rotation_range=20, \n", + " zoom_range=0.2, \n", + " horizontal_flip=True\n", + ")\n", + "\n", + "val_datagen = ImageDataGenerator(rescale=1./255)\n", + "\n", + "# Create data generators using flow_from_dataframe\n", + "train_generator = train_datagen.flow_from_dataframe(\n", + " dataframe=train_dataset_f,\n", + " x_col='image',\n", + " y_col='category',\n", + " target_size=(150, 150),\n", + " batch_size=32,\n", + " class_mode='categorical' # Change to 'categorical' if you have more than 2 classes\n", + ")\n", + "\n", + "val_generator = val_datagen.flow_from_dataframe(\n", + " dataframe=test_dataset_f,\n", + " x_col='image',\n", + " y_col='category',\n", + " target_size=(150, 150),\n", + " batch_size=32,\n", + " class_mode='categorical'\n", + ")\n", + "\n", + "# Model selection and architecture\n", + "model = Sequential([\n", + " Conv2D(32, (3, 3), activation='relu', input_shape=(150, 150, 3)),\n", + " MaxPooling2D((2, 2)),\n", + " Conv2D(64, (3, 3), activation='relu'),\n", + " MaxPooling2D((2, 2)),\n", + " Conv2D(128, (3, 3), activation='relu'),\n", + " MaxPooling2D((2, 2)),\n", + " Flatten(),\n", + " Dense(512, activation='relu'),\n", + " Dropout(0.5),\n", + " Dense(3, activation='sigmoid') # Change to match the number of classes\n", + "])\n", + "\n", + "# Compile and train the model\n", + "model.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])\n", + "\n", + "history = model.fit(train_generator, epochs=10, validation_data=val_generator)\n", + "\n", + "# Evaluate the model\n", + "test_loss, test_acc = model.evaluate(val_generator)\n", + "print('Validation accuracy:', test_acc)\n", + "\n", + "# Save the model\n", + "#model.save('my_model.h5')" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "id": "8fe5fece-675a-44a9-a3bb-8e9c266531ac", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of the preprocessed image: (1, 150, 150, 3)\n", + "\u001b[1m1/1\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m0s\u001b[0m 63ms/step\n", + "Prediction_Classes for different types\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n", + "Predicted array for : 0\n", + "The predicted class is: Covid\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "# Example usage\n", + "image_path_axby = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\covid.jpg'\n", + "\n", + "# Load the image using OpenCV\n", + "image_pred = cv2.imread(image_path_axby)\n", + "\n", + "if image_pred is None:\n", + " print(f\"Error: Unable to load image at {image_path}\")\n", + "else:\n", + " # Resize the image to match the input shape of the model (150x150)\n", + " image_pred = cv2.resize(image_pred, (150, 150))\n", + "\n", + " # Convert the image to a numpy array\n", + " image_pred = np.array(image_pred)\n", + "\n", + " # Rescale the image (if the model was trained with rescaling)\n", + " image_pred = image_pred / 255.0\n", + "\n", + " # Add an extra dimension to match the input shape (1, 150, 150, 3)\n", + " image_pred = np.expand_dims(image_pred, axis=0)\n", + "\n", + " # Print the shape of the preprocessed image\n", + " print(\"Shape of the preprocessed image:\", image_pred.shape)\n", + "\n", + " # Predict using the model\n", + " prediction = model.predict(image_pred)\n", + " \n", + " # Example prediction output\n", + " prediction = np.array(prediction)\n", + "\n", + " print(f\"Prediction_Classes for different types\\ncovid: 0\\nnormal_chestray: 1\\npneumonia: 2\")\n", + " \n", + " # Get the predicted class\n", + " predicted_ = np.argmax(prediction)\n", + "\n", + "\n", + " print(f\"Predicted array for : {predicted_}\")\n", + "\n", + " # Decode the prediction\n", + " if predicted_ == 0:\n", + " predicted_class= \"Covid\"\n", + " elif predicted_ == 1:\n", + " predicted_class= \"Normal_chestray\"\n", + " else:\n", + " predicted_class= \"Pneumonia\"\n", + "\n", + " # Print the predicted class\n", + " print(f'The predicted class is: {predicted_class}')\n", + " #print(prediction)" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "id": "26c0bc32-1ba8-4949-ad72-70a335bcc0a8", + "metadata": {}, + "outputs": [], + "source": [ + "model.save('FINAL_MODEL.keras')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "93e77d2e-2d4d-469d-9dcb-dc92323e2024", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of the preprocessed image: (1, 150, 150, 3)\n", + "\u001b[1m1/1\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m0s\u001b[0m 54ms/step\n", + "Prediction_Classes for different types\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n", + "Predicted array for : 1\n", + "The predicted class is: Normal_chestray\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "# Example usage\n", + "image_path_axby_o = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\0103.jpeg'\n", + "\n", + "\n", + "# Load the image using OpenCV\n", + "image_pred = cv2.imread(image_path_axby_o)\n", + "\n", + "if image_pred is None:\n", + " print(f\"Error: Unable to load image at {image_path}\")\n", + "else:\n", + " # Resize the image to match the input shape of the model (150x150)\n", + " image_pred = cv2.resize(image_pred, (150, 150))\n", + "\n", + " # Convert the image to a numpy array\n", + " image_pred = np.array(image_pred)\n", + "\n", + " # Rescale the image (if the model was trained with rescaling)\n", + " image_pred = image_pred / 255.0\n", + "\n", + " # Add an extra dimension to match the input shape (1, 150, 150, 3)\n", + " image_pred = np.expand_dims(image_pred, axis=0)\n", + "\n", + " # Print the shape of the preprocessed image\n", + " print(\"Shape of the preprocessed image:\", image_pred.shape)\n", + "\n", + " # Predict using the model\n", + " prediction = model.predict(image_pred)\n", + " \n", + " # Example prediction output\n", + " prediction = np.array(prediction)\n", + "\n", + " print(f\"Prediction_Classes for different types\\ncovid: 0\\nnormal_chestray: 1\\npneumonia: 2\")\n", + " \n", + " # Get the predicted class\n", + " predicted_ = np.argmax(prediction)\n", + "\n", + "\n", + " print(f\"Predicted array for : {predicted_}\")\n", + "\n", + " # Decode the prediction\n", + " if predicted_ == 0:\n", + " predicted_class= \"Covid\"\n", + " elif predicted_ == 1:\n", + " predicted_class= \"Normal_chestray\"\n", + " else:\n", + " predicted_class= \"Pneumonia\"\n", + "\n", + " # Print the predicted class\n", + " print(f'The predicted class is: {predicted_class}')\n", + " #print(prediction)" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "7da46192-e124-459c-800e-e84d4cca07b1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of the preprocessed image: (1, 150, 150, 3)\n", + "\u001b[1m1/1\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m0s\u001b[0m 65ms/step\n", + "Prediction_Classes for different types\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n", + "Predicted array for : 0\n", + "The predicted class is: Covid\n" + ] + } + ], + "source": [ + "# Example usage\n", + "image_path_axby_o = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\covid_from_website.png'\n", + "\n", + "\n", + "# Load the image using OpenCV\n", + "image_pred = cv2.imread(image_path_axby_o)\n", + "\n", + "if image_pred is None:\n", + " print(f\"Error: Unable to load image at {image_path}\")\n", + "else:\n", + " # Resize the image to match the input shape of the model (150x150)\n", + " image_pred = cv2.resize(image_pred, (150, 150))\n", + "\n", + " # Convert the image to a numpy array\n", + " image_pred = np.array(image_pred)\n", + "\n", + " # Rescale the image (if the model was trained with rescaling)\n", + " image_pred = image_pred / 255.0\n", + "\n", + " # Add an extra dimension to match the input shape (1, 150, 150, 3)\n", + " image_pred = np.expand_dims(image_pred, axis=0)\n", + "\n", + " # Print the shape of the preprocessed image\n", + " print(\"Shape of the preprocessed image:\", image_pred.shape)\n", + "\n", + " # Predict using the model\n", + " prediction = model.predict(image_pred)\n", + " \n", + " # Example prediction output\n", + " prediction = np.array(prediction)\n", + "\n", + " print(f\"Prediction_Classes for different types\\ncovid: 0\\nnormal_chestray: 1\\npneumonia: 2\")\n", + " \n", + " # Get the predicted class\n", + " predicted_ = np.argmax(prediction)\n", + "\n", + "\n", + " print(f\"Predicted array for : {predicted_}\")\n", + "\n", + " # Decode the prediction\n", + " if predicted_ == 0:\n", + " predicted_class= \"Covid\"\n", + " elif predicted_ == 1:\n", + " predicted_class= \"Normal_chestray\"\n", + " else:\n", + " predicted_class= \"Pneumonia\"\n", + "\n", + " # Print the predicted class\n", + " print(f'The predicted class is: {predicted_class}')\n", + " #print(prediction)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c3f8c986-d186-48de-8f99-9b2b3b73d035", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "62f10b4c-eec4-4cde-a973-ae95582987ab", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "01d80481-0b8b-4827-983e-1692e3483416", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Disease_Detection/requirements.txt b/Disease_Detection/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..42d0f6a82a6bfc6f14f509bb03190e70109a2833 --- /dev/null +++ b/Disease_Detection/requirements.txt @@ -0,0 +1,7 @@ +opencv-python +opencv-python-headless +opencv-contrib-python +pillow +tensorflow +scikit-learn +streamlit \ No newline at end of file diff --git a/Disease_Detection/test/Covid/0100.jpeg b/Disease_Detection/test/Covid/0100.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..029c530fe29232a3be98cf5d3f46cffeaf1627d9 --- /dev/null +++ b/Disease_Detection/test/Covid/0100.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ca25261981c4ce4e37247d90cba75296b2a24182e03fbd6219c28a46467ffb +size 163299 diff --git a/Disease_Detection/test/Covid/0102.jpeg b/Disease_Detection/test/Covid/0102.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5a1786c82d414087864efa9e83a6afee0408601c --- /dev/null +++ b/Disease_Detection/test/Covid/0102.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986e52a1d6427ed5bf514a0d9da43046230f9fe3c9a90074b23fca4ee5e4518f +size 201727 diff --git a/Disease_Detection/test/Covid/0105.png b/Disease_Detection/test/Covid/0105.png new file mode 100644 index 0000000000000000000000000000000000000000..37e261b76681c98bfea8efa8cfb68d1e6ab225b8 Binary files /dev/null and b/Disease_Detection/test/Covid/0105.png differ diff --git a/Disease_Detection/test/Covid/0106.jpeg b/Disease_Detection/test/Covid/0106.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..19f4801cad8cb0ff617ea8785cf91a991da0c13f --- /dev/null +++ b/Disease_Detection/test/Covid/0106.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4637783d6eabe44b6c656517395b4ab8768e95cbb06d12c5a6cf4c258a35ce90 +size 184010 diff --git a/Disease_Detection/test/Covid/0108.jpeg b/Disease_Detection/test/Covid/0108.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4cc0d0194f6bd93112fa0d6252d6a991c0858ef5 --- /dev/null +++ b/Disease_Detection/test/Covid/0108.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e364cd747f55ef9c837eae035664acddc61c34c2255328aa38da820dcfcf6df +size 192761 diff --git a/Disease_Detection/test/Covid/0111.jpg b/Disease_Detection/test/Covid/0111.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a1ea833f556f90ea3a9fd1d38416c6924897974 --- /dev/null +++ b/Disease_Detection/test/Covid/0111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd084d7f2aa83e01a8d8c47e9de6b1e9393da26003c790c1217635d18ed286cd +size 108962 diff --git a/Disease_Detection/test/Covid/0112.jpg b/Disease_Detection/test/Covid/0112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b00e8c30a6c72c91ec30966888e05c1812936e0 --- /dev/null +++ b/Disease_Detection/test/Covid/0112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fe77829e9267880ed280ec5a780b63b0e8fded7f8837c16388dfb67cc4ae6c +size 108636 diff --git a/Disease_Detection/test/Covid/0113.jpg b/Disease_Detection/test/Covid/0113.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a606bb30fb1d1a7b240877553381e3c04cbc1df --- /dev/null +++ b/Disease_Detection/test/Covid/0113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41772443e1843264679cef27ff9ce59fd343d5b08aeb02c4faf43e26bed899d +size 107441 diff --git a/Disease_Detection/test/Covid/0115.jpeg b/Disease_Detection/test/Covid/0115.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3996050e7638857fd715d7efccd2dcf238c962ff --- /dev/null +++ b/Disease_Detection/test/Covid/0115.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e201d94134c9356bb787a4f9bfcd34768969d5cbfab79934ba5ef3cdd910bbd +size 148359 diff --git a/Disease_Detection/test/Covid/0118.jpeg b/Disease_Detection/test/Covid/0118.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d46f4f485f90ae3b991298110a4ae2197ba4e6dc --- /dev/null +++ b/Disease_Detection/test/Covid/0118.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ec9ff05883aaccf55488a57a67ac2897a13b3d6c1fed480611c9169b0be06d +size 138600 diff --git a/Disease_Detection/test/Covid/0119.jpeg b/Disease_Detection/test/Covid/0119.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6f4996c4a823a512dea0cd73045db235c00a5eb0 --- /dev/null +++ b/Disease_Detection/test/Covid/0119.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a1d3f8682090978ef8c12780ccfc23ced62645e837687ffe6ffb20a67fd0c6 +size 124230 diff --git a/Disease_Detection/test/Covid/0120.jpg b/Disease_Detection/test/Covid/0120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f90ba4c31c2c65a4f46309d507281c25fc0e6e2 --- /dev/null +++ b/Disease_Detection/test/Covid/0120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361ed3c0f4c20ddd9595e13e284eae086234a52482f8ff7ad7b8e39c1af75b94 +size 93685 diff --git a/Disease_Detection/test/Covid/094 - Copy.png b/Disease_Detection/test/Covid/094 - Copy.png new file mode 100644 index 0000000000000000000000000000000000000000..45134b0e5cb2554a947975b180278b1fabbf80dc Binary files /dev/null and b/Disease_Detection/test/Covid/094 - Copy.png differ diff --git a/Disease_Detection/test/Covid/094.png b/Disease_Detection/test/Covid/094.png new file mode 100644 index 0000000000000000000000000000000000000000..45134b0e5cb2554a947975b180278b1fabbf80dc Binary files /dev/null and b/Disease_Detection/test/Covid/094.png differ diff --git a/Disease_Detection/test/Covid/096.png b/Disease_Detection/test/Covid/096.png new file mode 100644 index 0000000000000000000000000000000000000000..e4bee04a379cb2a3b9c890e633c44fadad357aae Binary files /dev/null and b/Disease_Detection/test/Covid/096.png differ diff --git a/Disease_Detection/test/Covid/098.jpeg b/Disease_Detection/test/Covid/098.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5f655fee275a14af140b0eb608a018cc9df46ef8 --- /dev/null +++ b/Disease_Detection/test/Covid/098.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9bc015f5523d3f0ea970519c86363173c427d1c47d1bac7ed136a7da5eebf93 +size 192166 diff --git a/Disease_Detection/test/Covid/COVID-00003b.jpg b/Disease_Detection/test/Covid/COVID-00003b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01cfb888cc324118181f40c2d1d448ac9a63dd0e --- /dev/null +++ b/Disease_Detection/test/Covid/COVID-00003b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b78226347f16a2c09927d4182b591f7ce99c596b456e34582df1c24064887e7 +size 130418 diff --git a/Disease_Detection/test/Covid/COVID-00012.jpg b/Disease_Detection/test/Covid/COVID-00012.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bd6cf6259f22f7334f127368f56168f1eb65501 --- /dev/null +++ b/Disease_Detection/test/Covid/COVID-00012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63bb047c4a3a16721e128fda55c264259858d9d5c76840bfb063c245197c20c0 +size 31119 diff --git a/Disease_Detection/test/Covid/COVID-00022.jpg b/Disease_Detection/test/Covid/COVID-00022.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39ee89570a81aff9a401f270ac22bb5315d6fa72 --- /dev/null +++ b/Disease_Detection/test/Covid/COVID-00022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be90dc28e91383e5af77e3048d53620635b9b37d16f106d8535932e86080b224 +size 42586 diff --git a/Disease_Detection/test/Covid/COVID-00033.jpg b/Disease_Detection/test/Covid/COVID-00033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75c4a352f9fdad8de6d6a7a4f9e095a0c03e5ef4 --- /dev/null +++ b/Disease_Detection/test/Covid/COVID-00033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480a40f48587ba578d0624595a6f9e28a1e1efd78b0d6b81183fa7d562b49d0f +size 54325 diff --git a/Disease_Detection/test/Covid/COVID-00037.jpg b/Disease_Detection/test/Covid/COVID-00037.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6189c2ca68bd9386437f3e2f926cb56bed511390 --- /dev/null +++ b/Disease_Detection/test/Covid/COVID-00037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128fae5a51ed3edf3135b5aedb2ee715380038a59f83c8d5864e633ac2191ba2 +size 46532 diff --git a/Disease_Detection/test/Covid/auntminnie-2020_01_31_20_24_2322_2020_01_31_x-ray_coronavirus_US.jpg b/Disease_Detection/test/Covid/auntminnie-2020_01_31_20_24_2322_2020_01_31_x-ray_coronavirus_US.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b00e8c30a6c72c91ec30966888e05c1812936e0 --- /dev/null +++ b/Disease_Detection/test/Covid/auntminnie-2020_01_31_20_24_2322_2020_01_31_x-ray_coronavirus_US.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fe77829e9267880ed280ec5a780b63b0e8fded7f8837c16388dfb67cc4ae6c +size 108636 diff --git a/Disease_Detection/test/Covid/auntminnie-a-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg b/Disease_Detection/test/Covid/auntminnie-a-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f2a444932e0a4105a4f4459389bbfe299a39351c --- /dev/null +++ b/Disease_Detection/test/Covid/auntminnie-a-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9194336e3d6152ff348289a711e37eebf6444e9e166472ba5fcef36a485f9d +size 134512 diff --git a/Disease_Detection/test/Covid/auntminnie-b-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg b/Disease_Detection/test/Covid/auntminnie-b-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ca1094b76384e60e9765dcaa77f37dfa6a287be5 --- /dev/null +++ b/Disease_Detection/test/Covid/auntminnie-b-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe57e490c7e52623c42cac6f64ecf8a83d1a6d26cd855bc2db04820b9eeda13 +size 130226 diff --git a/Disease_Detection/test/Covid/auntminnie-c-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg b/Disease_Detection/test/Covid/auntminnie-c-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0dad98190981b9d4986244dff3fa10cc27dd8ad6 --- /dev/null +++ b/Disease_Detection/test/Covid/auntminnie-c-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4441e030c9882f4ff1bb321ac26e12a402efa4b36b0680d6c9da97480fabd71 +size 131169 diff --git a/Disease_Detection/test/Covid/auntminnie-d-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg b/Disease_Detection/test/Covid/auntminnie-d-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c25314a66c5c593b2a55ab5f66269a169565f0da --- /dev/null +++ b/Disease_Detection/test/Covid/auntminnie-d-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a5232758000c3e1d5379c6dbc6149ba5c62be1f571354ae4c4183ea98f3c3c +size 117814 diff --git a/Disease_Detection/test/Covid/radiopaedia-2019-novel-coronavirus-infected-pneumonia.jpg b/Disease_Detection/test/Covid/radiopaedia-2019-novel-coronavirus-infected-pneumonia.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14be6f8211442f082b077d1856b893cd5ba8c41a --- /dev/null +++ b/Disease_Detection/test/Covid/radiopaedia-2019-novel-coronavirus-infected-pneumonia.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa91ffa77bb84823f1352e2248b1332301b398e55261dd331cd87b5c6161195 +size 270755 diff --git a/Disease_Detection/test/Normal_chestxray/0101.jpeg b/Disease_Detection/test/Normal_chestxray/0101.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..255984e84edcc2c930d0fc7b3d8776ba122271f1 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0101.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff76a4b1acc8daaf0140c25f595d7b7c32e1fb87d4c7a646bd7e008a837f2391 +size 538515 diff --git a/Disease_Detection/test/Normal_chestxray/0102.jpeg b/Disease_Detection/test/Normal_chestxray/0102.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3012be27e9571b0ec13e37c331dc9061b32ecd0c --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0102.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862962ee4ff3c18f4301ad87b560f85bdb294ce293d5bee5d888fe86e9a76ba4 +size 570281 diff --git a/Disease_Detection/test/Normal_chestxray/0103.jpeg b/Disease_Detection/test/Normal_chestxray/0103.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4498dff1d5c0b0af5ac5115af46ab77f0c6f69af --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0103.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea33e48d5ab20ed999edb1becfe5bc5cd557b5430afe69880f5333c4b2a1486 +size 498870 diff --git a/Disease_Detection/test/Normal_chestxray/0105.jpeg b/Disease_Detection/test/Normal_chestxray/0105.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bd22b88ac80b050cc2a80039e2bf02fe97eae42f --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0105.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46584a87fcc9dddbb7e3fd408a8e9d68eaf530af8a071cee3b73ba48e7becc9a +size 513459 diff --git a/Disease_Detection/test/Normal_chestxray/0106.jpeg b/Disease_Detection/test/Normal_chestxray/0106.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f001261e7bbcf758f5009df46378a718a97def18 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0106.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc10d7092437685ac85849981b7fad11eaa896bc60a2d282c31fabf42e502ff +size 550167 diff --git a/Disease_Detection/test/Normal_chestxray/0107.jpeg b/Disease_Detection/test/Normal_chestxray/0107.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6dfec3c4860030df29d765e84c6ea4b53ac18c0a --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0107.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554003b03fd9bf8fdcc6cc1f08e85dfacb4c397b21e7e07b8a284d60afde176a +size 488058 diff --git a/Disease_Detection/test/Normal_chestxray/0108.jpeg b/Disease_Detection/test/Normal_chestxray/0108.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ba95ed5fe68b8476253d33a0f2105bc746a7ecdf --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0108.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01f35107133d1a68d911d3a7218c28bc167b1afd4c18396c9a1b5b0722ea5c6 +size 483694 diff --git a/Disease_Detection/test/Normal_chestxray/0109.jpeg b/Disease_Detection/test/Normal_chestxray/0109.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f35656cbf5b49d94b5d3149d67f7cae9c7e33b2b --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0109.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca21af853f4754013056b0692e7459fed7fa8b744096ff7f3bf45762b4867042 +size 494855 diff --git a/Disease_Detection/test/Normal_chestxray/0110.jpeg b/Disease_Detection/test/Normal_chestxray/0110.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9c389a55208cdd3d0c0df6f421fe2e54071385aa --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0110.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81108467cefb1d2a4794cddcd635139a78e0f0f7ebfd45380eddff9808e2a6ce +size 469866 diff --git a/Disease_Detection/test/Normal_chestxray/0111.jpeg b/Disease_Detection/test/Normal_chestxray/0111.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3d465da343d83211d00ee1c1e203920a54a55803 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0111.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc10e82e4b433852195f7a3b003a8326627f7930768452363e0de49904cfc13 +size 481627 diff --git a/Disease_Detection/test/Normal_chestxray/0112.jpeg b/Disease_Detection/test/Normal_chestxray/0112.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..902e1f46bc53f605418f3eb5f80ffe0b81a62521 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0112.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa125c8b5b8bd819ef86f9f46259784727ef9e1cb39c99a1223f95541a73c317 +size 498899 diff --git a/Disease_Detection/test/Normal_chestxray/0114.jpeg b/Disease_Detection/test/Normal_chestxray/0114.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..471125430768e161b9648ec0b2566a557fe6d507 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0114.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237ee64dec38488c8242eeba272ccca5e12ab9df0ca17e0493cc5f5bd87efdf5 +size 475856 diff --git a/Disease_Detection/test/Normal_chestxray/0115.jpeg b/Disease_Detection/test/Normal_chestxray/0115.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..73d9e5842f80db42c419c76fc8f84d962400249a --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0115.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2feb120edf8035689ad765c07b095e9f9c236cff8dbb5d1e8d148dfd687a3a3b +size 498613 diff --git a/Disease_Detection/test/Normal_chestxray/0116.jpeg b/Disease_Detection/test/Normal_chestxray/0116.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..80bd653362efb0b965202226eb85068f77a6e822 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0116.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff056ca06e9de5ce8e0ad88867c0b6c48e567d5f96632a56e505fa47c3ec273 +size 522912 diff --git a/Disease_Detection/test/Normal_chestxray/0117.jpeg b/Disease_Detection/test/Normal_chestxray/0117.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f48ac7b62790d5592d8bc5015709fcee213e198c --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0117.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a88af0581fa525c41e8af69d385541cf82e8c32b8dfa85838af274106c2975 +size 500965 diff --git a/Disease_Detection/test/Normal_chestxray/0118.jpeg b/Disease_Detection/test/Normal_chestxray/0118.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4ccbda7c4932b31ac11c6f1e16774bfaa128b7d3 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0118.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c362bc2f4989cf99d355f99ea4f5efff9bbdc4e387a4b9fc12e6db39da00953c +size 478434 diff --git a/Disease_Detection/test/Normal_chestxray/0119.jpeg b/Disease_Detection/test/Normal_chestxray/0119.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..703ac89431ec23dd248b7be2e933eae1530080e2 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0119.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3c710ff2999a097c7fbe2850282a0e623516c9f4087de2302ade24d329fab3 +size 463674 diff --git a/Disease_Detection/test/Normal_chestxray/0120.jpeg b/Disease_Detection/test/Normal_chestxray/0120.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d5647ef878c13ac053e9985787935d330a8c7a27 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0120.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ab80b864eb7f17d89b051689be05254b73e8a3bfe40423d92d2015b3e8eff4 +size 562746 diff --git a/Disease_Detection/test/Normal_chestxray/0121.jpeg b/Disease_Detection/test/Normal_chestxray/0121.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9b147f98f60e7dbb4fbacca207fbcca1b6b919dd --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0121.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0c783b6877de1ffcf19a2d5435b5692e15522c1e0abe354e91870e225adbf9 +size 471640 diff --git a/Disease_Detection/test/Normal_chestxray/0122.jpeg b/Disease_Detection/test/Normal_chestxray/0122.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..85c2baa55fa4ebbe15716f828399b235cf74ebde --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/0122.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9827e444fc422e4d10a196547c07a62da5abe7bc19b60ff2d214b5ff14fa8864 +size 466914 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0241-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0241-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b7033061dcd14d5505d0a91c4600a72c3cbc3348 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0241-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cabd993c74b500d494a9221f8e6aefcd39aedc9b4946fd1062e329307dcef93 +size 608921 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0242-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0242-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..72679777a180bd036e047fe707880fd2de25f4ee --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0242-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa09a9f00bca5e9c6c3656b87256f931cdd444f0a81a4c475943a0f2dc6277fa +size 612898 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0243-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0243-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8696f228b7e24bd7c20002752404cc7b273f626a --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0243-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdca66efe31f567f0162c86bbcd38710730522843719c0069d46f96e953917b5 +size 716250 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0244-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0244-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..411b1e986f782359809e7d6b9c04c483a6d8a4dc --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0244-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba696867ca5ecbb3e5f3a1e1c269e540a2b714f49144e63237ae30fd34b59749 +size 321630 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0245-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0245-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f3cf77a88a55815d3d05239b81b7ef2247f036ce --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0245-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c280106ed07100117afb001e1aef659b3756aedadda617ca44c27eb8cc7682a +size 602159 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0248-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0248-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b0e6c04386e89deee6e105cf0f2a077cbdc52ad6 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0248-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdd17f9e7ce7a525551e2822a48dda101a034e80c51feb2bb4fb6e8aebd2be8 +size 503076 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0249-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0249-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a690d0b529b6e1e2797c0d1a33e90a28e2c6376c --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0249-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b636b2959cc5b0028bf1680b1e979dfbf0b2739b36b3d58697111aa5e17acf7 +size 1051444 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0250-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0250-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..472e6eeae427896f1b7765ececfa897e2ed386cc --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0250-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e325d03341034d919fc75edcf7024d60fee657981b05db2216d8afec86fdb9d +size 614836 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0251-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0251-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d36ba2880410e541232ef4b81a4bcb13d416e51f --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0251-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45428d5cb1046aa915ef146c5a0c914ac7e01db454fa025629c46671686daf01 +size 486201 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0253-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0253-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..29d1fa3045b5f998cda500d38986d65a37bac33f --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0253-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c183beaed7abcfae78d2d73b37f5543ea6cbd5cc19021750b0c11071ca096a63 +size 519409 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0255-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0255-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ddffb0bf8557e116580770a4ac4811b0f20de9d9 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0255-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca3896fe4ebc8e16db92376c1231f66df7b352b711878fe0623621af46843dd +size 438275 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0256-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0256-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8fb7ae6f7958bbed31f24021399000e8b846ffb5 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0256-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b384c23f17d133be791fdf4a0efba78f73c8292ae3faa6bd16c6bd5e31275189 +size 419372 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0257-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0257-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..295af70732a2774160a65fa901eda1d140715f6f --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0257-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d93225087d91dee57b1b4573a707fbaf71f847bdc8d9e5c6fd5ae57096dc5e78 +size 526291 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0261-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0261-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1aee02164aa17ea1f4a924b60e21598df71cba11 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0261-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc9114b7d9b19ff913f4ee932b794917fef9086d5eb2984e59e46e18ea79a4f +size 513390 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0262-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0262-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d924c654961823f8ef1b394c0b0221f67f9a2c7d --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0262-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e7f225546496e60fd8ea86d993ac24908667fd0689a14477f82df462bc4552 +size 668388 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0264-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0264-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8ca27a582c91488843f3a453abbff96922f8355e --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0264-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed84d75328f1eb80c6554e3c6ba8dcd573e733914b2934bfce399ae6e8f38ec4 +size 565575 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0265-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0265-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c2290a0dd0e40362899626a56cd70f70b1c18d89 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0265-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63780c02128af344b32bc7e8b778cbc796abee0465483800fff5e792bd440b5 +size 423829 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0266-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0266-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7c82c5b2b59d37648d6081943370ed97c2957ddd --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0266-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7b568405c80a1c4bc5c1a83c88e8cc44cd4e067c4a47f233fc68b68b420668 +size 657602 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0268-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0268-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..29df1aba6a3783561583b17f1aa616647aca253c --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0268-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d654662ebc528c021677f47fcfc9f25145f793693607aa8a35293d88e861f32 +size 542100 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0269-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0269-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8fc9206f5c1b219759fe363d54406ecf7ff38586 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0269-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494936d64cfda9a5c1a4660c48ed340d3abc1f0233619cc461161d4458150a1a +size 693898 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0270-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0270-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5ce6bcc999dc1449e8ff3532319172a782dd1b69 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0270-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec7f8e327342a2f55aea590fda5530a3f5554010f7cafef310856b594045509 +size 427912 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0272-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0272-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f7ddb4a2e3a188240836c1c870d419e983aa64be --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0272-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ab4ef4a3b0fa57c47624214c4efd8ca940bce53115e007c201efc89f275f90 +size 454098 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0273-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0273-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..912ed36a00b295e83f0fad4f1f1b04a0dd4bd6b4 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0273-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d56f6b9d7f02f55923c1587352ac356819bd1fa9324d068fef98066873caa9 +size 481545 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0274-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0274-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2b45420ac5815d2576771a84d17508fe59526772 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0274-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1ac7be3be6cf66abb694628bdbe6865f707b7b7b7d7dbb502a9f9ff8dae022 +size 564003 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0275-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0275-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0805995074aec8fb80ec5911efa7b99cc500556e --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0275-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e42ad7f1ad8d8bc4b2f50c376565da08eee75867394871ff0cc6e7beb0fd75 +size 626212 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0276-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0276-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d63e242d754e29b8d190e8efe1d166b6b8e984f2 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0276-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b738332b9768b28fca8cab6c9848613f7c65e25c7aaccdb1c9c01f01eaecb0af +size 722199 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0277-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0277-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..36d54719ea1ceb9160bc6e9c0d37eb1f375e20a2 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0277-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63cf7d58bb3471da44dc16fe235b69121507fa7713f9a0a4f1be787d91b7fc80 +size 504530 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0278-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0278-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d73ec456047f59dfdd4f2372c492cd4c61a453d5 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0278-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878bed40e1bbb7883ffc19efd1b844620a9535eed878490ea67c6c00b0622a1a +size 618044 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0279-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0279-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9eeeff46d6d18454c8cbb90f6bffeb41f331c89b --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0279-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ea3f8c06b3e21371eb2c7e2943509fffbe24694619fc98b0faba887813162f +size 432303 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0280-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0280-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4dfc621502882a47db151938156fcfdf7841de50 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0280-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eed9e11845b2d7f67c3a2c20d4f46507edb5f69fa05eefd2d1d2a360e6d7645 +size 437468 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0282-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0282-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e7622c3bc7be497aea2077d663ef8caf1d068be1 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0282-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7522b01c851f89bc90f1e018a14af31786b9fe8fb832cf68dfeec6bf02fe7ed3 +size 510890 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0283-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0283-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..11b1e93d69800fdaa70264913468395f616f98ca --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0283-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614359deecd59e3a2347e1e343c4e899c2b3065e824c36603fbd46d6f291d1ce +size 679103 diff --git a/Disease_Detection/test/Normal_chestxray/IM-0285-0001.jpeg b/Disease_Detection/test/Normal_chestxray/IM-0285-0001.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..628572edf78548dc7d33f173c5ab983aa11edc23 --- /dev/null +++ b/Disease_Detection/test/Normal_chestxray/IM-0285-0001.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109eee27bd520f4837cc737ec47fec7234d6a355c9e9d317d9471103020485b5 +size 451478 diff --git a/Disease_Detection/test/code b/Disease_Detection/test/code new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Disease_Detection/test/code @@ -0,0 +1 @@ + diff --git a/Disease_Detection/train/images b/Disease_Detection/train/images new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Disease_Detection/train/images @@ -0,0 +1 @@ + diff --git a/Docs/CHECKLIST.md b/Docs/CHECKLIST.md new file mode 100644 index 0000000000000000000000000000000000000000..1fa95fd5de1925e22e979558ac112641847cfc4d --- /dev/null +++ b/Docs/CHECKLIST.md @@ -0,0 +1,40 @@ +# AI-Driven Remote Healthcare Solution Checklist + +## Foundation +- [x] Set up Streamlit frontend +- [x] Configure Django backend +- [x] Integrate AI71 API (Falcon LLM) + +## Core Features +- [x] Implement AI Chatbot UI +- [x] Develop Diagnosis Algorithm +- [x] Create Drug Identification UI +- [x] Implement Doctor's Handwriting Identification +- [x] Implement OCR for Handwriting +- [ ] Implement Drug Database + +## Enhanced Patient Care +- [ ] Develop Telemedicine Interface +- [ ] Implement Resource Management System + +## Public Health & Analytics +- [x] Develop Outbreak Alert Feature +- [ ] Implement Data Visualization Dashboard + +## Deployment +- [x] Deploy the handwriting classification API on HuggingFace. +- [ ] Deploy the Streamlit app and ensure it is linked correctly with the backend. +- [ ] Hide the HuggingFace name in the deployed interface for security reasons. + +## Testing and Validation +- [ ] Test the entire workflow from image upload to final text display. +- [ ] Validate the accuracy of the handwriting detection and OCR models. +- [ ] Ensure the Falcon LLM model provides accurate and contextually relevant text analysis. + +## Documentation and Communication +- [ ] Document the workflow and API integration steps. +- [ ] Communicate with the team leader for the exact prompt required for the healthcare automation part. +- [ ] Keep the team updated on progress and any issues encountered. + +## Deadline Management +- [ ] Ensure all tasks are completed by the deadline (August 6). diff --git a/Docs/PROJECT_OVERVIEW.md b/Docs/PROJECT_OVERVIEW.md new file mode 100644 index 0000000000000000000000000000000000000000..bbc6c0d3dc2961d72844c0c25cab37dd9bcdfb3d --- /dev/null +++ b/Docs/PROJECT_OVERVIEW.md @@ -0,0 +1,70 @@ +### Project Overview - Medi Scape +Medi Scape is a healthcare application that allows users to upload prescription images, which are then processed to extract and analyze the text. The key components include image processing, text recognition, and context understanding using machine learning models. + +### Workflow Steps + +1. **User Uploads Prescription Image** + - **Frontend**: User uploads an image via the Streamlit app. + - **Action**: The image is sent to the backend for processing. + +2. **Backend Receives Image** + - **Backend**: The Django server receives the uploaded image. + - **Action**: The backend calls the Doctor's Handwriting Detection API to detect handwriting. + +3. **Doctor's Handwriting Detection API** + - **API**: The uploaded image is processed to detect bounding boxes and classify the handwritten text. + - **Action**: The API returns the bounding boxes and classified text to the backend. + +4. **Backend Calls OCR Model** + - **Backend**: Extract bounding boxes and classes from the API response. + - **Action**: Send the bounding boxes to an OCR model to convert the handwriting to text. + +5. **Backend Processes OCR Text** + - **Backend**: The OCR model returns the detected text. + - **Action**: Send the detected text to the Falcon LLM model via the AI71 API for context understanding. + +6. **Falcon LLM Model via AI71 API** + - **API**: The detected text is processed for context understanding by the Falcon LLM model. + - **Action**: The processed text is returned to the backend. + +7. **Backend Sends Final Results to Frontend** + - **Backend**: The final processed text received from the AI71 API. + - **Action**: Send the final results back to the frontend (Streamlit app) for user display. + +### Checklist / To-Do List + +1. **Frontend Development**: + - [x] Implement image upload functionality in the Streamlit app. + - [x] Ensure the image is correctly sent to the backend. + +2. **Backend Development**: + - [x] Set up Django server to receive and handle uploaded images. + - [x] Integrate Doctor's Handwriting Detection API to process the images. + - [x] Extract bounding boxes and classes from the API response. + - [x] Integrate OCR model to convert bounding boxes to text. + - [x] Process the OCR text using the Falcon LLM model via AI71 API. + - [x] Send the final processed text to the frontend. + +3. **API Integration**: + - [x] Ensure proper integration of the Doctor's Handwriting Detection API. + - [x] Ensure proper integration of the Falcon LLM model via AI71 API. + - [x] Implement fallback solutions (like iframes) for Streamlit if API integration fails. + +4. **Deployment**: + - [x] Deploy the handwriting classification API on HuggingFace. + - [x] Deploy the Streamlit app and ensure it is linked correctly with the backend. + - [x] Hide the HuggingFace name in the deployed interface for security reasons. + +5. **Testing and Validation**: + - [x] Test the entire workflow from image upload to final text display. + - [x] Validate the accuracy of the handwriting detection and OCR models. + - [x] Ensure the Falcon LLM model provides accurate and contextually relevant text analysis. + +6. **Documentation and Communication**: + - [x] Document the workflow and API integration steps. + - [x] Communicate with the team leader for the exact prompt required for the healthcare automation part. + - [x] Keep the team updated on progress and any issues encountered. + +7. **Deadline Management**: + - [x] Ensure all tasks are completed by the deadline (August 6). + diff --git a/Docs/ROADMAP.mermaid b/Docs/ROADMAP.mermaid new file mode 100644 index 0000000000000000000000000000000000000000..02943a9910e7b4d428dfeb05aee6bdcf166a7521 --- /dev/null +++ b/Docs/ROADMAP.mermaid @@ -0,0 +1,33 @@ +graph TD + A[Start] --> B[Foundation] + B --> C[Core Features] + C --> D[Enhanced Patient Care] + D --> E[Public Health & Analytics] + E --> F[Integration & Optimization] + F --> G[Testing & Refinement] + G --> H[Pilot Launch] + H --> I[End] + + subgraph "Frontend (Streamlit)" + B1[Set up Streamlit] + C1[Implement Chatbot UI] + C2[Develop Drug ID UI] + D1[Create Telemedicine Interface] + E1[Develop Analytics Visualizations] + end + + subgraph "Backend (Django & AI)" + B2[Configure Django] + B3[Integrate AI71 API] + C3[Develop Diagnosis Algorithm] + C4[Implement Drug Database] + D2[Develop Resource Management] + E2[Implement Outbreak Detection] + F1[Integrate All Modules] + end + + B --> B1 & B2 & B3 + C --> C1 & C2 & C3 & C4 + D --> D1 & D2 + E --> E1 & E2 + F --> F1 diff --git a/Docs/WORKFLOW.md b/Docs/WORKFLOW.md new file mode 100644 index 0000000000000000000000000000000000000000..ad8b018d4b3bbb4ffae7ef22ef184ffdda32812c --- /dev/null +++ b/Docs/WORKFLOW.md @@ -0,0 +1,29 @@ +## Updated Workflow Steps + +1. **User Uploads Prescription Image** + - **Frontend**: User uploads an image via the Streamlit app. + - **Action**: Image is sent to the backend. + +2. **Backend Receives Image** + - **Backend**: Django server receives the image. + - **Action**: Backend calls the Doctor's Handwriting Detection API. + +3. **Doctor's Handwriting Detection API** + - **API**: Image is processed to detect bounding boxes and classes. + - **Action**: Bounding boxes and classes are returned to the backend. + +4. **Backend Calls OCR Model** + - **Backend**: Extract bounding boxes and classes from API response. + - **Action**: Send bounding boxes to an OCR model to convert to text. DocTR (via Roboflow Hosted API) + +5. **Backend Processes OCR Text** + - **Backend**: OCR model returns detected text. + - **Action**: Send text to Falcon LLM model via AI71 API. + +6. **Falcon LLM Model via AI71 API** + - **API**: Text is processed for context understanding. + - **Action**: Processed text is returned to the backend. + +7. **Backend Sends Final Results to Frontend** + - **Backend**: Final processed text received from AI71 API. + - **Action**: Send final results to the frontend \ No newline at end of file diff --git a/Docs/workflow_diagram.md b/Docs/workflow_diagram.md new file mode 100644 index 0000000000000000000000000000000000000000..7918bb9ff368dab6a12127cda9840c49e2631101 --- /dev/null +++ b/Docs/workflow_diagram.md @@ -0,0 +1,13 @@ +```mermaid +graph TD + A[User Uploads Prescription Image] --> B[Backend Receives Image] + B --> C[Call Doctor's Handwriting Detection API] + C --> D[API Detects Bounding Boxes & Classes] + D --> E[Extract Bounding Boxes & Classes] + E --> F[Call OCR Model] + F --> G[OCR Model Returns Detected Text] + G --> H[Send Text to Falcon LLM Model via AI71 API] + H --> I[Falcon LLM Model Processes Text] + I --> J[Return Processed Text to Backend] + J --> K[Send Final Results to Frontend] + K --> L[Display Results in Streamlit App] \ No newline at end of file diff --git a/Doctor_Handwriting/Final_Code_Doctor_Handwriting.ipynb b/Doctor_Handwriting/Final_Code_Doctor_Handwriting.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..52d291952345b3101b4b1f5ccd813d6cd23a60d8 --- /dev/null +++ b/Doctor_Handwriting/Final_Code_Doctor_Handwriting.ipynb @@ -0,0 +1,777 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "dac0e0fe-9d17-4ab1-9f5c-b42bfef7450a", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-sdk in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)Note: you may need to restart the kernel to use updated packages.\n", + "\n", + "Requirement already satisfied: requests>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.31.0)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.6.7)\n", + "Requirement already satisfied: opencv-python>=4.8.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (10.3.0)\n", + "Requirement already satisfied: supervision<1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.22.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (1.26.4)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.2.1)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.7.6)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (9.0.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2024.7.4)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pyyaml>=5.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (6.0.1)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (1.13.1)\n", + "Requirement already satisfied: packaging>=17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses-json>=0.6.0->inference-sdk) (23.2)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (3.0.9)\n", + "Requirement already satisfied: python-dateutil>=2.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (2.9.0.post0)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (1.0.0)\n", + "Requirement already satisfied: typing-extensions>=3.7.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (4.11.0)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil>=2.7->matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.16.0)\n" + ] + } + ], + "source": [ + "%pip install inference-sdk" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b60d9992-2fbf-4e46-b032-3e564ddf4fdf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-cli in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests<=2.31.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.31.0)\n", + "Requirement already satisfied: docker==6.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.1.3)\n", + "Requirement already satisfied: typer==0.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.9.0)\n", + "Requirement already satisfied: rich<=13.5.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (13.3.5)\n", + "Requirement already satisfied: skypilot==0.4.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.4.1)\n", + "Requirement already satisfied: PyYAML>=6.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.0.1)\n", + "Requirement already satisfied: supervision>=0.17.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.22.0)\n", + "Requirement already satisfied: opencv-python>=4.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: tqdm>=4.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.66.4)\n", + "Requirement already satisfied: GPUtil>=1.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.4.0)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (9.0.0)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.2.1)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.6.7)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (10.3.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.26.4)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.7.6)\n", + "Requirement already satisfied: packaging>=14.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (23.2)\n", + "Requirement already satisfied: urllib3>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.26.19)\n", + "Requirement already satisfied: websocket-client>=0.32.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.8.0)\n", + "Requirement already satisfied: pywin32>=304 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (305.1)\n", + "Requirement already satisfied: wheel in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.43.0)\n", + "Requirement already satisfied: cachetools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.3.3)\n", + "Requirement already satisfied: click>=7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (8.1.7)\n", + "Requirement already satisfied: colorama<0.4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.4.4)\n", + "Requirement already satisfied: cryptography in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (42.0.5)\n", + "Requirement already satisfied: jinja2>=3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.1.4)\n", + "Requirement already satisfied: jsonschema in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.19.2)\n", + "Requirement already satisfied: networkx in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.2.1)\n", + "Requirement already satisfied: pandas>=1.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.2.2)\n", + "Requirement already satisfied: pendulum in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.0.0)\n", + "Requirement already satisfied: PrettyTable>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.10.2)\n", + "Requirement already satisfied: python-dotenv in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.21.0)\n", + "Requirement already satisfied: tabulate in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.9.0)\n", + "Requirement already satisfied: typing-extensions in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.11.0)\n", + "Requirement already satisfied: filelock>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.13.1)\n", + "Requirement already satisfied: psutil in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.9.0)\n", + "Requirement already satisfied: pulp in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.9.0)\n", + "Requirement already satisfied: awscli>=1.27.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.33.31)\n", + "Requirement already satisfied: botocore>=1.29.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: boto3>=1.26.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (3.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2024.7.4)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.15.1)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (1.13.1)\n", + "Requirement already satisfied: docutils<0.17,>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.16)\n", + "Requirement already satisfied: s3transfer<0.11.0,>=0.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.10.2)\n", + "Requirement already satisfied: rsa<4.8,>=3.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (4.7.2)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.0.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (2.9.0.post0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jinja2>=3.0->skypilot==0.4.1->inference-cli) (2.1.3)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich<=13.5.2->inference-cli) (0.1.0)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (3.0.9)\n", + "Requirement already satisfied: pytz>=2020.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2024.1)\n", + "Requirement already satisfied: tzdata>=2022.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2023.3)\n", + "Requirement already satisfied: wcwidth in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from PrettyTable>=2.0.0->skypilot==0.4.1->inference-cli) (0.2.5)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-cli) (1.0.0)\n", + "Requirement already satisfied: cffi>=1.12 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cryptography->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: jsonschema-specifications>=2023.03.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (2023.7.1)\n", + "Requirement already satisfied: referencing>=0.28.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.30.2)\n", + "Requirement already satisfied: rpds-py>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.10.6)\n", + "Requirement already satisfied: time-machine>=2.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pendulum->skypilot==0.4.1->inference-cli) (2.14.2)\n", + "Requirement already satisfied: pycparser in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cffi>=1.12->cryptography->skypilot==0.4.1->inference-cli) (2.21)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil<3.0.0,>=2.1->botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: pyasn1>=0.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rsa<4.8,>=3.1.2->awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.4.8)\n", + "Command failed. Cause: Error connecting to Docker daemon. Is docker installed and running? See https://www.docker.com/get-started/ for installation instructions.\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\paramiko\\transport.py:219: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release\n", + " \"class\": algorithms.Blowfish,\n" + ] + } + ], + "source": [ + "%pip install inference-cli && inference server start" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c59f67fd-4ca8-47b0-a82e-23da5d0c42bd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python) (1.26.4)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install opencv-python" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "2b3d747d-6aec-4d9c-a2f9-0bf33ca97135", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python-headless in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python-headless) (1.26.4)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install opencv-python-headless" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "8ea7c723-f4f2-41fa-93fa-4b99ddd91601", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-contrib-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-contrib-python) (1.26.4)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install opencv-contrib-python" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "53a68368-b075-47b4-8b97-776535cb6bc1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Note: you may need to restart the kernel to use updated packages.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)\n", + "ERROR: No matching distribution found for cv2\n" + ] + } + ], + "source": [ + "%pip install cv2" + ] + }, + { + "cell_type": "markdown", + "id": "7b781da3-176d-4ff6-a434-3e3a74361457", + "metadata": {}, + "source": [ + "-- IMAGE PREPROCESSING ---------------------------------------------------------------------------------------------------------------------------------" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "a77981c4-72f1-4371-aba3-f64e9dd2c734", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Detected angle: 79.61532592773438\n", + "Corrected angle: 0\n" + ] + }, + { + "data": { + "image/png": "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8sknMWnSJAQHB19yGTW5HeXvajtWBoMBbrcbUVFR1b7Xeqaj9rgUToSFhak+0zxA/59lZWUYOHAgvL298fLLLyMxMRG+vr7IyMjAhAkTqv0fa81RANC9e3cMHDgQM2bMwO23347FixfjxIkT1dw+OuoGeey1IP/PFhYWQgih+X9OMY/5+fnK79r8z9I8QGECMoxGoypfT3k2xaMm/nIKislkwtChQ7F8+XJkZ2eriELbw7QGSivQcd++fdi9ezdmzZqFyZMnK88peFHGtGnT8Prrr+PLL79EVVUVnE4n7rvvPlWahIQEJdj1yJEjmDdvHp5//nnY7XZ88sknaNGiBQAgMzMTcXFxmuXUtV4c4eHhAM5ZdzztPuAa/V8dXbt2xbJly3DkyBH07t272vdksbDZbIoAAuAxWLmmM0nk72o7VrTjJycnp9r3Ws90XBouxInaYvXq1cjKysLatWsVqwkAVTwaR03ceeihh3DjjTdi165d+PDDD5GYmIirr776ouumo3aQxyQkJARGoxHZ2dnV0lKANP1fh4WF1ep/ltL/+OOPipVcC6QQN6d54C+noADngg2XLl2K++67Dz/++GONuzBqApGPCx4AHlcm0dHRuPHGG/HRRx/Bbrdj7NixiI+P95h/YmIinn32WcyfPx+7du0CAIwYMQImkwkff/wx+vXrVy/14hgwYACCg4Nx4MABTJ8+/YLp/+qg3VWkOMogE/qePXtUK5xFixZdctm1HSsvLy/07t0bCxYswFtvvaUoTaWlpfVSDx1qXIgTtcWl/B/LuP766xEfH4/HHnsM69atw3vvvacf0NcI8PPzQ58+fbBgwQK8/fbbypZjt9uNb7/9FrGxsYqLd8iQIfjll1+Qm5urLApdLpcqkBYARo4cCbPZjGPHjmm6+AgdOnRAdHQ05syZg0cffVQZ/5MnT2LTpk2KBacp4S+poAwYMAAzZszAgw8+iB49euDee+9FcnKyotnOnz8fADTNpRxJSUlo27YtnnrqKQghEBoaikWLFmHFihUe33n44YfRp08fAKi2g2LPnj2YPn06brzxRrRv3x5eXl5YvXo19uzZg6eeegrAOYH3r3/9Cy+99BIqKytx6623IigoCAcOHMDZs2fxwgsvXFS9CP7+/vjggw8wefJkFBQU4IYbbkBERATy8vKwe/du5OXl4eOPP75gPn9G7Nu3D06nE8A5c+mCBQuwYsUKXH/99WjdurXmO2PGjEFoaCjuvvtuvPjiizCbzZg1a5bmts+6oi5j9dJLL2HUqFG4+uqr8dhjj8HlcuGNN96An58fCgoKLrkuf1VcDCdqi/79+yMkJAT33XcfnnvuOVgsFnz33XfYvXt3nfMymUx44IEH8M9//hN+fn6YMmXKJdVNh3rsOdq2bVujcvraa6/h6quvxpAhQ/D444/Dy8sLH330Efbt24c5c+YoisOzzz6LX375BUOHDsV//vMf+Pr6YsaMGdViAFu1aoUXX3wRzzzzDNLT05WzeHJzc7Ft2zb4+fnhhRdegNFoxEsvvYS///3vuP7663HPPfegqKgIzz//fNN19TZykG6j4o8//hB33nmnaN26tbBarcLb21u0a9dO/O1vfxOrVq1S0k2ePFn4+flp5nHgwAFx9dVXi4CAABESEiJuvPFGcerUqWqR+xytWrUSHTt2rPY8NzdXTJkyRSQlJQk/Pz/h7+8vunbtKt577z3hdDpVab/++mvRq1cv4e3tLfz9/UX37t3FzJkz61wvrd0kQgixbt06cc0114jQ0FBhsVhEy5YtxTXXXCN++OGHmjv1TwitqP2goCDRrVs38e6774qqqiolrda4b9u2TfTv31/4+fmJli1biueee058/vnnmrt4rrnmmmrl0y4eT31f27H65ZdfRNeuXYWXl5eIj48Xr7/+usddRjpqxqVwgt7dvn27Kk8a5zVr1ijPNm3aJPr16yd8fX1FixYtxN///nexa9cuAUD1/17THEU4ceKEACDuu+++S2r7Xx017eIBID777DMhxLlxf+CBBzTzWL9+vRg6dKjw8/MTPj4+om/fvmLRokXV0m3cuFH07dtXWK1WERUVJZ544gnxv//9T3PO/vnnn8WQIUNEYGCgsFqtIiEhQdxwww1i5cqVqnSff/65aN++vfDy8hKJiYniyy+/FJMnT26Su3gMQghxWTQhHQDOWUmuuOIKzJgxA/fff39jV0eHDh1/EXzwwQd46KGHsG/fPiQnJzd2dXTouCB0BeUy4dixYzh58iT+9a9/4dSpUzh69Kh+DLUOHToaHKmpqTh+/DimTp2KAQMG4Oeff27sKunQUSvo56BcJrz00ku4+uqrUVZWhh9++EFXTnTo0HFZcP311+O2225Dt27d8MknnzR2dXTo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2/n25ptvIikpCVarFREREfjb3/6GzMxM1TuDBw9G586dsX37dgwcOBC+vr5o06YNXn/9dWX31Nq1a9GrVy8AwJ133qnssHr++eeVfH755Rf069cPvr6+CAgIwNVXX43NmzerypoyZQpatWpVrd5a85TBYMD06dPxySefoGPHjrBarfjqq69gtVoxZswYXHnllfD390dAQACSkpLwr3/9q879eTlR33PBXx1Npj8b1cHUACAf+ZYtW4TD4VD9OJ1OJZ3b7RZDhgwRVqtVvPLKK2L58uXiueeeE23atKkWg7J06VJhNBrF4MGDxU8//SR++OEH0adPH9GqVSshd+E999wjLBaLeOyxx8Rvv/0mZs+eLZKSkkRkZKTIycmpVd15DMrkyZOFl5eX6Nixo3j//ffFihUrxJ133ikAiKefflokJiaKL774Qixbtkxce+21AoDYsWOH8v6hQ4fEtGnTxPfffy/Wrl0rFi9eLO6++25hNBpV8ThlZWWiXbt2IjQ0VMyYMUMsW7ZM/OMf/xCtW7cWAMTMmTOVtKtXrxZeXl5i4MCBYu7cueK3334TU6ZMqZauKeJCcT5lZWXCZDKJYcOGCSFq39apU6cKX19f8e6774o1a9aIxYsXi9dff1188MEHSho5BmXu3LnCarWKadOmKdzcv3+/CAoKEl26dBFff/21WL58uXjssceE0WgUzz//vPLuLbfcIhITE5XPW7ZsEQCEj4+P+O6775Tno0ePFr1791Y+17Y9+/fvF76+vqJTp05izpw5YuHChWLkyJEiPj6+ScWg1BecTqfw9fUVffr0qVX6e++9VwAQ06dPF7/99pv45JNPRIsWLURcXJzIy8tT0l111VUiLCxMtG/fXnzyySdixYoV4v777xcAxFdffSWEOOfvJ14+++yzYvPmzWLz5s0iIyNDCCHEd999JwCIESNGiJ9//lnMnTtX9OzZU3h5eYn169crZU2ePFkkJCRUq+tzzz1XbZ4CIFq2bCm6du0qZs+eLVavXi327dsn5syZIwCIBx98UCxfvlysXLlSfPLJJ+Khhx6qa5fq0HHJ+NMqKFo/JpNJSbd06VIBQLz//vuq91955ZVqCkqvXr1EXFycsNlsyrPS0lIRFham+sffvHmzACDeeecdVZ4ZGRnCx8dHPPnkk7Wqu6ygABDz589XnjkcDtGiRQsBQOza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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import cv2\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "\n", + "def preprocess_image(image_path):\n", + " # Load the image\n", + " image = cv2.imread(image_path)\n", + " \n", + " # Convert to grayscale\n", + " gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)\n", + " plt.subplot(3, 4, 1)\n", + " plt.title(\"Grayscale\")\n", + " plt.imshow(gray, cmap='gray')\n", + " \n", + " # Remove noise\n", + " blurred = cv2.GaussianBlur(gray, (5, 5), 0)\n", + " plt.subplot(3, 4, 2)\n", + " plt.title(\"Blurred\")\n", + " plt.imshow(blurred, cmap='gray')\n", + " \n", + " # Thresholding/Binarization\n", + " _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)\n", + " plt.subplot(3, 4, 3)\n", + " plt.title(\"Binary\")\n", + " plt.imshow(binary, cmap='gray')\n", + " \n", + " # Dilation and Erosion\n", + " kernel = np.ones((1, 1), np.uint8)\n", + " dilated = cv2.dilate(binary, kernel, iterations=1)\n", + " eroded = cv2.erode(dilated, kernel, iterations=1)\n", + " plt.subplot(3, 4, 4)\n", + " plt.title(\"Eroded\")\n", + " plt.imshow(eroded, cmap='gray')\n", + "\n", + " # Display the original image and the edge-detected image\n", + " edges = cv2.Canny(eroded, 100, 200)\n", + " #plt.subplot(121), plt.imshow(deskewed, cmap='gray')\n", + " #plt.title('Original Image'), plt.xticks([]), plt.yticks([])\n", + " plt.subplot(3,4,5) \n", + " plt.title('Edge Image')\n", + " plt.imshow(edges, cmap='gray')\n", + "\n", + " \n", + " # Deskewing\n", + " coords = np.column_stack(np.where(edges > 0))\n", + " angle = cv2.minAreaRect(coords)[-1]\n", + " print(f\"Detected angle: {angle}\") \n", + " if angle < -45:\n", + " angle = -(90 + angle)\n", + " else:\n", + " angle = -angle\n", + " \n", + " angle = 0\n", + " print(f\"Corrected angle: {angle}\") \n", + " (h, w) = edges.shape[:2]\n", + " center = (w // 2, h // 2)\n", + " M = cv2.getRotationMatrix2D(center, angle, 1.0)\n", + " deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE)\n", + " plt.subplot(3, 4, 6)\n", + " plt.title(\"Deskewed\")\n", + " plt.imshow(deskewed, cmap='gray')\n", + "\n", + " # Convert to grayscale\n", + " #gray = cv2.cvtColor(deskewed, cv2.COLOR_BGR2GRAY)\n", + "\n", + " # Find contours\n", + " contours, hierarchy = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)\n", + "\n", + " # Draw contours on the original image\n", + " contour_image = image.copy()\n", + " cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2)\n", + " plt.subplot(3, 4, 7)\n", + " plt.title('Contours')\n", + " plt.imshow(cv2.cvtColor(contour_image, cv2.COLOR_BGR2RGB))\n", + "\n", + " plt.show()\n", + " \n", + " return contour_image\n", + "\n", + "# Example usage\n", + "preprocessed_image = preprocess_image('doc_img_1.jpg') ##################-----------Input image from user ------------- ####################################################################\n", + "cv2.imwrite('preprocessed_image_2.jpg', preprocessed_image)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "fc01b901-305e-4405-98ff-3e68dcece770", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.subplot(3, 4, 6)\n", + "plt.title(\"output\")\n", + "plt.imshow(preprocessed_image, cmap='gray')\n" + ] + }, + { + "cell_type": "markdown", + "id": "58691749-8e14-4b9f-8c30-ee1e1375826c", + "metadata": {}, + "source": [ + "-- API and CODE TO DISPLAY THE IMAGE FOR VIEW TO THE USER ----------------------------------------------------------------------------------------------" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "b7b82be6-c631-47c6-8c56-a7fde1a4670b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'inference_id': '73f8e66e-c0d2-475d-acee-a0018d2be465', 'time': 0.04401978800001416, 'image': {'width': 640, 'height': 640}, 'predictions': [{'x': 161.0, 'y': 357.5, 'width': 66.0, 'height': 119.0, 'confidence': 0.9586223363876343, 'class': 'n', 'class_id': 47, 'detection_id': '9ac3a85b-6543-47f8-8b10-c1d453b1140a'}, {'x': 362.0, 'y': 323.5, 'width': 56.0, 'height': 163.0, 'confidence': 0.9325085282325745, 'class': 'a', 'class_id': 34, 'detection_id': '11c873e8-dcb2-4d22-9af7-69f8e52d6f73'}, {'x': 556.0, 'y': 370.0, 'width': 50.0, 'height': 122.0, 'confidence': 0.9240998029708862, 'class': '0', 'class_id': 0, 'detection_id': '9e606496-8955-4b7e-8491-96535dfd6efe'}, {'x': 509.0, 'y': 385.5, 'width': 58.0, 'height': 163.0, 'confidence': 0.8836796879768372, 'class': '5', 'class_id': 5, 'detection_id': '72ba3777-358f-4180-9531-3b307de4d495'}, {'x': 309.0, 'y': 336.5, 'width': 66.0, 'height': 163.0, 'confidence': 0.8538597822189331, 'class': 'v', 'class_id': 55, 'detection_id': 'a6d25827-4722-4841-bca9-a121d27f8d10'}, {'x': 89.0, 'y': 315.5, 'width': 72.0, 'height': 267.0, 'confidence': 0.5812069177627563, 'class': 'A', 'class_id': 10, 'detection_id': 'bb46e60e-afe3-4353-98fc-8af245954413'}]}\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import os\n", + "from PIL import Image\n", + "from inference_sdk import InferenceHTTPClient\n", + "from roboflow import Roboflow\n", + "from PIL import Image\n", + "import supervision as sv\n", + "import cv2\n", + "\n", + "\n", + "CLIENT = InferenceHTTPClient(\n", + " api_url=\"https://detect.roboflow.com\",\n", + " api_key=\"LSbJ0tl3WTLn4Aqar0Sp\"\n", + ")\n", + "\n", + "\n", + "# Load the image\n", + "#doc_img = Image.open(\"preprocessed_image.jpg\")\n", + "\n", + "#preprocessed_image_path = Image.open(preprocessed_image)\n", + "\n", + "# Perform inference\n", + "result_doch1 = CLIENT.infer(preprocessed_image, model_id=\"doctor-s-handwriting/1\")\n", + "\n", + "# Print or process the result\n", + "print(result_doch1)\n", + "\n", + "\n", + "#rf = Roboflow(api_key=\"YkIPrzXAAK6EbPk1Ehjv\")\n", + "#project = rf.workspace().project(\"doctor-s-handwriting/1\")\n", + "#model = project.version(6).model\n", + "\n", + "#result = model.predict(\"preprocessed_image_2.jpg\", confidence=40, overlap=30).json()\n", + "\n", + "labels = [item[\"class\"] for item in result_doch1[\"predictions\"]]\n", + "\n", + "detections = sv.Detections.from_inference(result_doch1)\n", + "\n", + "image_np = np.array(preprocessed_image)\n", + "\n", + "label_annotator = sv.LabelAnnotator()\n", + "bounding_box_annotator = sv.BoxAnnotator()\n", + "\n", + "#image = cv2.imread(preprocessed_image_path)\n", + "\n", + "annotated_image = bounding_box_annotator.annotate(\n", + " scene=image_np, detections=detections)\n", + "annotated_image = label_annotator.annotate(\n", + " scene=annotated_image, detections=detections, labels=labels)\n", + "\n", + "annotated_image_pil = Image.fromarray(annotated_image)\n", + "\n", + "sv.plot_image(image=annotated_image_pil, size=(16, 16))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "1dcd26d9-62f8-456d-991c-f22d92c6bfdb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['n', 'a', '0', '5', 'v', 'A']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "labels" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "8985d048-aca0-4f75-84ba-ec6bb19e16ba", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Detections and corresponding labels:\n", + "Detection 0: (array([128., 298., 194., 417.]), None, 0.9586223363876343, 47, None, {'class_name': 'n'}) - Label: n\n", + "Detection 1: (array([334., 242., 390., 405.]), None, 0.9325085282325745, 34, None, {'class_name': 'a'}) - Label: a\n", + "Detection 2: (array([531., 309., 581., 431.]), None, 0.9240998029708862, 0, None, {'class_name': '0'}) - Label: 0\n", + "Detection 3: (array([480., 304., 538., 467.]), None, 0.8836796879768372, 5, None, {'class_name': '5'}) - Label: 5\n", + "Detection 4: (array([276., 255., 342., 418.]), None, 0.8538597822189331, 55, None, {'class_name': 'v'}) - Label: v\n", + "Detection 5: (array([ 53., 182., 125., 449.]), None, 0.5812069177627563, 10, None, {'class_name': 'A'}) - Label: A\n" + ] + } + ], + "source": [ + "print(\"Detections and corresponding labels:\")\n", + "for i, detection in enumerate(detections):\n", + " print(f\"Detection {i}: {detection} - Label: {labels[i]}\")" + ] + }, + { + "cell_type": "markdown", + "id": "af04bc10-865d-4fd1-b71b-a1594a629207", + "metadata": {}, + "source": [ + "-- SORTING and CODE TO DISPLAY/PRINT THE DRUG NAME -----------------------------------------------------------------------------------------------------" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "0507dfd4-da5d-4557-9e93-c5310edcfb68", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Unsorted Detections and Labels:\n", + "Detection 0: (array([128., 298., 194., 417.]), None, 0.9586223363876343, 47, None, {'class_name': 'n'}) - Label: n\n", + "Detection 1: (array([334., 242., 390., 405.]), None, 0.9325085282325745, 34, None, {'class_name': 'a'}) - Label: a\n", + "Detection 2: (array([531., 309., 581., 431.]), None, 0.9240998029708862, 0, None, {'class_name': '0'}) - Label: 0\n", + "Detection 3: (array([480., 304., 538., 467.]), None, 0.8836796879768372, 5, None, {'class_name': '5'}) - Label: 5\n", + "Detection 4: (array([276., 255., 342., 418.]), None, 0.8538597822189331, 55, None, {'class_name': 'v'}) - Label: v\n", + "Detection 5: (array([ 53., 182., 125., 449.]), None, 0.5812069177627563, 10, None, {'class_name': 'A'}) - Label: A\n", + "Sorted Detections and Labels:\n", + "Detection 0: Detections(xyxy=array([[ 53., 182., 125., 449.]]), mask=None, confidence=array([0.58120692]), class_id=array([10]), tracker_id=None, data={'class_name': array(['A'], dtype='" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import os\n", + "from PIL import Image\n", + "import cv2\n", + "import numpy as np\n", + "import supervision as sv\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Load the image\n", + "#preprocessed_image_path = \"preprocessed_image.jpg\"\n", + "image_np = np.array(preprocessed_image) # Using OpenCV to read the image\n", + "\n", + "# Perform inference\n", + "result_doch1 = CLIENT.infer(preprocessed_image, model_id=\"doctor-s-handwriting/1\")\n", + "\n", + "# Extract labels and detections\n", + "labels = [item[\"class\"] for item in result_doch1[\"predictions\"]]\n", + "detections = sv.Detections.from_inference(result_doch1)\n", + "\n", + "# Debug: Print unsorted detections and labels\n", + "print(\"Unsorted Detections and Labels:\")\n", + "for i, detection in enumerate(detections):\n", + " print(f\"Detection {i}: {detection} - Label: {labels[i]}\")\n", + "\n", + "# Function to extract the x1 coordinate from the detection\n", + "def get_x1(detection):\n", + " # Extract the x1 coordinate from detection's bounding box\n", + " return detection.xyxy[0][0] # Access the first element of the bounding box array\n", + "\n", + "# Sort detections and labels by the x-coordinate of the bounding box\n", + "sorted_indices = sorted(range(len(detections)), key=lambda i: get_x1(detections[i]))\n", + "sorted_detections = [detections[i] for i in sorted_indices]\n", + "sorted_labels = [labels[i] for i in sorted_indices]\n", + "\n", + "# Debug: Print sorted detections and labels\n", + "print(\"Sorted Detections and Labels:\")\n", + "for i, detection in enumerate(sorted_detections):\n", + " print(f\"Detection {i}: {detection} - Label: {sorted_labels[i]}\")\n", + "\n", + "# Function to plot bounding boxes\n", + "def plot_bounding_boxes(image_np, detections):\n", + " image_with_boxes = image_np.copy()\n", + " for detection in detections:\n", + " x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates\n", + " cv2.rectangle(image_with_boxes, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0), 2)\n", + " return image_with_boxes\n", + "\n", + "# Function to plot labels\n", + "def plot_labels(image_np, detections, labels):\n", + " image_with_labels = image_np.copy()\n", + " for i, detection in enumerate(detections):\n", + " x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates\n", + " label = labels[i]\n", + " cv2.putText(image_with_labels, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2)\n", + " return image_with_labels\n", + "\n", + "# Plot bounding boxes with sorted detections\n", + "image_with_boxes = plot_bounding_boxes(image_np, sorted_detections)\n", + "\n", + "# Plot labels with sorted detections and labels\n", + "image_with_labels = plot_labels(image_np, sorted_detections, sorted_labels)\n", + "\n", + "# Convert images to RGB for plotting with matplotlib\n", + "image_with_boxes_rgb = cv2.cvtColor(image_with_boxes, cv2.COLOR_BGR2RGB)\n", + "image_with_labels_rgb = cv2.cvtColor(image_with_labels, cv2.COLOR_BGR2RGB)\n", + "\n", + "# Plot results using matplotlib\n", + "plt.figure(figsize=(12, 6))\n", + "\n", + "plt.subplot(1, 2, 1)\n", + "plt.title(\"Bounding Boxes\")\n", + "plt.imshow(image_with_boxes_rgb)\n", + "plt.axis('off')\n", + "\n", + "plt.subplot(1, 2, 2)\n", + "plt.title(\"Labels\")\n", + "plt.imshow(image_with_labels_rgb)\n", + "plt.axis('off')\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "3b638625-892a-4547-a1e6-c2606a19f4b6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['A', 'n', 'v', 'a', '5', '0']" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sorted_labels" + ] + }, + { + "cell_type": "markdown", + "id": "c7e9974e-bd68-4cd5-87c0-6e6e9a392692", + "metadata": {}, + "source": [ + "-- DRUG NAME -------------------------------------------------------------------------------------------------------------------------------------------" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "46a4ad37-3d26-4e33-b164-6ea83eae876f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anva50\n" + ] + } + ], + "source": [ + "def image_result(sorted_labels):\n", + " # Convert list to string\n", + " resulting_string = ''.join(sorted_labels)\n", + " return resulting_string\n", + "\n", + "\n", + "input_image_result = image_result(sorted_labels)\n", + "print(input_image_result)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1e0f8e68-b874-42d6-8a86-7e540d26b374", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e1e92ecb-7c59-491e-994a-60e69a51b358", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "79c43f62-3b3e-467d-89d4-5dc74c81c2d7", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Doctor_Handwriting/Screenshot (1).png b/Doctor_Handwriting/Screenshot (1).png new file mode 100644 index 0000000000000000000000000000000000000000..0a228752f76d14f8b523ac231d665571e501bbe2 Binary files /dev/null and b/Doctor_Handwriting/Screenshot (1).png differ diff --git a/Doctor_Handwriting/Screenshot (3).png b/Doctor_Handwriting/Screenshot (3).png new file mode 100644 index 0000000000000000000000000000000000000000..33c66686be7002bf2dc651b7c3f68fa2e6b0c702 Binary files /dev/null and b/Doctor_Handwriting/Screenshot (3).png differ diff --git a/Doctor_Handwriting/app_docr.py b/Doctor_Handwriting/app_docr.py new file mode 100644 index 0000000000000000000000000000000000000000..ee44e7820cdfba162d06191f1dacc2b2fb52bfb3 --- /dev/null +++ b/Doctor_Handwriting/app_docr.py @@ -0,0 +1,254 @@ + +import cv2 +import numpy as np +import matplotlib.pyplot as plt +import os +from PIL import Image +import cv2 +import numpy as np +import supervision as sv +import matplotlib.pyplot as plt + + +def preprocess_image(image_path): + # Load the image + #image = Image.open(image_path) + #image = cv2.imread(image_path) + image = np.array(image_path) + + # Convert to grayscale + gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + plt.subplot(3, 4, 1) + plt.title("Grayscale") + plt.imshow(gray, cmap='gray') + + # Remove noise + blurred = cv2.GaussianBlur(gray, (5, 5), 0) + plt.subplot(3, 4, 2) + plt.title("Blurred") + plt.imshow(blurred, cmap='gray') + + # Thresholding/Binarization + _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU) + plt.subplot(3, 4, 3) + plt.title("Binary") + plt.imshow(binary, cmap='gray') + + # Dilation and Erosion + kernel = np.ones((1, 1), np.uint8) + dilated = cv2.dilate(binary, kernel, iterations=1) + eroded = cv2.erode(dilated, kernel, iterations=1) + plt.subplot(3, 4, 4) + plt.title("Eroded") + plt.imshow(eroded, cmap='gray') + + # Display the original image and the edge-detected image + edges = cv2.Canny(eroded, 100, 200) + plt.subplot(3,4,5) + plt.title('Edge Image') + plt.imshow(edges, cmap='gray') + + + # Deskewing + coords = np.column_stack(np.where(edges > 0)) + angle = cv2.minAreaRect(coords)[-1] + print(f"Detected angle: {angle}") + if angle < -45: + angle = -(90 + angle) + else: + angle = -angle + + angle = 0 + print(f"Corrected angle: {angle}") + (h, w) = edges.shape[:2] + center = (w // 2, h // 2) + M = cv2.getRotationMatrix2D(center, angle, 1.0) + deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE) + plt.subplot(3, 4, 6) + plt.title("Deskewed") + plt.imshow(deskewed, cmap='gray') + + # Convert to grayscale + #gray = cv2.cvtColor(deskewed, cv2.COLOR_BGR2GRAY) + + # Find contours + contours, hierarchy = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + # Draw contours on the original image + contour_image = image.copy() + cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2) + plt.subplot(3, 4, 7) + plt.title('Contours') + plt.imshow(cv2.cvtColor(contour_image, cv2.COLOR_BGR2RGB)) + + plt.show() + + return contour_image + +########################################################################################################################## + +import os +from PIL import Image +from inference_sdk import InferenceHTTPClient +from roboflow import Roboflow +from PIL import Image +import supervision as sv +import cv2 + + +CLIENT = InferenceHTTPClient( + api_url="https://detect.roboflow.com", + api_key="LSbJ0tl3WTLn4Aqar0Sp" +) + + + + +def creating_display_image(preprocessed_image): + # Perform inference + result_doch1 = CLIENT.infer(preprocessed_image, model_id="doctor-s-handwriting/1") + + # Print or process the result + #print(result_doch1) + + labels = [item["class"] for item in result_doch1["predictions"]] + + detections = sv.Detections.from_inference(result_doch1) + + image_np = np.array(preprocessed_image) + + label_annotator = sv.LabelAnnotator() + bounding_box_annotator = sv.BoxAnnotator() + annotated_image = bounding_box_annotator.annotate( + scene=image_np, detections=detections) + annotated_image = label_annotator.annotate( + scene=annotated_image, detections=detections, labels=labels) + annotated_image_pil = Image.fromarray(annotated_image) + sv.plot_image(image=annotated_image_pil, size=(16, 16)) + + return annotated_image_pil + +###################################################################################################################### + +import cv2 +import numpy as np +import matplotlib.pyplot as plt +from PIL import Image +import supervision as sv + +def process_and_plot_image(preprocessed_image): + # Convert preprocessed image to numpy array + image_np = np.array(preprocessed_image) + + # Perform inference + result_doch1 = CLIENT.infer(preprocessed_image, model_id="doctor-s-handwriting/1") + + # Extract labels and detections + labels = [item["class"] for item in result_doch1["predictions"]] + detections = sv.Detections.from_inference(result_doch1) + + # Debug: Print unsorted detections and labels + print("Unsorted Detections and Labels:") + for i, detection in enumerate(detections): + print(f"Detection {i}: {detection} - Label: {labels[i]}") + + # Function to extract the x1 coordinate from the detection + def get_x1(detection): + return detection.xyxy[0][0] # Access the first element of the bounding box array + + # Sort detections and labels by the x-coordinate of the bounding box + sorted_indices = sorted(range(len(detections)), key=lambda i: get_x1(detections[i])) + sorted_detections = [detections[i] for i in sorted_indices] + sorted_labels = [labels[i] for i in sorted_indices] + + # Debug: Print sorted detections and labels + print("Sorted Detections and Labels:") + for i, detection in enumerate(sorted_detections): + print(f"Detection {i}: {detection} - Label: {sorted_labels[i]}") + + # Function to plot bounding boxes + def plot_bounding_boxes(image_np, detections): + image_with_boxes = image_np.copy() + for detection in detections: + x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates + cv2.rectangle(image_with_boxes, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0), 2) + return image_with_boxes + + # Function to plot labels + def plot_labels(image_np, detections, labels): + image_with_labels = image_np.copy() + for i, detection in enumerate(detections): + x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates + label = labels[i] + cv2.putText(image_with_labels, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2) + return image_with_labels + + # Plot bounding boxes with sorted detections + image_with_boxes = plot_bounding_boxes(image_np, sorted_detections) + + # Plot labels with sorted detections and labels + image_with_labels = plot_labels(image_np, sorted_detections, sorted_labels) + + # Convert images to RGB for plotting with matplotlib + image_with_boxes_rgb = cv2.cvtColor(image_with_boxes, cv2.COLOR_BGR2RGB) + image_with_labels_rgb = cv2.cvtColor(image_with_labels, cv2.COLOR_BGR2RGB) + + # Plot results using matplotlib + plt.figure(figsize=(12, 6)) + + plt.subplot(1, 2, 1) + plt.title("Bounding Boxes") + plt.imshow(image_with_boxes_rgb) + plt.axis('off') + + plt.subplot(1, 2, 2) + plt.title("Labels") + plt.imshow(image_with_labels_rgb) + plt.axis('off') + + plt.show() + return sorted_labels + + +########################################################################################################################## + +def image_result(sorted_labels): + # Convert list to string + resulting_string = ''.join(sorted_labels) + return resulting_string + +############################################################################################################################ + +import streamlit as st +from PIL import Image + +# Title of the app +st.title("DOCTOR HANDWRITING DETECTION") + +# Upload an image file +uploaded_image = st.file_uploader("Choose an image...", type="jpg") + +if uploaded_image is not None: + # Display the image + image = Image.open(uploaded_image) + preprocessed_image_for_streamlit = preprocess_image(image) + + display_boundingbox = creating_display_image(preprocessed_image_for_streamlit) + + result = process_and_plot_image(preprocessed_image_for_streamlit) + + input_image_result = image_result(result) + + + cv2.imwrite('preprocessed_image_2.jpg', preprocessed_image_for_streamlit) + + st.image(image, caption='Input image by user', use_column_width=True) + + st.image(display_boundingbox, caption='Displayed image through bounding boxes', use_column_width=True) + + + # Display some text + st.write("Detected text on the image uploaded by the user") + st.write(input_image_result) +else: + st.write("Please upload an image file.") + diff --git a/Doctor_Handwriting/code b/Doctor_Handwriting/code new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Doctor_Handwriting/code @@ -0,0 +1 @@ + diff --git a/Doctor_Handwriting/doc_img_1.jpg b/Doctor_Handwriting/doc_img_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5a94e8efb875c4e21d8fa336c7391d11f3d303f --- /dev/null +++ b/Doctor_Handwriting/doc_img_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a428110a5e3eb680d3fb12153a69896871365366ef66978a76d9f7fc141a0c27 +size 28845 diff --git a/Doctor_Handwriting/img2.jpg b/Doctor_Handwriting/img2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3e0915b13d860192fb2b41f4c3279a424b7a008 --- /dev/null +++ b/Doctor_Handwriting/img2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c935011c307d94c08f2a8249ad3a1c39448de28fd97fa01c4ac4a2ea316afa8a +size 24375 diff --git a/Doctor_Handwriting/requirements.txt b/Doctor_Handwriting/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5761a3e73b94517042ac43d89e430b610d51ae9 --- /dev/null +++ b/Doctor_Handwriting/requirements.txt @@ -0,0 +1,7 @@ +inference-sdk +inference-cli +opencv-python +opencv-python-headless +opencv-contrib-python +roboflow +streamlit \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..1a2e0f49f56f9838f72478fecd9b0bb9983b0d7b --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [2024] [Rust Rover] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/LLMs/LLMs_chatbot.ipynb b/LLMs/LLMs_chatbot.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..ac5219cf3a0206593b5584f69e615d54c81a740e --- /dev/null +++ b/LLMs/LLMs_chatbot.ipynb @@ -0,0 +1,1531 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 15, + "id": "583798df-96c2-4e10-b31b-739f380a2826", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "f050d62d-03c4-4900-898b-a0ed65e8e124", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
itchingskin_rashnodal_skin_eruptionscontinuous_sneezingshiveringchillsjoint_painstomach_painacidityulcers_on_tongue...scurringskin_peelingsilver_like_dustingsmall_dents_in_nailsinflammatory_nailsblisterred_sore_around_noseyellow_crust_oozeprognosisUnnamed: 133
01110000000...00000000Fungal infectionNaN
10110000000...00000000Fungal infectionNaN
21010000000...00000000Fungal infectionNaN
31100000000...00000000Fungal infectionNaN
41110000000...00000000Fungal infectionNaN
..................................................................
49150000000000...00000000(vertigo) Paroymsal Positional VertigoNaN
49160100000000...10000000AcneNaN
49170000000000...00000000Urinary tract infectionNaN
49180100001000...01111000PsoriasisNaN
49190100000000...00000111ImpetigoNaN
\n", + "

4920 rows × 134 columns

\n", + "
" + ], + "text/plain": [ + " itching skin_rash nodal_skin_eruptions continuous_sneezing \\\n", + "0 1 1 1 0 \n", + "1 0 1 1 0 \n", + "2 1 0 1 0 \n", + "3 1 1 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 1 0 0 \n", + "4917 0 0 0 0 \n", + "4918 0 1 0 0 \n", + "4919 0 1 0 0 \n", + "\n", + " shivering chills joint_pain stomach_pain acidity ulcers_on_tongue \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 \n", + "... ... ... ... ... ... ... \n", + "4915 0 0 0 0 0 0 \n", + "4916 0 0 0 0 0 0 \n", + "4917 0 0 0 0 0 0 \n", + "4918 0 0 1 0 0 0 \n", + "4919 0 0 0 0 0 0 \n", + "\n", + " ... scurring skin_peeling silver_like_dusting small_dents_in_nails \\\n", + "0 ... 0 0 0 0 \n", + "1 ... 0 0 0 0 \n", + "2 ... 0 0 0 0 \n", + "3 ... 0 0 0 0 \n", + "4 ... 0 0 0 0 \n", + "... ... ... ... ... ... \n", + "4915 ... 0 0 0 0 \n", + "4916 ... 1 0 0 0 \n", + "4917 ... 0 0 0 0 \n", + "4918 ... 0 1 1 1 \n", + "4919 ... 0 0 0 0 \n", + "\n", + " inflammatory_nails blister red_sore_around_nose yellow_crust_ooze \\\n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 0 0 0 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 0 0 0 \n", + "4917 0 0 0 0 \n", + "4918 1 0 0 0 \n", + "4919 0 1 1 1 \n", + "\n", + " prognosis Unnamed: 133 \n", + "0 Fungal infection NaN \n", + "1 Fungal infection NaN \n", + "2 Fungal infection NaN \n", + "3 Fungal infection NaN \n", + "4 Fungal infection NaN \n", + "... ... ... \n", + "4915 (vertigo) Paroymsal Positional Vertigo NaN \n", + "4916 Acne NaN \n", + "4917 Urinary tract infection NaN \n", + "4918 Psoriasis NaN \n", + "4919 Impetigo NaN \n", + "\n", + "[4920 rows x 134 columns]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_1= pd.read_csv(\"training_data.csv\")\n", + "dataset_1" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "f973616d-c9d3-44ab-900f-e8ac849ca2b9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "itching\n", + "skin_rash\n", + "nodal_skin_eruptions\n", + "continuous_sneezing\n", + "shivering\n", + "chills\n", + "joint_pain\n", + "stomach_pain\n", + "acidity\n", + "ulcers_on_tongue\n", + "muscle_wasting\n", + "vomiting\n", + "burning_micturition\n", + "spotting_ urination\n", + "fatigue\n", + "weight_gain\n", + "anxiety\n", + "cold_hands_and_feets\n", + "mood_swings\n", + "weight_loss\n", + "restlessness\n", + "lethargy\n", + "patches_in_throat\n", + "irregular_sugar_level\n", + "cough\n", + "high_fever\n", + "sunken_eyes\n", + "breathlessness\n", + "sweating\n", + "dehydration\n", + "indigestion\n", + "headache\n", + "yellowish_skin\n", + "dark_urine\n", + "nausea\n", + "loss_of_appetite\n", + "pain_behind_the_eyes\n", + "back_pain\n", + "constipation\n", + "abdominal_pain\n", + "diarrhoea\n", + "mild_fever\n", + "yellow_urine\n", + "yellowing_of_eyes\n", + "acute_liver_failure\n", + "fluid_overload\n", + "swelling_of_stomach\n", + "swelled_lymph_nodes\n", + "malaise\n", + "blurred_and_distorted_vision\n", + "phlegm\n", + "throat_irritation\n", + "redness_of_eyes\n", + "sinus_pressure\n", + "runny_nose\n", + "congestion\n", + "chest_pain\n", + "weakness_in_limbs\n", + "fast_heart_rate\n", + "pain_during_bowel_movements\n", + "pain_in_anal_region\n", + "bloody_stool\n", + "irritation_in_anus\n", + "neck_pain\n", + "dizziness\n", + "cramps\n", + "bruising\n", + "obesity\n", + "swollen_legs\n", + "swollen_blood_vessels\n", + "puffy_face_and_eyes\n", + "enlarged_thyroid\n", + "brittle_nails\n", + "swollen_extremeties\n", + "excessive_hunger\n", + "extra_marital_contacts\n", + "drying_and_tingling_lips\n", + "slurred_speech\n", + "knee_pain\n", + "hip_joint_pain\n", + "muscle_weakness\n", + "stiff_neck\n", + "swelling_joints\n", + "movement_stiffness\n", + "spinning_movements\n", + "loss_of_balance\n", + "unsteadiness\n", + "weakness_of_one_body_side\n", + "loss_of_smell\n", + "bladder_discomfort\n", + "foul_smell_of urine\n", + "continuous_feel_of_urine\n", + "passage_of_gases\n", + "internal_itching\n", + "toxic_look_(typhos)\n", + "depression\n", + "irritability\n", + "muscle_pain\n", + "altered_sensorium\n", + "red_spots_over_body\n", + "belly_pain\n", + "abnormal_menstruation\n", + "dischromic _patches\n", + "watering_from_eyes\n", + "increased_appetite\n", + "polyuria\n", + "family_history\n", + "mucoid_sputum\n", + "rusty_sputum\n", + "lack_of_concentration\n", + "visual_disturbances\n", + "receiving_blood_transfusion\n", + "receiving_unsterile_injections\n", + "coma\n", + "stomach_bleeding\n", + "distention_of_abdomen\n", + "history_of_alcohol_consumption\n", + "fluid_overload.1\n", + "blood_in_sputum\n", + "prominent_veins_on_calf\n", + "palpitations\n", + "painful_walking\n", + "pus_filled_pimples\n", + "blackheads\n", + "scurring\n", + "skin_peeling\n", + "silver_like_dusting\n", + "small_dents_in_nails\n", + "inflammatory_nails\n", + "blister\n", + "red_sore_around_nose\n", + "yellow_crust_ooze\n", + "prognosis\n", + "Unnamed: 133\n" + ] + } + ], + "source": [ + "for i in dataset_1.columns:\n", + " print(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "aefac4ad-7d02-4d6c-a57a-3d747236f6d9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original DataFrame:\n", + " itching skin_rash nodal_skin_eruptions continuous_sneezing \\\n", + "0 1 1 1 0 \n", + "1 0 1 1 0 \n", + "2 1 0 1 0 \n", + "3 1 1 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 1 0 0 \n", + "4917 0 0 0 0 \n", + "4918 0 1 0 0 \n", + "4919 0 1 0 0 \n", + "\n", + " shivering chills joint_pain stomach_pain acidity ulcers_on_tongue \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 \n", + "... ... ... ... ... ... ... \n", + "4915 0 0 0 0 0 0 \n", + "4916 0 0 0 0 0 0 \n", + "4917 0 0 0 0 0 0 \n", + "4918 0 0 1 0 0 0 \n", + "4919 0 0 0 0 0 0 \n", + "\n", + " ... skin_peeling silver_like_dusting small_dents_in_nails \\\n", + "0 ... 0 0 0 \n", + "1 ... 0 0 0 \n", + "2 ... 0 0 0 \n", + "3 ... 0 0 0 \n", + "4 ... 0 0 0 \n", + "... ... ... ... ... \n", + "4915 ... 0 0 0 \n", + "4916 ... 0 0 0 \n", + "4917 ... 0 0 0 \n", + "4918 ... 1 1 1 \n", + "4919 ... 0 0 0 \n", + "\n", + " inflammatory_nails blister red_sore_around_nose yellow_crust_ooze \\\n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 0 0 0 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 0 0 0 \n", + "4917 0 0 0 0 \n", + "4918 1 0 0 0 \n", + "4919 0 1 1 1 \n", + "\n", + " prognosis Unnamed: 133 \\\n", + "0 Fungal infection NaN \n", + "1 Fungal infection NaN \n", + "2 Fungal infection NaN \n", + "3 Fungal infection NaN \n", + "4 Fungal infection NaN \n", + "... ... ... \n", + "4915 (vertigo) Paroymsal Positional Vertigo NaN \n", + "4916 Acne NaN \n", + "4917 Urinary tract infection NaN \n", + "4918 Psoriasis NaN \n", + "4919 Impetigo NaN \n", + "\n", + " symptoms_text \n", + "0 itching,skin_rash,nodal_skin_eruptions,dischro... \n", + "1 skin_rash,nodal_skin_eruptions,dischromic _pat... \n", + "2 itching,nodal_skin_eruptions,dischromic _patches \n", + "3 itching,skin_rash,dischromic _patches \n", + "4 itching,skin_rash,nodal_skin_eruptions \n", + "... ... \n", + "4915 vomiting,headache,nausea,spinning_movements,lo... \n", + "4916 skin_rash,pus_filled_pimples,blackheads,scurring \n", + "4917 burning_micturition,bladder_discomfort,foul_sm... \n", + "4918 skin_rash,joint_pain,skin_peeling,silver_like_... \n", + "4919 skin_rash,high_fever,blister,red_sore_around_n... \n", + "\n", + "[4920 rows x 135 columns]\n" + ] + } + ], + "source": [ + "\n", + "# Create a new column with merged column names where value is 1\n", + "dataset_1['symptoms_text'] = dataset_1.apply(lambda row: ','.join([col for col in dataset_1.columns if row[col] == 1]), axis=1)\n", + "\n", + "print(\"Original DataFrame:\")\n", + "print(dataset_1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "0d1d7c39-0ba5-46fe-801f-af57bdecca4d", + "metadata": {}, + "outputs": [], + "source": [ + "#dataset_1.to_csv(\"training_data_after_changes.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "7a6aaacc-8ada-4b0a-9417-551064c4ccd5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
labeltext
0Fungal infectionitching,skin_rash,nodal_skin_eruptions,dischro...
1Fungal infectionskin_rash,nodal_skin_eruptions,dischromic _pat...
2Fungal infectionitching,nodal_skin_eruptions,dischromic _patches
3Fungal infectionitching,skin_rash,dischromic _patches
4Fungal infectionitching,skin_rash,nodal_skin_eruptions
.........
4915(vertigo) Paroymsal Positional Vertigovomiting,headache,nausea,spinning_movements,lo...
4916Acneskin_rash,pus_filled_pimples,blackheads,scurring
4917Urinary tract infectionburning_micturition,bladder_discomfort,foul_sm...
4918Psoriasisskin_rash,joint_pain,skin_peeling,silver_like_...
4919Impetigoskin_rash,high_fever,blister,red_sore_around_n...
\n", + "

4920 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " label \\\n", + "0 Fungal infection \n", + "1 Fungal infection \n", + "2 Fungal infection \n", + "3 Fungal infection \n", + "4 Fungal infection \n", + "... ... \n", + "4915 (vertigo) Paroymsal Positional Vertigo \n", + "4916 Acne \n", + "4917 Urinary tract infection \n", + "4918 Psoriasis \n", + "4919 Impetigo \n", + "\n", + " text \n", + "0 itching,skin_rash,nodal_skin_eruptions,dischro... \n", + "1 skin_rash,nodal_skin_eruptions,dischromic _pat... \n", + "2 itching,nodal_skin_eruptions,dischromic _patches \n", + "3 itching,skin_rash,dischromic _patches \n", + "4 itching,skin_rash,nodal_skin_eruptions \n", + "... ... \n", + "4915 vomiting,headache,nausea,spinning_movements,lo... \n", + "4916 skin_rash,pus_filled_pimples,blackheads,scurring \n", + "4917 burning_micturition,bladder_discomfort,foul_sm... \n", + "4918 skin_rash,joint_pain,skin_peeling,silver_like_... \n", + "4919 skin_rash,high_fever,blister,red_sore_around_n... \n", + "\n", + "[4920 rows x 2 columns]" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "final_dataset = pd.DataFrame(dataset_1[[\"prognosis\",\"symptoms_text\"]])\n", + "final_dataset.columns = ['label', 'text']\n", + "#final_dataset.to_csv(\"final_dataset.csv\")\n", + "final_dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "38e843fa-0162-49ab-a879-7436330e78c3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
labeltext
0PsoriasisI have been experiencing a skin rash on my arm...
1PsoriasisMy skin has been peeling, especially on my kne...
2PsoriasisI have been experiencing joint pain in my fing...
3PsoriasisThere is a silver like dusting on my skin, esp...
4PsoriasisMy nails have small dents or pits in them, and...
.........
1195diabetesI'm shaking and trembling all over. I've lost ...
1196diabetesParticularly in the crevices of my skin, I hav...
1197diabetesI regularly experience these intense urges and...
1198diabetesI have trouble breathing, especially outside. ...
1199diabetesI constantly sneeze and have a dry cough. My i...
\n", + "

1200 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " label text\n", + "0 Psoriasis I have been experiencing a skin rash on my arm...\n", + "1 Psoriasis My skin has been peeling, especially on my kne...\n", + "2 Psoriasis I have been experiencing joint pain in my fing...\n", + "3 Psoriasis There is a silver like dusting on my skin, esp...\n", + "4 Psoriasis My nails have small dents or pits in them, and...\n", + "... ... ...\n", + "1195 diabetes I'm shaking and trembling all over. I've lost ...\n", + "1196 diabetes Particularly in the crevices of my skin, I hav...\n", + "1197 diabetes I regularly experience these intense urges and...\n", + "1198 diabetes I have trouble breathing, especially outside. ...\n", + "1199 diabetes I constantly sneeze and have a dry cough. My i...\n", + "\n", + "[1200 rows x 2 columns]" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "dataset_2= pd.read_csv(\"Symptom2Disease.csv\")\n", + "dataset_2 = dataset_2[[\"label\",\"text\"]]\n", + "dataset_2" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "d71a0ba4-586c-4ba6-9455-83def77d87c5", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
labeltext
0Fungal infectionitching,skin_rash,nodal_skin_eruptions,dischro...
1Fungal infectionskin_rash,nodal_skin_eruptions,dischromic _pat...
2Fungal infectionitching,nodal_skin_eruptions,dischromic _patches
3Fungal infectionitching,skin_rash,dischromic _patches
4Fungal infectionitching,skin_rash,nodal_skin_eruptions
.........
6115diabetesI'm shaking and trembling all over. I've lost ...
6116diabetesParticularly in the crevices of my skin, I hav...
6117diabetesI regularly experience these intense urges and...
6118diabetesI have trouble breathing, especially outside. ...
6119diabetesI constantly sneeze and have a dry cough. My i...
\n", + "

6120 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " label text\n", + "0 Fungal infection itching,skin_rash,nodal_skin_eruptions,dischro...\n", + "1 Fungal infection skin_rash,nodal_skin_eruptions,dischromic _pat...\n", + "2 Fungal infection itching,nodal_skin_eruptions,dischromic _patches\n", + "3 Fungal infection itching,skin_rash,dischromic _patches\n", + "4 Fungal infection itching,skin_rash,nodal_skin_eruptions\n", + "... ... ...\n", + "6115 diabetes I'm shaking and trembling all over. I've lost ...\n", + "6116 diabetes Particularly in the crevices of my skin, I hav...\n", + "6117 diabetes I regularly experience these intense urges and...\n", + "6118 diabetes I have trouble breathing, especially outside. ...\n", + "6119 diabetes I constantly sneeze and have a dry cough. My i...\n", + "\n", + "[6120 rows x 2 columns]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_combined = pd.concat([final_dataset, dataset_2], axis=0, ignore_index=True)\n", + "df_combined" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "3aeadb4a-91ee-4fd9-a881-c229c3fa174c", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[nltk_data] Downloading package punkt to\n", + "[nltk_data] C:\\Users\\SRIRAM\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package punkt is already up-to-date!\n", + "[nltk_data] Downloading package stopwords to\n", + "[nltk_data] C:\\Users\\SRIRAM\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package stopwords is already up-to-date!\n", + "[nltk_data] Downloading package wordnet to\n", + "[nltk_data] C:\\Users\\SRIRAM\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package wordnet is already up-to-date!\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " label text \\\n", + "0 Fungal infection itching,skin_rash,nodal_skin_eruptions,dischro... \n", + "1 Fungal infection skin_rash,nodal_skin_eruptions,dischromic _pat... \n", + "2 Fungal infection itching,nodal_skin_eruptions,dischromic _patches \n", + "3 Fungal infection itching,skin_rash,dischromic _patches \n", + "4 Fungal infection itching,skin_rash,nodal_skin_eruptions \n", + "... ... ... \n", + "6115 diabetes I'm shaking and trembling all over. I've lost ... \n", + "6116 diabetes Particularly in the crevices of my skin, I hav... \n", + "6117 diabetes I regularly experience these intense urges and... \n", + "6118 diabetes I have trouble breathing, especially outside. ... \n", + "6119 diabetes I constantly sneeze and have a dry cough. My i... \n", + "\n", + " cleaned_text \n", + "0 itching , skin rash , nodal skin eruptions , d... \n", + "1 skin rash , nodal skin eruptions , dischromic ... \n", + "2 itching , nodal skin eruptions , dischromic pa... \n", + "3 itching , skin rash , dischromic patches \n", + "4 itching , skin rash , nodal skin eruptions \n", + "... ... \n", + "6115 shaking trembling lost sense taste smell , exh... \n", + "6116 particularly crevices skin , skin rashes irrit... \n", + "6117 regularly experience intense urges want urinat... \n", + "6118 trouble breathing , especially outside start f... \n", + "6119 constantly sneeze dry cough infections seem he... \n", + "\n", + "[6120 rows x 3 columns]\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import re\n", + "import string\n", + "from nltk.tokenize import word_tokenize\n", + "from nltk.corpus import stopwords\n", + "from nltk.stem import WordNetLemmatizer\n", + "import nltk\n", + "\n", + "# Download necessary NLTK data files\n", + "nltk.download('punkt')\n", + "nltk.download('stopwords')\n", + "nltk.download('wordnet')\n", + "\n", + "def preprocess_text(text):\n", + " # Convert to lowercase\n", + " text = text.lower()\n", + " \n", + " cleaned_text = re.sub(r'[^a-zA-Z0-9\\s\\,]', ' ', text)\n", + " # Tokenize text\n", + " tokens = word_tokenize(cleaned_text)\n", + " \n", + " # Remove stop words\n", + " stop_words = set(stopwords.words('english'))\n", + " tokens = [word for word in tokens if word not in stop_words]\n", + " \n", + " \n", + " # Rejoin tokens into a single string\n", + " cleaned_text = ' '.join(tokens)\n", + " \n", + " return cleaned_text\n", + "\n", + "df_combined[\"cleaned_text\"] = df_combined[\"text\"].apply(preprocess_text)\n", + "\n", + "print(df_combined)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "613b0739-105c-4ab8-b150-e1d7a839db65", + "metadata": {}, + "outputs": [], + "source": [ + "df_combined.to_csv(\"final_dataset_llms.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "7e4af353-0552-4951-ae5e-c04d01cc59aa", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy: 0.99\n", + "Classification Report:\n", + " precision recall f1-score support\n", + "\n", + "(vertigo) Paroymsal Positional Vertigo 1.00 1.00 1.00 22\n", + " AIDS 1.00 1.00 1.00 28\n", + " Acne 1.00 1.00 1.00 33\n", + " Alcoholic hepatitis 1.00 1.00 1.00 19\n", + " Allergy 1.00 1.00 1.00 26\n", + " Arthritis 1.00 1.00 1.00 33\n", + " Bronchial Asthma 1.00 1.00 1.00 37\n", + " Cervical spondylosis 1.00 1.00 1.00 45\n", + " Chicken pox 0.97 1.00 0.99 33\n", + " Chronic cholestasis 1.00 1.00 1.00 28\n", + " Common Cold 1.00 0.96 0.98 28\n", + " Dengue 1.00 0.97 0.99 37\n", + " Diabetes 1.00 1.00 1.00 19\n", + " Dimorphic Hemorrhoids 1.00 1.00 1.00 8\n", + " Dimorphic hemmorhoids(piles) 1.00 1.00 1.00 24\n", + " Drug Reaction 1.00 1.00 1.00 17\n", + " Fungal infection 1.00 1.00 1.00 37\n", + " GERD 1.00 1.00 1.00 28\n", + " Gastroenteritis 1.00 1.00 1.00 21\n", + " Heart attack 1.00 1.00 1.00 26\n", + " Hepatitis B 1.00 1.00 1.00 25\n", + " Hepatitis C 1.00 1.00 1.00 21\n", + " Hepatitis D 1.00 1.00 1.00 22\n", + " Hepatitis E 1.00 1.00 1.00 18\n", + " Hypertension 1.00 1.00 1.00 8\n", + " Hypertension 1.00 1.00 1.00 21\n", + " Hyperthyroidism 1.00 1.00 1.00 25\n", + " Hypoglycemia 1.00 1.00 1.00 29\n", + " Hypothyroidism 1.00 1.00 1.00 18\n", + " Impetigo 0.97 1.00 0.99 39\n", + " Jaundice 1.00 1.00 1.00 33\n", + " Malaria 1.00 1.00 1.00 27\n", + " Migraine 1.00 1.00 1.00 32\n", + " Osteoarthristis 1.00 1.00 1.00 20\n", + " Paralysis (brain hemorrhage) 1.00 1.00 1.00 22\n", + " Peptic ulcer diseae 1.00 1.00 1.00 24\n", + " Pneumonia 1.00 1.00 1.00 36\n", + " Psoriasis 1.00 0.95 0.97 38\n", + " Tuberculosis 1.00 1.00 1.00 32\n", + " Typhoid 1.00 1.00 1.00 33\n", + " Urinary tract infection 1.00 1.00 1.00 24\n", + " Varicose Veins 1.00 1.00 1.00 10\n", + " Varicose veins 1.00 1.00 1.00 29\n", + " allergy 0.82 0.90 0.86 10\n", + " diabetes 0.90 1.00 0.95 9\n", + " drug reaction 1.00 0.88 0.93 16\n", + " gastroesophageal reflux disease 0.90 1.00 0.95 9\n", + " hepatitis A 1.00 1.00 1.00 28\n", + " peptic ulcer disease 0.80 1.00 0.89 4\n", + " urinary tract infection 1.00 1.00 1.00 13\n", + "\n", + " accuracy 0.99 1224\n", + " macro avg 0.99 0.99 0.99 1224\n", + " weighted avg 0.99 0.99 0.99 1224\n", + "\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn.metrics import accuracy_score, classification_report\n", + "\n", + "# Load your dataset\n", + "data = pd.read_csv('final_dataset_llms.csv') # Replace with your file path\n", + "\n", + "# Example columns: 'symptoms' and 'label'\n", + "X = data['cleaned_text']\n", + "y = data['label']\n", + "\n", + "# Convert text data to numerical data\n", + "vectorizer = CountVectorizer()\n", + "X_vectorized = vectorizer.fit_transform(X)\n", + "\n", + "# Split the data into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X_vectorized, y, test_size=0.2, random_state=42)\n", + "\n", + "# Train the model\n", + "model = LogisticRegression()\n", + "model.fit(X_train, y_train)\n", + "\n", + "# Make predictions\n", + "y_pred = model.predict(X_test)\n", + "\n", + "# Evaluate the model\n", + "accuracy = accuracy_score(y_test, y_pred)\n", + "print(f'Accuracy: {accuracy:.2f}')\n", + "print('Classification Report:')\n", + "print(classification_report(y_test, y_pred))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "12f0776f-2cdf-48eb-862b-baad4c05a411", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter symptoms to classify: sneezing and running nose\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Input Symptoms: sneezing and running nose -> Predicted Label: allergy\n", + "['sneezing running nose']\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "# Function to predict new symptoms\n", + "def predict_symptoms(new_symptoms):\n", + " # Ensure new_symptoms is a list\n", + "\n", + " preprocessed_text = preprocess_text(new_symptoms)\n", + "\n", + " if isinstance(preprocessed_text, str):\n", + " new_symptoms = [preprocessed_text]\n", + " \n", + " # Vectorize the new symptoms\n", + " new_symptoms_vectorized = vectorizer.transform(new_symptoms)\n", + " \n", + " # Make predictions\n", + " predictions = model.predict(new_symptoms_vectorized)\n", + " #probabilities = model.predict_proba(new_symptoms_vectorized)\n", + " \n", + " return predictions,new_symptoms\n", + "\n", + "# Get user input\n", + "user_input = input(\"Enter symptoms to classify: \")\n", + "\n", + "# Make a prediction\n", + "predictions,new_symptoms = predict_symptoms(user_input)\n", + "\n", + "print(f\"Input Symptoms: {user_input} -> Predicted Label: {predictions[0]}\")\n", + "print(new_symptoms)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "521087d7-0bd1-4985-956c-ee28c55551ce", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter symptoms to classify: dischromic patches', 'itching , nodal skin eruptions , dischromic patches\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Input Symptoms: dischromic patches', 'itching , nodal skin eruptions , dischromic patches -> Predicted Label: Fungal infection\n", + "1 Fungal infection\n", + "16 Allergy\n", + "Name: label, dtype: object\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "# Function to predict new symptoms\n", + "def predict_symptoms(new_symptoms):\n", + " # Ensure new_symptoms is a list\n", + "\n", + " preprocessed_text = preprocess_text(new_symptoms)\n", + "\n", + " if isinstance(preprocessed_text, str):\n", + " new_symptoms = [preprocessed_text]\n", + " \n", + " # Vectorize the new symptoms\n", + " new_symptoms_vectorized = vectorizer.transform(new_symptoms)\n", + " \n", + " # Make predictions\n", + " predictions = model.predict(new_symptoms_vectorized)\n", + " probabilities = model.predict_proba(new_symptoms_vectorized)\n", + " # Get the indices of the top 2 probabilities\n", + " top_indices = np.argsort(probabilities[0])[-2:] # Get indices of top 2 probabilities\n", + " top_probabilities = probabilities[0][top_indices]\n", + " top_labels = data.label[top_indices]\n", + " # Print the top 2 predictions\n", + " #print(\"Top 2 predictions:\")\n", + " #for i in range(len(top_probabilities)):\n", + " #print(f\"Label: {top_labels[i]}, Probability: {top_probabilities[i]:.4f}\") \n", + " \n", + " return predictions,top_labels\n", + "\n", + "\n", + "\n", + "\n", + "# Get user input\n", + "user_input = input(\"Enter symptoms to classify: \")\n", + "\n", + "# Make a prediction\n", + "predictions,top_labels = predict_symptoms(user_input)\n", + "\n", + "print(f\"Input Symptoms: {user_input} -> Predicted Label: {predictions[0]}\")\n", + "print(top_labels)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "0133d24c-9a70-45f3-abe1-8566f1d989e3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'experiencing skin rash arms , legs , torso past weeks red , itchy , covered dry , scaly patches', 'skin peeling , especially knees , elbows , scalp peeling often accompanied burning stinging sensation', 'experiencing joint pain fingers , wrists , knees pain often achy throbbing , gets worse move joints', 'silver like dusting skin , especially lower back scalp dusting made small scales flake easily scratch', 'nails small dents pits , often feel inflammatory tender touch even minor rashes arms', 'skin palms soles thickened deep cracks cracks painful bleed easily', 'skin around mouth , nose , eyes red inflamed often itchy uncomfortable noticeable inflammation nails', 'skin sensitive reacts easily changes temperature humidity often careful products use skin', 'noticed sudden peeling skin different parts body , mainly arms , legs back also , face severe joint pain skin rashes', 'skin genitals red inflamed often itchy , burning , uncomfortable rashes different parts body', 'experienced fatigue general feeling malaise often feel tired lack energy , even good night sleep', 'rash skin spread parts body , including chest abdomen itchy uncomfortable , often worse night also facing skin peeling', 'rash skin worse winter months air dry find moisturize frequently use humidifiers keep skin hydrated', 'experienced difficulty sleeping due itching discomfort caused rash small dents nails , really concerning', 'skin prone infections due dry , flaky patches experiencing strong pain joints skin knees elbows starting peel', 'starting rashes skin rash often bleeds scratch rub moreover , noticed small dents nails', 'noticed skin become sensitive used silver like dusting skin , especially back elbows', 'worried constant peeling skin palm , elbow knee developed rashes arms , itch touch making life quite discomforting miserable', 'strange pain joints also , noticed strange peeling skin different parts body afraid something wrong going body', 'nails small dents even joints started pain severely silver like dusting skin , particularly back', 'rashes skin healing moreover , noticed sudden peeling skin , especially skin elbows knees really worried', 'past weeks , skin rash arms , legs , chest red irritating , dry , scaly spots strange pain joints', 'skin peeling , particularly knees , elbows , scalp peeling frequently accompanied stinging burning feeling', 'joint discomfort fingers , wrists , knees pain frequently aching throbbing , worsens move joints', 'skin silvery film , particularly back , arms scalp dusting composed tiny scales easily peel scratched', 'red inflammatory skin around mouth , nose , eyes frequently irritating unpleasant recently , got painful', 'skin extremely sensitive quickly irritated changes temperature humidity nails developed dents worried sudden change', 'seen sudden peeling skin various regions body , mostly arms , legs , back addition , significant joint pain skin rashes rash spreading different parts body', 'genital skin red irritated frequently irritating , burning , unpleasant also rashes various places body also , strange pain joints', 'trouble sleeping itching pain produced rash nails little dents , really alarming noticeable inflammation nails', 'dry , flaky areas skin , prone infections joints excruciating agony skin knees elbows beginning flake', 'skin breaking rashes scratch rub rash , frequently bleeds addition , observed little dents nails noticeable inflammation nails', 'observed skin sensitive used skin silvery film , especially back elbows', 'palms soles grown developed severe fissures cracks unpleasant frequently bleed also , skin starting peel', 'nails starting small pits worried know causing also , joints pain rashes arms back', 'silver like dusting skin moreover , skin arms back starting peel strange really concerning', 'skin rash extended areas body , including chest belly irritating unpleasant , frequently worst night also experiencing skin flaking', 'skin rash gets worse winter air dry keep skin moisturized , moisturize regularly use humidifiers also facing joint pain', 'trouble sleeping itching pain produced rash nails little dents also experiencing skin peeling different parts body', 'skin peeling places , especially knees , elbows , arms peeling often accompanied painful burning sensation also developing small dents nails , really concerning', 'skin silvery layer , especially back arms dusting made small scales peel readily rubbed also , rashes body', 'arms , face back red irritated frequently irritating unpleasant nails strange inflammation developed small dents never seen anything like', 'trouble sleeping itching pain produced rash nails little dents , really alarming moreover , joints pain everyday idea causing', 'fingers soles pretty thick skin cracked severely fractures hurt bleed frequently fractures itchy covered scales', 'skin changed less sensitive sensitive skin silvery coating , especially back , elbows knees', 'nails slightly dented even joints experiencing excruciating discomfort skin silver like powder , especially back elbows', 'trouble falling asleep rash pain itching skin fingers starting peel nails tiny cracks , really worrying', 'joints experiencing unusual discomfort additionally , experienced weird skin peeling various places body concerned something wrong body', 'starting rashes arms neck rash often bleeds hurts scratch also developed small dents nails , strange', 'dry , flaky areas skin , prone infections joints extreme pain knees elbows skin starting peel', 'rash legs causing lot discomforts seems cramp see prominent veins calf also , feeling tired fatigued past couple days', 'calves cramping walk stand long periods time bruise marks calves , making worried feel tired soon', 'bruising legs explain see strange blood vessels skin also , slightly obese really worried', 'overweight noticed legs swollen blood vessels visible legs swollen see stream swollen veins calves', 'veins calves become prominent causing discomfort stand long periods time , causes pain legs , similar cramps', 'skin around veins legs red inflamed believe see swollen blood vessels really worried', 'standing walking long periods time causes lot pain legs get cramps upon physical activities bruise marks legs', 'cramps calves making difficult walk feel fatigued working time believe obesity reason behind', 'swelling legs gotten worse past weeks , large number veins noticeable calves , making worried', 'veins legs noticeable cause discomfort seems like major bruise get cramps run', 'skin calves become inflamed red legs hurt try run physical activities', 'recently , pain calves constant becomes worse stand walk long periods time legs started swell also blood vessels quite noticeable', 'veins legs causing discomfort difficulty sleeping night idea happening get cramps sprint', 'swelling legs causing difficulty fitting shoes sprint stand long periods time see swollen blood vessels', 'noticed cramps calves becoming frequent intense causing lot discomforts also overweight legs started swell', 'veins legs cause lot discomforts sit long periods time', 'rash legs spreading becoming severe become difficult run', 'legs causing lot discomforts exercise get frequent cramps blood vessels become quite noticeable', 'prominent blood vessels calves causing self consciousness embarrassment believe problem overweight', 'skin around veins legs dry flaky seems major bruise legs started swell', 'experiencing rash legs causing lot irritation discomfort red inflamed appears spreading', 'recently , calves cramping frequently , especially walking standing long periods time also , veins noticeable', 'noticed bruises legs explain painful concerning', 'overweight , noticed legs swollen blood vessels visible usual swelling seems getting worse time', 'veins calves prominent causing lot discomforts swollen protrude skin', 'skin around veins legs red , inflamed , itchy causing lot discomforts starting get regular cramps', 'standing walking long periods time causing lot pain legs feels like cramp becomes worse longer feet', 'cramps calves making difficult walk daily activities come suddenly last several minutes', 'swelling legs gotten worse past weeks causing difficulty fitting shoes also causing discomfort sit long periods time', 'veins legs noticeable causing lot discomforts swollen protrude skin , making visible clothing', 'skin calves itchy inflamed , causing lot discomfort difficulty sleeping night blood vessels started protrude , concerning', 'pain calves constant becomes worse stand walk long periods time getting constant cramps run longer periods time', 'veins legs causing discomfort difficulty sleeping night swollen protruding skin , making noticeable painful', 'swelling legs causing difficulty fitting shoes causing discomfort sit long periods time', 'cramps calves becoming frequent intense , making difficult walk daily activities', 'veins legs causing lot discomforts sit long periods time swollen protruding skin , making painful noticeable', 'rash legs spreading becoming severe red , inflamed , itchy , causing lot discomfort difficulty sleeping night', 'legs causing lot discomforts exercise feel heavy swollen , veins prominent painful feel fatigued time', 'prominent veins calves causing self consciousness embarrassment swollen protrude skin , making noticeable', 'skin around veins legs dry flaky , causing discomfort irritation also starting get frequent cramps', 'rash legs giving lot pain appears cramp , see visible veins calf', 'veins legs become visible swollen normal visible skin hurts move', 'walking tough cramps calves obesity , believe , cause working , exhausted', 'blood vessels legs quite visible give lot pain large protrude skin unusual worried', 'noticed blood vessels legs getting noticeable usual little concerning moreover , experiencing cramps every day', 'legs swelling become worse last couple days see blood vessels protruding skin quite unusual', 'long durations standing walking caused severe discomfort legs burning ache gets worse longer feet', 'legs skin around veins unusual appears large bruise nowadays , get frequent cramps sprint run', 'experiencing many cramps last couple days think something right believe small bruise calves , sure', 'veins calves protruding quite unusually worried also , overweight believe reason behind', 'constipation belly pain , really uncomfortable belly pain getting worse starting affect daily life moreover , get chills every night , followed mild fever', 'also diarrhea , really unpleasant coming going , accompanied abdominal cramps bloating', 'experiencing chills fever , along severe abdominal pain feeling really miserable overall , seem shake symptoms', 'lot trouble keeping hydrated vomiting diarrhea mild fever along constipation headache', 'lost lot weight past week able eat much due nausea vomiting followed mild fever , headache belly pain really concerned health', 'fatigue really uncomfortable , lot difficulties usual activities also feeling really depressed irritable mild pain abdominal part', 'persistent headache past week , getting worse accompanied belly aches , constipation diarrhea', 'experiencing high fever , especially night really uncomfortable mild headache along constipation diarrhea', 'lot difficulty breathing , feel like constantly nauseous also mild belly pain terrifying times', 'diarrhea really watery foul smelling , accompanied abdominal pain feel like vomiting time', 'lot trouble sleeping high fever , headache chills wake every day terrible pain belly area', 'also experiencing diarrhea constipation , really worrying feels like sharp , stabbing pain belly area feel tired time', 'constipation belly pain , really uncomfortable pain getting worse really affecting daily life', 'experiencing lot belly pain constipation , really annoying sometimes , feel strong urge vomit , , feeling weak', 'abdominal pain coming going , really unpleasant accompanied constipation vomiting feel really concerned health', 'experiencing lot bloating constipation , really uncomfortable feels like lot pressure pain belly area', 'experiencing extreme belly pain constipation every night , severe fever along chills headaches last couple days really uncomfortable', 'feeling exhausted weak , seem get rid vomiting nausea , entirely lost appetite belly pains causing concern', 'experiencing constipation stomach ache , really difficult discomfort gotten worse , seriously interfering everyday life', 'vomiting diarrhea , lot difficulties staying hydrated high fever , well constipation headache', 'abdominal pain frequent really painful constipation vomiting also occurred quite worried health', 'severe stomach pain constipation every night , get headache chills last days really painful', 'distinct pain abdominal part sure also going constant vomiting feel nauseous', 'diarrhea quite fluid smelly , accompanied severe abdominal pain headache time , feel like vomiting', 'fever last couple days , starting experience severe pain stomach area suffering constipation', 'experiencing lot nausea vomiting , quite difficult eat anything entirely lost appetite , result , become quite weak', 'lot trouble sleeping high fever headache moreover , constant belly pain , go work', 'feeling really fatigued weak , seem get rid mild fever strange pain abdominal area understand happening', 'suffering constipation stomach discomfort , really uncomfortable last night , mild fever', 'also suffering diarrhea , really uncomfortable comes goes , accompanied stomach aches vomiting', 'experiencing chills , fever , extreme stomach discomfort generally unhappy , seem get rid symptoms', 'vomiting diarrhea , lot difficulties staying hydrated mild fever , , well stomach pain', 'developed diarrhea accompanied severe pain belly area feel like eating anything , time , mild headache', 'lot bloating constipation , really painful lot pressure pain stomach area get high fever chills every night', 'persistent stomach pain past week , healing even medication feel like vomiting eat anything , become extremely weak', 'severe stomach discomfort diarrhoea high fever along headache previous several days really unpleasant', 'terrible pain abdominal part , feeling really nauseated also experiencing mild fever really worried', 'experiencing constipation stomach ache discomfort gotten worse , seriously interfering everyday life feel like lost appetite eat anything', 'time feel fatigued want eat anything get high fever chills every night moreover , vomiting since yesterday', 'lost appetite noticed significant weight loss abdominal pain , especially area stomach intestines concerned health', 'stomach discomfort severe frequent vomiting constipation also happened concerned health', 'experiencing diarrhea loose , watery stools several times day lost appetite feel nauseated time starting get mild fever', 'feeling quite weak lot stomach discomfort constipation , really bothering strong urge vomit times , result , eat anything', 'strange pain stomach area know reason behind moreover , starting get mild fever along chills headaches', 'high fever , particularly night quite unpleasant little headache , well constipation diarrhea feel like eating anything', 'lot trouble staying hydrated vomiting diarrhea high fever , constipation , headache also starting get strange pain stomach area anything physical', 'getting headache past week growing worse accompanied stomach pains , constipation , diarrhea know happening really worried', 'lost lot weight last week eat much due nausea vomiting followed high fever , headache , stomach pain', 'diarrhea constipation , quite concerning stomach , severe , painful ache constantly exhausted feel like eating anything', 'diarrhoea loose , watery stools many times day lost appetite always sick also developing mild fever also , abdominal part pains lot know reason behind', 'experiencing intense itching skin , driving crazy also rash red inflamed', 'feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate', 'high fever past days know causing also , noticed rashes skin hard resist scratching', 'lost appetite seem eat anything worried health', 'small red spots body explain worrying feel extremely tired experience mild fever every night', 'lymph nodes swollen , causing discomfort neck armpits know causing', 'feeling really sick uncomfortable like something wrong inside know could noticed small red spots arms , itches touch', 'itching making hard sleep night get rest also lost appetite feel lethargic', 'worried rash skin spreading rapidly causing lot discomforts hardly sleep night itching ,', 'energy lost appetite feeling really sick know wrong', 'skin rash red inflamed , spreading body experiencing intense itching , especially arms legs', 'high fever past days , starting worry know causing also , red spots arms legs , swollen', 'skin rash red swollen , spreading body mild fever causing lot discomforts', 'feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate', 'small red spots body explain bumps itchy uncomfortable seem spread rapidly worrying', 'itching making hard sleep night seem get rest rash itchy uncomfortable feeling really tired exhausted', 'energy lost appetite high fever severe headache know wrong', 'high fever swollen lymph nodes causing much discomfort headache feel weak fatigued hard concentrate fever', 'rash skin causing lot discomforts red inflamed , spreading body rash accompanied intense itching , especially arms legs', 'red spots body explain spots itchy starting swell , spreading rapidly', 'small lymph nodes arms face itching making day uncomfortable', 'energy lost appetite feeling really sick know wrong also , small red spots starting show skin', 'mild fever past days , starting worry fever accompanied severe headache feel weak lethargic', 'swollen lymph nodes red spots body , causing discomfort also mild fever feel tired time', 'suffering severe itching body , driving insane also red irritating rash', 'seen rashes skin , difficult scratch also , high fever several days sure causing', 'little red spots body understand worries lost appetite every night , exhausted severe headache', 'feeling really sick lost appetite seen little red patches arms , neck face itch touch', 'red spots arms legs itching makes difficult sleep night also severe headaches mild fever', 'enlarged lymph nodes giving great deal pain rashes body sleep night', 'skin rash giving lot pain discomfort red swollen , spreading throughout body', 'high fever mild headache tired time completely lost appetite', 'arms face small lymph nodes , starting swell day made really miserable constant itching pain', 'arms neck large lymph nodes , itch touch itching made day extremely uncomfortable', 'skin rash causing great deal pain also small red spots developing near neck since yesterday , severe fever , headache fatigue', 'starting develop tiny red spots face neck area , itches touch itching making day uncomfortable', 'lost appetite completely seem eat anything feel like vomiting feel exhausted noticed rashes skin , really concerning', 'high fever severe headache seem eat anything feel like vomiting also red spots developing arms really worried', 'worried red spots skin spreading rapidly causing lot problems also developed mild fever headache every night', 'feeling really nauseous uneasy sure might seen rashes arms legs lost appetite feel exhausted every day', 'swollen red lymph nodes arms legs itch touch also suffering terrible headache mild fever feel like eating anything lost appetite', 'really exhausted lacking energy hardly keep eyes open day mild fever feel like eating anything think lost appetite', 'exhausted lost appetite feel vomiting eat anything addition , little red spots beginning appear skin near neck really worried health', 'small red spots body spots itchy uncomfortable also mild fever headache', 'suffering severe itching body , along fever headache red spots starting swell getting really uncomfortable every day', 'feel tired every day red spots arms back itches touch really worried sure', 'high fever , swollen lymph nodes headache causing lot trouble feel like eating anything feel weak fatigued hard concentrate daily life', 'high fever red spots rashes body feel exhausted completely lost appetite , made weak lethargic really worried', 'seen rashes arms neck itches scratch also high fever days idea causing itching causing lot discomforts', 'red swollen spots body itches touch moreover , also high fever headache always feel exhausted', 'developed skin rash face neck rash made red sores blistering worried health', 'developed skin rashes made blistering sores blistering sores raised , fluid filled lesions painful touch also suffering high fever', 'high fever red sores developing near nose sores painful yellow rust colored ooze coming', 'rashes around nose , large red sores noticed rash spreading parts body also , high fever every night', 'suffering high fever last couple days sores developing near nose sores painful feeling uncomfortable days', 'skin developed rashes , mainly near nose rash spreading parts body really worried', 'experiencing extreme fatigue high fever rashes near nose mouth rash itchy makes difficult sleep', 'suffering extreme fever weakness developed sores face sores itchy uncomfortable often , yellow colored ooze comes sores', 'noticed sores taking longer heal prone infection sores face swollen tender touch uncomfortable handle', 'red sores face near nose noticed rash spreading quickly neck chest', 'sores around nose become crusted difficult touch yellow rust coloured ooze used come sores taking much time handle', 'developed minor rash near nose days ago , rash accompanied burning sensation redness skin feel kind infection', 'initially , developed small red sores near nose neck , high fever sores become painful inflamed past days', 'noticed skin rash face made blistering sore today observed yellow colored fluid coming sores , sure', 'sores face beginning weep clear fluid also , every night get high fever chills , sleep night', 'initially rashes face near nose rash spreading arms legs', 'high fever every night developed sores face , particularly near nose noticed sores taking longer heal prone infection', 'sores around nose surrounded red , inflamed skin rash caused skin become dry flaky , visible yellow colored fluid coming sores', 'also experiencing flu like symptoms , fever body pain noticed red rashes blistering sores near nose lips itchy uncomfortable', 'suffering mild fever headache small sores near nose rashes neck going tough time right', 'rash particularly bad around nose , large red sores painful yellow rust colored ooze coming', 'sores face mostly near nose lips sores causing discomfort pain , discharge yellow rust colored fluid', 'developing sores face nose area sure causing sores face swollen tender touch , burning sensation redness skin', 'rash face become painful inflamed past days , sores beginning weep clear fluid getting extremely painful day', 'rashes face starting small sores around nose often yellow fluid comes sores sores becoming extremely painful', 'feeling really sick high fever headache noticed rashes arms face extremely worried today , observed red sores near nose', 'suffering high fever past days sores forming around nose rashes different parts body sores severe , feeling really uneasy days', 'high fever really weak face gotten sores blisters itchy painful yellow ooze frequently leaks wounds', 'experiencing skin rashes burning sores blistering sores fluid filled , elevated , red colored lesions unpleasant touch also high fever', 'believe skin disease rashes face small sores near nose sores become red , painful kind yellow ooze discharges', 'noticed sores face healing slowly likely become infected cheek sores large , painful touch , extremely difficult handle seem get rid sores', 'high fever skin rash face , neck arms rash made burning red lesions concerned health', 'acquired skin rashes blistering sores blistering sores fluid filled , elevated lesions unpleasant touch also running high fever', 'running high temperature near nose , red sores forming lesions painful , yellow rust colored fluid oozing', 'rashes around nose , well huge red sores rash spreading places body , seen addition , high temperature every night', 'cheeks nose covered red sores observed rash neck chest spreading faster also developing mild fever', 'nasal sores crusted become difficult touch wounds used leak yellow rust coloured fluid taking lot longer deal using medication', 'days ago , experienced tiny rash around nose rash accompanied burning feeling skin redness discharge fluid believe sort infection', 'small red sores appeared near nose neck first high temperature , sores gotten painful inflamed recent days', 'rash developed around nose lips , huge red lesions painful emit yellow rust colored fluid', 'face covered sores near nose lips lesions causing discomfort suffering , yellow rust colored fluid oozing', 'started getting sores face nose idea causing cheek sores large irritating touch , burning feeling skin redness', 'last two days , rash face gotten severe inflamed , blisters begun bleed clear pus really painful deal', 'feel skin condition face rashes little blisters around nose wounds turned red painful , yellow liquid oozing', 'observed lesions face healing slower prone infection lesions cheeks huge , unpleasant touch , incredibly difficult treat seem get sores go away', 'running high temperature developed rash face , neck , arms rash consists painful red lesions health concern', 'last week , rash face gotten severe painful , sores begun discharge yellow colored fluid becoming increasingly painful day', 'rashes face developing little sores around nose , yellow ooze frequently oozing lesions become even painful', 'feeling quite ill high fever headache rashes appeared arms face quite concerned saw red sores around nose lips today', 'rashes face healing tried medications helping much recently , noticed small sores near nose painful difficult handle', 'facing severe joint pain vomitting developed skin rash covers entire body accompanied intense itching', 'experiencing chills shivering , despite warm environment back pains time red spots arms', 'experiencing severe joint pain makes difficult move perform daily activities also , lost apetite feel weak', 'vomiting frequently lost appetite result joints back pain time', 'high fever accompanied severe headache body pain experince chills every night distinct pain behind eyes', 'feeling extremely tired fatigued , energy anything developed rashes neck , itch upon touching', 'experiencing severe headache accompanied pain behind eyes lost apetite experience chills every night', 'feeling nauseous constant urge vomit strong pain behind eyes small red spots arms', 'developed red spots body itchy inflamed also experiencing high fever along chills shivering', 'experiencing muscle pain makes difficult move around lost apetite feel vomiting legs back pain lot', 'experiencing back pain worse sit stand long time also , rashes body pain behind eyes', 'skin rash developed accompanied redness swelling feel well severe fever accompanied body pain', 'chills shivering experiencing accompanied feeling coldness high fever also developed rashes arms red spots neck', 'joint pain experiencing severe feels like constant ache head aches time starting develope mild fever , accompanied chills', 'vomiting experiencing accompanied stomach cramps dizziness lost apetite feel weak result pain behind eyes', 'high fever experiencing accompanied sweating weakness muscles pain result work day', 'fatigue feeling extreme makes difficult perform even basic tasks feel vomitting developed rashes arms , neck legs', 'headache experiencing severe accompanied feeling pressure head mild fever along headache small red spots back', 'nausea feeling accompanied loss appetite feeling unease distinct pain back muscles pain', 'muscle pain experiencing severe feels like constant ache red spots body itching causing lot discomfort', 'developed skin rash covers entire body accompanied intense itching body pains mild fever , acompanied headache chills', 'experiencing extreme body pain , headache vomiting developed red spots covers entire body causes severe itching', 'back hurts time , arms neck rashes back eyes pain lot also fever making worried health', 'suffering significant joint pain , makes difficult walk carry everyday tasks also lost appetite , makes feel weak feel like vomitting', 'constant behind eyes developed red spots neck face rashes arms arms legs pain lot spots itchy uncomfortable worrying', 'feeling sick feel strong need vomit sharp ache behind eyes , swollen red dots back', 'shivers shivering accompanied sensation coldness high fever rashes arms red patches neck also appeared', 'suffering severe joint ache feel vomiting time , developing moderate fever chills fever seem come even medication', 'vomiting followed stomach pains dizziness lost appetite result feel weak arms , back , neck pain time', 'developed red spots arms legs itchy inflamed feeling nauseaus constant urge vomit accomapanied mild fever', 'developed skin rash covers entire body rash red swollen , worse certain areas arms legs also lost appetite', 'experiencing chills shivering strong pain back also behind eyes also noticed small red spots back neck', 'experiencing severe joint pain making day difficult feel like vomiting time mild headache', 'vomiting frequently lost appetite result rashes skin eyes pain , sleep properly', 'high fever along severe headache fever accompanied extreme body pain chills worried health know', 'feeling extremely tired fatigued , energy anything fatigue severe struggle get bed noticed small red spots arms legs', 'experiencing severe headache accompanied pain behind eyes feel tired fatigued work day worried health', 'feeling nauseous constant urge vomit , accompanied mild fever headache', 'developed rashes body itchy lost appetite feel tired day feel something wrong body', 'experiencing muscle pain headache muscle pain feels like constant ache worse try use affected muscles small red spots developing face , neck arms', 'back hurts , rashes arms armpits back eyeballs hurt lot also mild fever , making us concerned health', 'experiencing high fever chills every night really concerning moreover , feel like eating anything back , arms , legs pain lot strange pain behing eyes physical activities', 'result regular vomiting , lost appetite muscles , joints back constantly hurt starting fever really worried sure', 'experiencing severe fever accompanied pain behind eyes headache feel tired exhasuted work', 'whole body paining lot feel like eating anything mild fever get chills every night also , red spots developing back neck', 'joints back pain everyday feel like vomitting made weak body pain , able focus work feel like anything', 'body pain feeling extreme lost appetite developed rashes arms face back eyes pain lot', 'developed rashes body also experiencing high fever along chills headache joints back hurt strange pain back eyes', 'feeling nauseous constant urge vomit get high fever chills every night feel terrible also , feel lost appetite', 'rashes skin , itch touch feel good joints pain whole day night , mild fever get chills , sleep', 'raised lumps , rash looks red inflamed , discoloured areas skin different colours rest skin , itching skin', 'body , severe itching followed red , bumpy rash skin also darkened spots tiny , nodular breakouts happening several days becoming worse', 'rash skin looks like dischromic patches , also lot nodular eruptions really bad itching previous week , become worse', 'rash go away bothersome itching skin addition , seen color different areas bumps resemble knots lumps skin', 'rash body , stop scratching skin itchy skin also spots hue altered lumps knot like pimples', 'recently , skin quite itchy , rash body skin also spots hue altered lumps knot like pimples', 'skin itching lot developing rash additionally , areas skin different hue rest additionally , firm pimples breakouts skin', 'body itching like crazy , red areas additionally , patches different tone natural skin skin , lumps pimples developed', 'skin acting recently , becoming extremely itchy rashes prone additionally , certain spots deviate natural skin tone terms hue skin lumps bumps', 'arms legs , lot red pimples itchy skin skin also odd looking lesions occasionally bumps somewhat uncomfortable', 'itchy skin lots red bumps arms legs weird looking spots skin sometimes bumps feel kind hard', 'doctor , really itchy rash skin weird spots different color also bumps skin look like little knots', 'doctor , skin covered uncomfortable rash , along odd patches different hue skin also pimples resemble little knots', 'lots itchy spots skin , sometimes turn red bumpy also weird patches different colors rest skin , sometimes get weird bumps look like little balls', 'skin frequently develops itchy bumps occasionally turn red rough aside , skin occasionally develops strange pimples resemble small balls odd spots different hue rest skin', 'doctor , red rashes keep popping skin continuously itching addition , observed odd color different spots skin , well little nodules skin appear expanding', 'experiencing really intense itching body , along redness bumps skin also weird patches different colors rest skin , sometimes get nodules look like small bumps', 'body , scratching much skin become red developed pimples additionally , occasionally get nodules resemble little pimples , well strange patches different hue rest skin', 'experiencing lot itching , accompanied rash appears growing worse time also certain areas skin different colours rest , spotted several lumps resemble little nodes', 'lot problems itching , accompanied rash seems getting worse time also patches skin different colors rest , noticed bumps look like little nodes', 'doctor , skin covered uncomfortable rash odd patches skin different colour pimples skin resemble little knots', 'itching lot , accompanied rash looks getting worse time also patches skin different colours rest skin , well lumps resemble little nodes', 'skin acting lately , becoming exceedingly itchy prone rashes furthermore , several patches differ normal skin tone terms colour lumps bumps skin', 'rash appears developing throughout skin accompanying recent bouts intense itching discomfort skin , also dischromic spots little lumps seem appearing everywhere', 'skin always itches , occasionally becomes quite rough red addition , occasionally get little pimples resemble tiny balls certain spots different colour rest skin severely irritates itches', 'lot itching skin , sometimes gets really red bumpy also patches different colors rest skin , sometimes get little bumps look like little balls really annoying itchy', 'pretty irritating itch body , skin also red , bumpy areas also pimples resemble small balls spots different colour rest skin', 'pretty uncomfortable itch body , well red bumpy areas skin also certain patches skin different hue rest , pimples resemble little balls', 'really annoying itch body , red bumpy spots skin also areas different color rest skin , bumps look like little balls', 'pretty uncomfortable itch body , well red bumpy areas skin also certain patches epidermis distinct shade rest , pimples resemble little balls', 'really itchy lately rashy spots skin also areas look different shade rest skin , bumps kind hard', 'quite itchy recently , rashy patches skin also certain regions darker colour rest skin , got firm lumps', 'rather itchy recently , rashy blotches skin also certain regions dark color rest skin , got painful lumps', 'recently , scratching lot , skin covered rashy places additionally , pimples rather firm , certain spots body different shade brown rest skin', 'skin really itchy rashy spots also patches look different color rest skin , bumps kind hard', 'skin really scratchy , rashes body bumps quite firm , well areas darker shade rest skin extremely unpleasant', 'rashy areas skin , really irritating additionally , bumps fairly firm patches different colour rest skin', 'recently , scratching lot , skin covered rashy places addition , spots skin appear usual shade , experienced lumps quite painful', 'really itchy lately rashy spots skin also areas look like normal color skin , bumps kind hard', 'quite itchy recently , rashy places body also regions appear typical hue skin , experienced firm lumps', 'itching rashy patches skin recently also regions appear regular tone skin , experienced painful bumps', 'recently , itching lot , skin covered rashy patches furthermore , regions skin appear usual tone , experienced lumps exceptionally painful', 'constant itch red bumpy spots skin also patches different color rest skin , bumps kind like little lumps', 'red , bumpy areas skin , scratching nonstop additionally , bumps resemble little lumps spots different shade skin rest body', 'lot itching skin , occasionally turns rash also odd patches skin different hue rest , occasionally get little pimples resemble nodules', 'tendency itching skin , frequently turns rash also strange patches skin different tone rest skin , regularly get little lumps mimic nodules', 'experiencing lot itching skin , sometimes turns rash also strange patches skin different color rest , sometimes get little bumps look like nodules', 'body itching terribly , red spots everywhere patches also differ tone natural complexion lumps pimples appeared skin', 'skin really itchy lately , occasionally erupts rash addition , odd areas skin different coloration rest , occasionally develop little bumps look like nodules', 'red blotches body itching horribly patches also differ complexion natural skin lumps bumps developed skin', 'stop sneezing nose really runny also really cold tired time , coughing lot fever really high , like way normal', 'nose extremely runny , seem stop sneezing addition , constantly feel cold , exhausted , coughing lot fever also really high far normal', 'sneezing nonstop seem shake chill feeling really weak tired , cough go away fever really high', 'sneezing incessantly get chill go away feel weak exhausted , cough stop temperature really high', 'constantly sneezing body shaking cold tired barely move head killing fever roof', 'constantly sneezing , cold making body tremble exhausted hardly move , head hurts fever quite high', 'quite exhausted ill sneezing nonstop quite cold head throbbing , lack energy additionally , high fever feel like fire', 'feeling really tired sick sneezing lot seem get warm tired head killing fever really high , like boiling', 'quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak', 'quite exhausted ill sneezing lot trouble warming exhausted , head hurts feel like boiling high temperature', 'stop sneezing feel really tired crummy throat really sore lot gunky stuff nose throat neck feels swollen puffy', 'stop sneezing , exhausted sick throat really uncomfortable , lot junk nose throat neck also swollen puffy', 'keep sneezing , miserable exhausted lot gunky things nose throat , throat really hurting neck also feels puffy swollen', 'feeling really exhausted sick stomach really bad cough throat hurt lot experienced substantial sinus pressure congested nose really unpleasant worn', 'sneezing lot feeling really tired sick also lot gross stuff coming nose throat feels really scratchy neck feels swollen', 'wheezing lot generally feeling sick exhausted throat feels really scratchy , lot gross stuff flowing nose neck also feels bloated', 'sinuses feel incredibly congested , eyes continuously red constantly feel drained exhausted addition , lot uncomfortable phlegm throat lymph nodes feel bloated , breathing challenging', 'eyes really red sinuses feel congested energy throat really itchy also noticed lymph nodes swollen coughing lot phlegm', 'sinuses feel stuffy , eyes quite red simply lack energy , throat really scratchy along swelling lymph nodes , also coughing lot phlegm', 'eyes always red itchy , nose feels stuffy congested feel kind sick tired time , keep coughing gunk throat feels sore scratchy , noticed bumps neck bigger usual', 'nose always feels stuffy congested , eyes always red itching feeling unwell fatigued , keep hacking gunk scratchy , irritated throat , seen neck bumps larger usual', 'keep sneezing , eyes quit dripping incredibly difficult breathe feels like something trapped throat often feel exhausted , lately , lot phlegm moreover , lymph nodes enlarged', 'eyes red watery time also pressure sinuses go away always feeling tired lot trouble breathing also lot gunk throat lymph nodes swollen', 'eyes constantly red runny persistent tightness sinuses also bothering lot difficulties breathing constantly feel fatigued addition , lot throat mucus inflamed lymph nodes', 'nose feels quite clogged , eyes constantly red runny addition , chest hurts lot breathing problems addition , muscles feel quite painful , smell anything', 'eyes usually red runny , nose always stuffy also difficulty breathing chest hurts addition , smell anything muscles quite painful', 'eyes usually red inflamed , impression something clogging sinuses coughing lot gunk , chest hurts smell anything , muscles aching', 'eyes always red swollen , feel like something blocking sinuses coughing lot goo chest feels really heavy smell anything muscles really sore', 'coughing lot feeling chilly shivery nose quite clogged , experiencing facial pressure also lot phlegm , coughing pains chest smell anything , muscles aching', 'days , nasty cough cold sinuses clogged , facial pressure also creating phlegm , coughing pains chest smell anything , muscles aching', 'nasty cough cold days sinuses congested , facial pressure also coughing mucus , pains chest smell anything muscles aching', 'cough cold awful days sinuses congested , face strain additionally , coughing phlegm , hurts chest sense smell , muscles hurt lot', 'coughing nonstop shivering terribly stuffy nose face strain addition , throat coughing nasty gunk , chest hurts muscles hurt lot , smell anything', 'stop coughing feel really cold sinuses blocked lot mucus chest hurts smell anything muscles also really sore', 'coughing nonstop really chilly mucus production excessive , sinuses fully clogged smell anything , chest hurts muscles quite painful well', 'stop coughing freezing sinuses completely blocked , inundated mucous chest hurts , unable smell anything muscles also really achy', 'coughing lot finding difficult breathe throat hurts feel like lot phlegm trapped chest nose running lot , feeling really congested', 'quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak', 'experiencing severe weariness sickly sensation throat really painful fairly severe cough nose quite stuffy , significant sinus pressure really miserable extremely exhausted', 'feeling really sick lot fatigue really bad cough throat really sore lot sinus pressure nose really congested feel really run miserable', 'quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature simply put , feel really run feeble', 'really weary ill suffering severe cough sore throat got lot chills pretty high temperature simply feel tired run', 'quit sneezing , nose running also constantly chilly exhausted , coughing lot fever also really high , well usual', 'feeling awful , lot congestion runny nose coughing lot lot chest pain fever really high , experiencing severe muscular discomfort', 'neck swollen , exhausted throat scratchy , eyes burning red nose really clogged , experiencing facial pressure chest hurts , unable smell anything', 'lack energy feel like neck bloated eyes red , throat feels scratchy severe congestion nostrils , face pressure smell anything , chest hurts', 'feel quite weak , lymph nodes enlarged eyes burning , throat hurts sinuses strain , nose stuffy smell anything , chest hurts', 'terrible cough cold days face tired sinuses blocked addition , chest hurts phlegm coughing smell , muscles terrible pain', 'red , watery eyes time sinuses also bothered constant tightness breathing quite tough , feeling worn time lymph nodes irritated , also lot throat mucous', 'always get hot , puffy eyes feeling something obstructing sinuses chest feels quite heavy , coughing lot gunk sense smell , muscles hurt lot', 'feeling really cold tired lately , coughing lot chest pain heart beating really fast , cough , phlegm kind rusty color', 'coughing lot recently chest pain feeling incredibly chilly exhausted additionally , heart thumping rapidly , phlegm cough reddish hue', 'feeling really drained cold , stop coughing hurts chest , heart feels like racing mucus coughing gross brownish color', 'exhausted chilly , stop coughing , pains chest makes heart race coughing mucous disgusting brownish hue', 'chills feeling exhausted , seem shake cough chest hurts cough , heart feels like going million miles hour phlegm coughing dirty rust color', 'experiencing chills , feeling worn , seem get rid cough cough , chest aches heart feels like beating million miles per hour coughing nasty rust colored phlegm', 'feeling really weak cold lately , cough go away hurts chest cough , heart pounding mucus bringing rusty brown color', 'chills feeling really worn , cough go away chest hurts cough , heart racing mucus bringing gross brownish color', 'experiencing chills , feel really exhausted , cough go away cough , chest aches heart pounding disgusting brownish hue , mucous coming', 'really high fever , trouble breathing sweating lot feeling really cold tired heart beating really fast , brownish sputum', 'problems breathing high fever perspiring lot experiencing extreme fatigue chilly heart racing , coughing brownish mucus', 'temperature high , hard time breathing sweating profusely , shaking chills really tired , heart beating really fast also brownish phlegm coming', 'trouble breathing , fever really high drenched sweat shivering chill heart thumping rapidly , quite exhausted additionally , brownish phlegm', 'fever really high , trouble catching breath sweating lot , feeling cold tired , heart beating really fast also brownish phlegm coming', 'really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm', 'feeling really sick high fever , shortness breath , sweating , chills , extreme fatigue heart rate rapid , coughing lot brownish sputum', 'high temperature , shortness breath , sweating , chills , intense exhaustion , feeling quite poorly coughing lot brownish phlegm pulse rate racing', 'really hard time catching breath sweating lot feel really sick lot mucus throat chest hurts heart racing mucus coughing dark looks like rust', 'sweating profusely finding difficult catch breath feel quite ill , throat mucous heart pounding , chest aches coughing thick mucous resembles rust', 'lot trouble breathing really uneasy feeling unwell perspiring lot chest hurts lot mucus throat heart racing , hue mucus coughing', 'seem get enough air sweating lot feel well lot phlegm throat chest hurts heart racing mucus coughing reddish color', 'sweating profusely seem get enough air throat filled lot mucus , feel good heart pounding , chest aches coughing reddish colored mucous', 'seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing yellowish', 'dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing brownish mucous', 'hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish', 'trouble breathing quite uneasy throat filled lot phlegm , perspiring lot heart racing , chest aches coughing reddish mucous', 'seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing brownish stringy', 'dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing stringy , brownish mucous', 'drenched sweat struggling breathe feel well lot mucous throat chest aches , heart racing coughing mucus crimson colour', 'feeling lousy , high temperature , shortness breath , sweating , chills , extreme weariness heart beating , coughing lot brownish phlegm', 'really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm', 'fever really high , difficulty breathing drenched sweat shivering chills quite fatigued , heart racing also expecting brownish phlegm', 'getting chills , feeling tired , seem shake cough chest aches heart feels like racing million miles per hour cough coughing foul rusty phlegm', 'hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish', 'trouble breathing really uncomfortable sweating profusely lot mucus throat chest aches , heart racing coughing dark mucous', 'got high fever seem catch breath sweating profusely generally feeling ill weak also quite thick black phlegm chest aches , heart racing rapidly', 'lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark', 'recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick black phlegm', 'lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark', 'recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick red phlegm', 'chills , lethargy , cough , high temperature , difficulties breathing lately sweating profusely generally feeling ill weak also quite thick black phlegm', 'lot respiratory issues lately along chills , exhaustion , cough , high temperature sweating profusely generally feeling ill weak chest aches , heart racing rapidly', 'suffering chills , tiredness , cough recently sweating tremendously feeling overall unwell weak also thick , black phlegm chest aches , heart racing', 'running temperature seem catch breath sweating tremendously feeling overall unwell weak also thick , black phlegm heart beating frantically , chest hurts', 'drenched sweat seem catch breath throat clogged mucus , miserable heart racing , chest aches coughing brownish stringy mucus', 'saturated sweat struggling breathe throat blocked mucous , uncomfortable heart racing , chest aches coughing darkish stringy mucous', 'lot problems breathing feeling good , sweating lot lot mucous throat chest hurts breathing laboured , phlegm coughing odd tint', 'lot difficulty breathing feel well , perspiring lot chest hurts , lot mucus throat trouble breathing , phlegm coughing strange hue', 'coughing lot feeling incredibly chilly exhausted pretty high fever , difficult breathe perspiring lot generally feeling weak ill quite thick black phlegm', 'recently chills , exhaustion , cough , high temperature , breathing issues perspiring lot generally feeling weak ill quite thick black phlegm heart racing quite quickly', 'constipation , discomfort bowel motions , anus pain recently bothering anus quite inflamed , stool extremely bloody', 'lately experiencing constipation , pain bowel movements , pain anus stool also really bloody anus really irritated', 'recently , lot difficulty using restroom bowel movements extremely uncomfortable difficult anus quite inflamed , stool extremely bloody', 'lot trouble going bathroom lately really painful , blood stool also pain irritation around anus', 'recently , lot difficulty using restroom , hurts lot , noticed blood stool around anus , also experiencing discomfort itching', 'lately really constipated , really painful go bathroom also noticed blood stool , anus really irritated', 'suffering severe constipation lately , whenever go restroom , hurts lot aside , anus really itchy , observed blood stool', 'lot trouble going bathroom lately , really painful also noticed stool bloody anus really irritated', 'recently , lot discomfort difficulty using restroom additionally , noticed anus quite sore stool bloody', 'terribly constipated lately , go bathroom , hurts lot aside , anus really itchy , observed blood stool', 'quite constipated lately , going restroom excruciatingly uncomfortable also observed blood stool , anus aggravated', 'lot trouble going bathroom lately really painful experiencing pain anus stool also bloody anus really irritated', 'lot problems using restroom recently excruciatingly uncomfortable , feeling agony anus stool bloody well , anus really inflamed', 'trouble going restroom recently try go , really uncomfortable , anus hurts lot also blood stool , anus really uncomfortable', 'really hard time going bathroom lately really painful try go anus hurts lot also blood stool anus really itchy', 'experiencing problems using restroom recently quite difficult go , hurts also experiencing buttock soreness bloody stools anus also quite itching sensitive', 'recently , problems using restroom going incredibly difficult , hurts addition , experiencing butt soreness , stools bloody anus also quite itching aggravated', 'constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated', 'since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt', 'constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated', 'since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt', 'constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated', 'constipation made quite difficult use restroom stool bloody go , hurts addition , anus quite itchy inflamed , experiencing butt soreness', 'incredibly difficult use restroom , , hurts lot stools bloody , butt hurting anus also quite itching aggravated', 'lot trouble going bathroom really painful stool bloody pain butt anus really itchy irritated', 'trouble going bathroom really hard go hurts anus really sore bleeding go really painful really uncomfortable', 'finding challenging use restroom going quite difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'difficulty using restroom difficult go , aches anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable', 'recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'constipation soreness bowel motions bothering lately go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable', 'bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable', 'experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'bowel motions giving lot problems right going difficult , going hurts go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable', 'constipation bowel motions hurt recently go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable', 'bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go really painful really uncomfortable', 'getting lot bowel issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'really hard time going bathroom lately really painful able go every days also lot pain anus around area stool really bloody anus feels really irritated', 'finding incredibly difficult recently use restroom go sporadically hurts much anus surrounding region also quite painful anus feels really aggravated , stool extremely bloody', 'lot trouble constipation pain trying go bathroom hurts lot anus area around stool bloody anus really irritated', 'constipation bowel movement discomfort common lately region surrounding anus ache lot anus really itchy , stool bloody', 'muscles feeling really weak , neck extremely tight experiencing lot stiffness walk joints swollen walking also really uncomfortable', 'feeling really weak muscles neck really stiff joints swelling lot stiffness move around also really painful walk', 'muscles quite weak , neck really stiff joints swollen experiencing lot stiffness move around walking also excruciatingly uncomfortable', 'feeling really weak muscles neck really stiff joints swelling hard move around walking really painful', 'muscles really weak , neck extremely stiff joints swollen , making difficult move walking excruciatingly uncomfortable', 'experiencing severe muscular weakness , neck really stiff difficult move since joints swollen really uncomfortable walk', 'muscles feeling really weak , neck extremely tight joints swollen , making difficult move hurt lot walk', 'neck tense , feeling like muscles incredibly weak trouble moving since joints enlarged walk quite painful', 'neck really stiff , terrible muscle weakness due swelling joints , challenging move walking quite unpleasant', 'feeling really weak muscles lately neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'recently , muscles felt quite weak , neck really tight swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'experiencing muscular weakness stiffness neck recently joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable', 'recently , suffering neck muscle weakness stiffness joints enlarged difficult walk without feeling stiff walking also excruciatingly uncomfortable', 'lately , neck tight muscles weakened swelling joints make difficult move without getting stiff also agonisingly painful walk', 'feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'muscles quite weak , neck really stiff joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable', 'muscles really weak , neck extremely stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable', 'muscles quite weak , neck really stiff joints swollen , making difficult move without becoming stiff walking quite uncomfortable well', 'neck really tight , muscles rather weak swelling joints make hard move without getting stiff additionally , walking quite unpleasant', 'feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'neck extremely tight muscles feeling extremely weak difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable', 'neck extremely stiff muscles extremely weak result swelling joints , find difficult move around without feeling stiff additionally , walking extremely uneasy', 'experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable', 'neck extremely tight muscles feeling extremely weak joints swollen walking around lot stiffness additionally , walking extremely uneasy', 'experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable', 'feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'muscles quite weak , neck really stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable', 'experiencing severe muscular weakness , neck really stiff swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'feeling really weak muscles lately neck really stiff joints swollen hard move around also painful walk', 'feeling truly frail muscles recently neck truly solid swollen joints make difficult move around walking also difficult', 'recently , muscles felt quite weak , neck really tight swollen joints , making difficult move walking also painful', 'experiencing muscular weakness stiffness neck recently joints enlarged , making difficult move walking also difficult', 'feeling truly frail muscles recently neck truly solid difficult move around joints swelling walking also extremely painful', 'muscles feeling feeble recently , neck rock solid joints become swollen , making difficult move walking quite uncomfortable well', 'muscles feeling rather weak lately , neck really strong joints swollen , making challenging move also excruciatingly difficult walk', 'neck extremely tight muscles felt quite weak recently difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable', 'experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf pine tree state run whereas getting stiff additionally , walking terribly uncomfortable', 'experiencing muscular weakness stiffness neck recently joints swollen , creating troublesome behalf run regarding changing stiff walking additionally agonizingly uncomfortable', 'muscles quite weak , neck stiff joints swollen , creating troublesome behalf steer concerning feeling stiff walking conjointly uncomfortable', 'muscles area unit quite weak , neck terribly stiff joints swollen , making hard behalf maine steer regarding whereas feeling stiff walking put together terribly uncomfortable', 'experiencing stiffness weakness neck muscles recently since joints grownup , onerous behalf run obtaining stiff addition , walking extraordinarily uncomfortable', 'neck tight muscles felt quite weak recently tough behalf maneuver around changing stiff thanks swollen joints walking additionally uncomfortable', 'recently , try walk , stiffness , stiff neck , swollen joints , muscular weakness walking also really uncomfortable', 'lately experiencing muscle weakness , stiff neck , swelling joints , stiffness attempt move around also painful steer', 'recently , muscles neck become tight weak difficult run since joints older without getting tight act walking also quite unpleasant', 'experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf american state run whereas getting stiff additionally , walking uncomfortable', 'recently , muscles neck become tight weak since joints matured , difficult american government run without becoming stiff walking also quite unpleasant', 'lately , stiffness weakness neck muscles since joints matured , difficult american state operate without becoming stiff furthermore , walking quite painful', 'really bad rash skin lately full pus filled pimples blackheads skin also scurring lot', 'developed severe rash skin clogged pus filled pimples blackheads skin also quite sensitive', 'skin breaking terrible rash lately blackheads pus filled pimples abound additionally , skin scurring lot', 'recently experiencing severe skin rash blackheads pimples packed pus everywhere additionally , skin scurring lot', 'unhealthy rash skin latterly filled pus filled pimples blackheads skin additionally scurring heaps', 'skin acquired nasty rash full pus filled pimples blackheads skin really sensitive well', 'nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive', 'recently experienced severe skin rash blackheads pimples filled pus clogging additionally , skin quite irritated', 'skin recently severely rashy blackheads pus filled pimples blocked skin quite delicate well', 'lately experiencing skin rash lot pus filled pimples blackheads skin also scurring lot', 'skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot', 'skin developed revolting rash pus filled pimples blackheads everywhere skin also really sensitive', 'skin developed horrible rash blackheads pus filled pimples everywhere furthermore , skin exceedingly sensitive', 'nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive', 'skin simply nonheritable nasty rash packed pus filled pimples blackheads skin sensitive moreover', 'skin developed terrible rash inherited lot blackheads pus filled pimples furthermore , skin exceedingly sensitive', 'recently , experiencing lot acne breakouts pimples contain pus also struggling blackheads', 'woke morning found really nasty rash skin ton blackheads pimples filled pus skin also really scurrying', 'noticing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying', 'dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'woke morning find really nasty rash skin ton blackheads pimples filled pus skin also really scurrying', 'struggling really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying', 'dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying everywhere', 'recently horrible rash skin several blackheads pus filled pimples skin also moving around lot', 'morning woke , discovered extremely bad rash body several pus filled pimples blackheads around skin also moving around lot', 'awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying', 'developed skin rash several pus filled pimples blackheads skin also quite sensitive', 'skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot', 'woke morning find terrible rash body blackheads pus filled pimples place additionally , skin changing lot', 'awoke morning , realised severe rash body many pus filled pimples blackheads place skin also scurring lot', 'recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying', 'awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying', 'morning woke , discovered extremely bad rash skin several pus filled pimples blackheads around skin also moving around lot', 'recently battling pretty itchy rash skin pus filled pimples blackheads skin also scurring lot', 'morning , realized major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot', 'woke today find major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot', 'woke morning find major rash body covered pus filled pimples blackheads , skin scurrying lot', 'morning , saw large rash body lot pus filled pimples blackheads face , skin scurrying lot', 'discovered significant rash body morning blackheads pus filled pimples proliferating , skin scurrying lot', 'yesterday , noticed enormous rash skin lot pus filled pimples blackheads face , skin scurrying lot', 'discovered huge rash skin yesterday face covered blackheads pus filled pimples , skin crawling lot', 'skin horrible rash absolutely nonheritable blackheads pus filled pimples abound addition , skin quite sensitive', 'skin merely developed uninherited rash lot pus filled pimples blackheads furthermore , skin quite sensitive', 'awoke morning , saw severe rash across skin many pus filled pimples blackheads place skin also shifting lot', 'woke morning , saw terrible rash skin blackheads pus filled pimples place additionally , skin shifting lot', 'recently struggled really irritating skin rash blackheads pus filled pimples additionally , skin scurring lot', 'recently dealing itching rash skin covered pus filled pimples blackheads skin also quite sensitive', 'feeling extremely tired weak , also coughing lot difficulty breathing fever high , producing lot mucus cough', 'got cough go away , exhausted coughing thick mucous fever also pretty high', 'persistent cough feeling quite fatigued fever roof , trouble breathing cough , also cough lot mucous', 'issues exhaustion , dry cough , breathing high fever coughing lot thick , mucoid phlegm', 'feel really fatigued weak , bad cough fever really high , breathing become shallow cough , lot saliva comes well', 'lot sleepiness , cough refuses go away , breathing difficulty coughing lot thick , mucoid saliva high fever', 'doctor , high fever since past days , saliva also became thick , dry cough , weakness also seen', 'cough continued days , feel really weak tired fever high , breath become strained cough , also generate lot mucus', 'mom , dad , feeling really tired weak lately , cough go away hard catch breath , fever really high cough , producing lot mucus', 'hey mom , hey dad , feeling really exhausted lately persistent cough breathing become shallow , fever high also coughing lot thick , mucoid sputum', 'recently , felt quite weak exhausted , also cough simply go away fever really high , challenging catch breath making lot mucous cough', 'felt terribly weak drained , also cough go away fever exceptionally high , challenging try catch breath creating lot mucous cough', 'feeling really tired weak lately , cough go away breathing become shallow , fever really high cough , producing lot thick , mucoid sputum', 'feeling extremely exhausted persistent cough hard catch breath , fever high also producing lot mucus cough', 'struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum', 'nagging cough go away , breathing become labored fever also high , feeling weak tired producing lot mucus cough', 'experiencing high fever , persistent cough , shortness breath also producing lot thick , mucoid sputum , feeling tired weak', 'breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling drained tired deal', 'cough lingering days difficulty breathing fever sky high , feeling weak tired also producing lot mucus cough , overwhelming deal symptoms getting frustrated', 'persistent cough days , also breathing problems weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything', 'struggling difficulty breathing , constant cough , fatigue fever extremely high , coughing lot thick , mucoid sputum hard deal , feeling drained worn', 'breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling exhausted tired cope', 'feeling really ill lately persistent cough difficulty breathing , fever charts also feeling extremely exhausted , producing lot mucus cough overwhelming deal symptoms', 'recently , feeling terrible fever roof , persistent cough breathing problems coughing lot phlegm also feeling quite weary dealing symptoms quite difficult', 'fever , cough go away , shortness breath addition , coughing lot thick , mucoid saliva feel quite worn weak', 'hey , dry cough , breathing difficulties , well high fever lot mucous produced , feel incredibly weak tired', 'recently , number concerning symptoms , including dry cough , impaired breathing , high fever , lot mucus also feel weak tired', 'currently dealing number health issues , including dry cough , difficulty breathing , high fever , increased mucus production also feeling weak tired', 'week , suffering continious health issues like dry cough , problems breathing , weakness throughout day', 'doctor , couple days able brethe propelry , lying bed due high fever , lot mucus gets please suggest medicines', 'experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling drained exhausted hard deal', 'weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything', 'must confess experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling quite drained exhausted rather tough deal , feeling quite sick moment', 'must admit high fever , persistent cough , shortness breath addition , coughing lot thick , mucoid saliva feeling really depleted worn', 'tough time constant cough , difficulty breathing , fatigue fever high , coughing lot thick , mucoid sputum rather draining exhausting , feeling quite sick moment', 'struggling persistent cough , breathing issues , exhaustion coughing lot thick , mucoid sputum high fever really tiring exhausting , right feeling rather ill', 'dealing bad cough , breathing issues , drowsiness coughing lot thick , mucoid sputum high fever really exhausting exhausting , right feeling rather ill', 'persistent cough , breathing problems , exhaustion making things difficult producing copious amounts thick , mucoid sputum also high fever currently feeling fairly ill everything tiring exhausting', 'persistent cough , respiratory issues , exhaustion , struggling high fever producing lot thick , mucoid sputum coughing currently feel rather sick result draining tiresome everything', 'fever roof , weak tired coughing lot mucous , managing symptoms really hard everything making upset', 'doctor due high fever , able breathe via nose mouth days feelinf tired please recommend medications', 'hey , got dry cough , trouble breathing , high fever producing lot mucus feeling quite weak exhausted', 'coughing nonstop days , also respiratory issues fever roof , weak worn symptoms really challenging control ,', 'addition sleepiness , trouble breathing due persistent cough coughing lot thick , mucoid sputum high fever', 'struggling breathe , coughing constantly , feeling worn high fever coughing lot thick , mucoid saliva simply feel worn exhausted trying deal everything', 'experiencing difficulty breathing , chronic cough , weariness producing lot thick , mucoid sputum also running high temperature due cope , simply feeling extremely worn exhausted', 'hello , mom father recently , felt incredibly worn cough go away fever really high , breathing become shallow additionally , coughing lot mucous , thick sputum', 'struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum', 'doctor due high fever , able breathe via nose mouth days feeling tired sometimes mucus seen please recommend medications', 'ongoing health problems week , including dry cough , breathing difficulties , general weakness', 'experiencing headache , chest pain , dizziness , difficulty maintaining balance also feel like trouble concentrating', 'along headache , chest pain , instability , balance issues , also feeling dizzy also think problems focusing', 'along head pain , chest pain , instability , balance issues , also feeling unwell also think problems focusing', 'addition head pain , chest pain , instability , balance issues , already feeling unwell also suppose issues focusing', 'experiencing balance issues , headache , chest pain , dizziness ability concentrate focus also challenging', 'headache , chest pain , dizziness , trouble balance also hard focus concentrate', 'encountering trouble walking , headache , chest pain , dizziness concentration skills focus also challenging', 'encountering poor balance , headache , chest pain , dizziness ability pay attention focus also problematic', 'coordination , experiencing headache , chest pain , dizziness additionally , trouble concentrating focusing', 'symptoms include headache , chest pain , dizziness , lack balance , trouble concentrating', 'experiencing symptoms headache , chest pain , dizziness , loss balance , difficulty focusing', 'suffering symptoms including headache , chest pain , dizziness , losing balance , trouble concentrating', 'headache , chest discomfort , dizziness , lack balance , difficulty concentrating symptoms', 'along headache chest pain , also experienced fainting balance issues additionally , discovered hard focus', 'experiencing balance issues , headache , chest pain , dizziness also realised trouble focusing', 'balance , headache , chest pain , dizziness also observed hard concentrate', 'experiencing balance issues , chest pain , headaches , pains trouble focusing well', 'experiencing chest pain , dizziness , headache feels like continual pressure forehead', 'feeling lightheaded unsteady feet , also noticed decline ability focus concentrate', 'experiencing dizziness shakiness , well loss attention span ability concentrate', 'experiencing dizziness anxiousness , well loss attention concentration ability concentrate', 'intense aches chest , headache go away , feeling dizzy unsteady', 'intense aches chest , head pain refuses go away , feeling dizzy unsteady', 'along chest pain , dizziness , headache feels like narrow zone around head , lot trouble', 'struggling headache feels like tight band around head , along chest pain dizziness', 'experiencing balance issues addition feeling disoriented dizzy headache also present nonstop', 'feeling disoriented dizzy , also trouble keeping balance headache constant presence well', 'experiencing balance issues along feeling dizzy lightheaded additionally , seen drop concentration focus', 'addition feeling dizzy lightheaded , problems keeping equilibrium capacity concentrate focus also slipping , noticed', 'experiencing headache feels like sharp pain temples , along chest pain dizziness', 'along chest pain dizziness , headache seems like sharp pain forehead', 'feeling fine day , suddenly developed headache , chest pain , dizziness walk hard focus concentrate since', 'taking walk , suddenly started experiencing headache , chest pain , dizziness feeling fine day since , challenging concentrate focus', 'woke morning headache chest pain , day gone , also feeling dizzy unsteady feet', 'headache chest pain morning , day wore , also started feel unsteady unstable feet', 'dealing headache chest pain days , today dizziness loss balance became much worse', 'days , suffering headache chest pain , today dizziness lack balance got considerably worse', 'work started feeling headache , chest pain , dizziness hard concentrate focus tasks since', 'first experienced headache , chest pain , lightheadedness , work since , challenging focus concentrate work', 'middle workout suddenly developed headache , chest pain , dizziness hard maintain balance since', 'instantly experienced headache , chest pain , dizziness working since , challenging keep balance', 'feeling fine day , suddenly developed headache , chest pain , dizziness driving home work hard focus concentrate road since', 'felt fine day , driving home work , suddenly started headache , chest discomfort , dizziness since , challenging concentrate focus driving', 'shopping started feeling headache , chest pain , dizziness hard focus concentrate tasks since', 'first experienced headache , chest pain , lightheadedness , shopping since , difficult concentrate work', 'woke morning feeling fine , day went , started experiencing headache , chest pain , dizziness hard focus concentrate work since', 'felt good woke morning , day wore , began feel headachey , sick stomach , dizzy since , challenging concentrate focus work', 'middle meeting suddenly developed headache , chest pain , dizziness hard focus concentrate discussion since', 'suddenly experienced headache , chest pain , dizziness middle conference since , challenging concentrate focus topic', 'feeling fine day , suddenly developed headache , chest pain , dizziness run hard maintain balance since', 'experiencing acidity indigestion meals , well frequent headaches blurred vision', 'getting frequent headaches hazy vision , well acid reflux indigestion meals', 'trouble vision , seeing things distorted experiencing visual disturbances', 'suffering visual disruptions , seeing things distorted , eyesight problems', 'facing visual disruptions , seeing things distorted , eyesight difficulties', 'feeling excessively hungry , even eating , stiff neck', 'facing visual disruptions , seeing things distorted , eyesight difficulties', 'grumpy gloomy lately , also noticed change vision', 'feeling depressed irritable , noticed change vision', 'irritated depressed lately , also noticed change vision', 'along recurrent headaches blurred vision , suffer acid reflux trouble digesting food', 'experiencing acid reflux difficulty digesting food , along regular headaches impaired vision', 'feeling hungry time sore neck , well problems vision', 'addition stiff neck eye issues , always hungry', 'experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance', 'along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux', 'along excessive appetite , stiff neck , depression , impatience , visual disturbance , also suffering indigestion , headaches , blurred vision , stomach problems', 'suffering acid reflux , indigestion , frequent headaches , impaired vision , well excessive hunger , sore neck , depression , irritability , visual disturbance', 'along increased hunger , sore neck , melancholy , impatience , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , blurred eyesight', 'together increased hunger , sore neck , anxiety , irritation , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , impaired eyesight', 'experiencing digestive issues , including acidity indigestion , well regular headaches distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'addition recurrent headaches blurred vision , increased appetite , stiff neck , sadness , irritability , visual disturbance , stomach problems , including indigestion acidity', 'add frequent headaches blurred vision , increased appetite , stiff neck , anxiety , irritability , visual disturbance , stomach problems , including indigestion acidity', 'struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also experiencing blurred distorted vision', 'along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also feeling blurred distorted vision', 'experiencing digestive issues , including acidity indigestion , well frequent headaches impaired vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'acidity indigestion among digestive problems , along regular headaches , blurred vision , increased hunger , stiff neck , sadness , impatience , visual disruption', 'suffering acid reflux , indigestion , regular headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'along distorted eyesight , excessive appetite , painful neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , regular headaches', 'along distorted eyesight , excessive appetite , painful neck , anxiety , irritability , regular headaches , also battling acid reflux , indigestion , regular headaches', 'experiencing acidity , indigestion , frequent headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'stomach acid , indigestion , frequent headaches , hazy distorted vision , increased appetite , stiff neck , depression , irritation , visual distortion bothering', 'struggling digestive issues , including acid reflux indigestion , well regular headaches impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'experiencing frequent headaches , blurred vision , excessive appetite , sore neck , sadness , irritability , digestive problems including indigestion acid reflux', 'enduring frequent headaches , blurred vision , excessive appetite , sore neck , anxiety , irritability , digestive difficulties including indigestion acid reflux', 'experiencing acidity , indigestion , headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion', 'along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion', 'suffering acid reflux , indigestion , frequent headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'along impaired eyesight , increased appetite , sore neck , melancholy , impatience , regular headaches , also experiencing heartburn , acid reflux , indigestion', 'along impaired seeing , excessive eating , sore neck , melancholy , impatience , constant headaches , also fighting heartburn , acid reflux , indigestion', 'experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort', 'along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms bothering interfering usual activities', 'well excessive appetite , tense neck , depression , irritability , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms disturbing interfering usual activities', 'suffering acid reflux , indigestion , regular headaches , well impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot distress making difficult go daily activities', 'along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent migraines regular activities made challenging symptoms , causing great deal distress', 'along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent dizziness regular activities made tough symptoms , causing great deal distress', 'experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort', 'struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot problems making difficult concentrate function normally', 'experiencing severe back pain , persistent cough , weakness limbs neck also hurts feeling dizzy balance', 'along chronic cough limb weakness , dealing excruciating back discomfort experiencing neck pain well vertigo instability', 'suffering back pain , hacking cough , weakness arms legs additionally , neck hurts issues dizziness maintaining balance', 'back pain , hacking cough , numbness arms legs bothering addition , neck hurts , trouble staying balanced without getting lightheaded', 'back pain , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy', 'pain typically , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy', 'struggling back pain , cough go away , weakness extremities neck hurts problems dizziness losing balance', 'back discomfort , persistent cough , weakness limbs bothering issues vertigo losing equilibrium , neck hurts', 'back discomfort , breathing difficulty , weakness limbs hurting issues vertigo losing balance , neck hurts', 'experiencing intense back pain , dry cough , lack strength limbs neck hurts feeling dizzy unsteady feet', 'struggling severe back pain , dry cough , limb weakness feeling lightheaded wobbly feet , neck hurts', 'battling back pain , dry cough , limb weakness feeling dizzy unstable feet , neck hurts', 'struggling back pain , chronic cough , limb weakness feeling disoriented weak feet , neck hurts', 'suffering back pain , productive cough , weakness limbs neck sore issues dizziness balance', 'back pain , productive cough , limb weakness bothering balance dizzy concerns , neck hurts', 'backache , difficulty breathing , limb weakness bothering balance dizzy concerns , neck suffers', 'struggling back pain , persistent cough , weakness muscles neck hurts problems dizziness loss balance', 'back pain , lingering cough , muscle weakness bothering issues dizziness losing equilibrium , neck hurts', 'back pain , chronic cough , muscle weakness bothering concerns dizziness losing position , neck hurts', 'experiencing severe back pain , cough comes goes , weakness limbs neck also hurts feeling dizzy balance', 'intermittent coughing fits , significant back pain , limb weakness experiencing neck pain well dizzy unsteady sensation', 'periodic coughing fits , terrible back pain , limb weakness feeling neck pain well dizzy unstable sensation', 'dealing back pain , cough go away , weakness arms legs neck hurts problems dizziness maintaining balance', 'back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts', 'back pain , dry cough , stiffness arms legs bothering problems staying balanced experience dizziness , neck hurts', 'experiencing back pain , persistent cough , numbness arms legs trouble staying balanced managing vertigo , neck hurts', 'arms legs weak , suffering back pain persistent cough addition experiencing neck pain balance issues , also suffer dizziness', 'back pain , persistent cough , arm leg weakness bothering experiencing neck pain , balance issues , dizziness', 'back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts', 'suffering back pain , dry cough , lack strength muscles neck sore feeling dizzy unsteady feet', 'back pain , dry cough , lack muscle strength bothering neck hurts , feeling lightheaded shaky', 'muscles lack strength , experiencing back pain dry cough experiencing neck pain feeling lightheaded unstable feet', 'muscles strong , experiencing back ache feeling lightheaded wobbly feet , neck hurts', 'experiencing back pain , dry cough , muscle weakness experiencing neck pain , feeling lightheaded , trouble standing still', 'struggling intense back pain , chronic cough , weakness arms legs neck sore problems dizziness loss balance', 'terrible back pain , persistent cough , weakness arms legs issues dizziness balance loss , neck hurts', 'suffering severe back pain , persistent cough , numbness arms legs experiencing issues vertigo balance issues , neck hurts', 'along persistent cough , weakness arms legs , severe back pain , lot trouble experienced issues vertigo balance loss , neck hurting', 'experiencing severe back pain , cough produces phlegm , weakness muscles neck also hurts feeling dizzy unsteady feet', 'addition excruciating back pain , also coughing mucus feeling weak feeling lightheaded unstable feet , neck hurts well', 'muscles quite weak , coughing phlegm along significant back discomfort addition feeling weak disoriented , neck hurting', 'along phlegmy cough muscle weakness , dealing excruciating back pain addition feeling woozy shaky feet , neck hurting', 'dealing back pain , persistent cough , weakness limbs neck sore issues dizziness loss balance', 'back ache , chronic cough , limb weakness bothering troubles disorientation balance loss , neck hurts', 'back pain , cough go away , limb weakness experiencing neck pain , instability , balance concerns', 'suffering back pain , chronic cough , weakness arms legs neck hurts feeling dizzy balance', 'back pain , persistent cough , numbness arms legs bothering neck hurts , feeling lightheaded unsteady', 'back pain , persistent cough , weakness arms legs neck hurts , feeling balance woozy', 'struggling back pain , productive cough , weakness muscles neck sore problems dizziness unsteady balance', 'back pain , productive cough , muscle weakness bothering issues dizziness uneven balance , neck hurts', 'experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain', 'felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow additionally , stomach hurting', 'extreme itchiness , sickness , exhaustion plaguing addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache', 'severe itching vomiting also tired lost weight fever high skin turned yellow urine dark experiencing abdominal pain', 'experiencing intense itching nausea lost weight also really exhausted skin become yellow , severe fever dark urine , stomach pain', 'throwing experiencing intense itching along losing weight , also really exhausted skin become yellow , fever really high stomach pain pee black', 'strong itchiness nausea bothering also lost weight really exhausted high fever , skin becoming yellow addition feeling stomach ache , pee black', 'experiencing terrible itching nausea lost weight also really exhausted skin become yellow severe temperature dark urine stomach ache', 'feeling itchy vomiting also fatigued lost weight fever high skin become yellow urine dark abdominal pain', 'feeling scratchy throwing lost weight also really exhausted skin become yellow , severe fever stomach ache black urine', 'itchy throwing along losing weight , also really exhausted skin turned yellow , fever high additionally , get stomach ache dark urine', 'scratchy stomach throwing aside losing weight , also really exhausted high fever yellow skin besides stomach ache , pee black', 'itchy throwing addition , lost weight feel really exhausted skin become yellow severe temperature abdominal ache black urine', 'exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain', 'suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain', 'itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache', 'nausea , vomiting , exhaustion additionally , lost weight temperature urine black skin turned yellow also stomach pain', 'experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'constantly feeling scratchy , sick , tired addition , lost weight temperature urine dark , skin turned yellow furthermore , experiencing stomach pain', 'felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain', 'severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain', 'experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts', 'extreme itchiness , nausea , exhaustion bothering addition , developed fever lost weight pee black , developed yellow rash ache stomach also present', 'extreme itchiness , nausea , fatigue troubling moreover , experienced fever lost weight pee black , developed yellow rash ache stomach also present', 'feeling itchy vomiting also tired lost weight fever high skin become yellow experiencing abdominal pain well', 'itchy throwing along losing weight , also really exhausted skin turned yellow , fever high stomach also hurting recently', 'scratchy stomach throwing also lost weight really exhausted high fever yellow skin well , stomach pain', 'itchy throwing lost weight also really exhausted skin become yellow severe temperature stomach also hurting', 'exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain', 'suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain', 'itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache', 'experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain', 'severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain', 'experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts', 'experiencing itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain', 'losing weight experiencing nausea , itching , exhaustion skin become yellow , severe fever dark urine , stomach pain', 'suffering intense itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain', 'losing weight experiencing severe itching , nausea , exhaustion skin become yellow , severe fever dark urine , stomach pain', 'experiencing severe itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain', 'losing weight , feeling really fatigued , throwing lot skin become yellow , severe fever dark urine , stomach pain', 'experiencing severe itching , chills , vomiting , high fever also sweating lot headache feel nauseous muscles really sore', 'high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot', 'high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot', 'strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot muscles quite sore , feel sick', 'along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , muscles hurt lot , feel queasy', 'high fever , chills , intense itching addition , headache perspiring lot muscles hurt lot , feel sick', 'intense itching body , accompanied chills vomiting fever really high sweating excessively also headache feel nauseous muscles really painful', 'experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort', 'along severe body itchiness , chills , nausea , experiencing severely perspiring high fever feeling queasy also headache really hurting muscles', 'experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort', 'experiencing severe body itchiness , along chills nausea perspiring lot extremely high fever feel sick stomach headache muscles hurting lot', 'suffering intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also bothering', 'high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness', 'high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache', 'strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot bothered nausea well muscle ache', 'high fever , chills , severe itching addition , headache perspiring lot also bothered nausea muscular ache', 'high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness', 'high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache', 'experiencing severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing discomfort', 'high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache', 'strong itchiness , chills , nausea , high temperature plaguing along headache , also perspiring lot also bothered nausea muscle ache', 'along intense scratching , chills , nausea , high fever , also feeling really unwell headache also perspiring lot uncomfortable nausea muscle ache ,', 'high fever , chills , intense itching addition , headache perspiring lot suffering nausea well muscle ache', 'high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache', 'intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable', 'experiencing lot scratching , chills , vomiting , fever also headache perspiring lot terrible nausea soreness muscles', 'experienced severe itching , chills , nausea , high fever besides headache , also perspiring lot terrible nausea muscle ache', 'high fever , chills , severe itching along headache excessive sweating , terrible nausea muscle ache', 'high fever , chills , severe itching addition , headache perspiring lot feeling awful nausea muscle ache', 'experiencing severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain causing lot discomfort', 'high temperature , vomiting , chills , intense itching also headache perspiring lot really uncomfortable lately nausea muscle ache', 'strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot suffering severe muscle pain nausea', 'along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , suffering severe muscle pain nausea', 'high fever , chills , intense itching addition , headache perspiring lot lot agony muscle ache nausea', 'intense itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also bothering', 'experiencing lot scratching , chills , vomiting , fever also headache perspiring lot additionally hurting nausea muscle soreness', 'experienced severe itching , chills , nausea , high fever along headache , also perspiring lot also bothered nausea muscle ache', 'high fever , chills , severe itching headache also perspiring lot bothered nausea well muscle ache', 'experiencing severe itching , chills , vomiting , high fever addition , headache perspiring lot also bothered nausea muscular ache', 'suffering severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also causing discomfort', 'high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache', 'high fever , severe itching , chills , vomiting addition , perspiring lot headache also bothered nausea muscle ache', 'strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot uncomfortable nausea muscle ache ,', 'strong itchiness , chills , nausea , high fever part current condition addition , headache perspiring lot suffering nausea well muscle ache', 'high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache', 'experiencing intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable', 'intense scratching , chills , nausea , high temperature plaguing also headache perspiring lot terrible nausea soreness muscles', 'along high fever , chills , vomiting , severe itching besides headache , also perspiring lot terrible nausea muscle ache', 'along high fever , chills , vomiting , severe itching along headache excessive sweating , feeling awful nausea muscle ache', 'severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing lot discomfort', 'frequent urges urinate little output , pain urination , cloudy bloody urine , strong foul smelling urine , pelvic pain , low fever , nausea vomiting', 'get frequent urges urinate night little output , lot pain urination urine coludy bloody sometime foul smelling , get nauseous', 'get burning sensation pee sometimes lot pain foul smelling urine getting urges urinate night', 'getting blood pee sometimes get nauseous peeing often almost coincides high temperature', 'pee looks cloudy storng foul smell frequently get urge urinate night , getting high temperatures since symptoms strted showing', 'pain abdomen , often get feverish sudden strong urges pee pain almost constant , often increases night time pee almost always foul smell', 'frequently getting sudden strong urges pee blood pee sometimes foul smelling think infection ,', 'get blood pee sometimes sometimes get nauseous whie peeing also bad smell pee sometimes get high temperatures nights , help', 'pain lower abdomen , get buring sensation pee also getting low temperatures since started get symptoms weak', 'blood urine low fever head hurts almost time get strong uncontrollable urges pee pain lower back also', 'low temperatures bloody pee since days head hurts like crazy pee also smells foul almost control peeing get sudden urges', 'pain near pelvic region vomit lot sometimes blood pee almost foul smell urine sometimes get headches trouble sleeping due', 'constantly go bathroom relieve , cant seem empty bladder get strong uncontrollable urges pee sometimes get dark bloody pee', 'low temperatues foul smelling pee area near kidneys hurt lot cant seem hold pee often get uncontrollable urges', 'go bathroom time , urine output low often drops stomach hurts lot cant seem able control urges pee', 'pee dark often bloody often unfathomable smell temperature fluctuations pretty frequently often able sleep night', 'pain bladder getting', 'urinating blood occasionally feel queasy urinating frequently almost fever time', 'pee strong , unpleasant scent hazy appearance since symptoms started appearing , regularly feel desire urinate night experiencing high temperatures', 'stomach hurts , frequently acquire temperature experience sudden , intense cravings urinate discomfort virtually always frequently gets worse night pee nearly always smells bad', 'experiencing frequent , intense , abrupt cravings urinate sometimes get blood pee , smells awful believe infection', 'occasionally urinate blood occasionally feel queasy help also occasionally get high temps night terrible odour coming pee', 'lower abdominal ache bursting sensation urinate since began experience additional symptoms , also experiencing low body temperatures weak result', 'mild temperature blood pee head hurts almost constantly , frequently experience severe , involuntary desires urinate additionally , experiencing lower back ache', 'since days ago , experiencing low temperatures bloody urination head excruciating pain , urine smells awful hardly control urinate , impulses come suddenly', 'frequently vomit get discomfort pelvic area urine occasionally smells almost unbearably bad , occasionally blood headaches times , problems falling asleep', 'use restroom frequently relieve , seem get bladder empty occasionally get severe , uncontrolled desires urinate , well black crimson urine', 'experiencing really low moods bad urine odour seem keep urine back , area near kidneys hurts lot frequently experience irrational cravings', 'use restroom frequently , yet drops pee usually produced stomach aches lot , seem control desire urinate', 'urine frequently black , red , really strange odour experiencing temperature changes regularly , usually prevents sleeping night', 'blood found urination sometimes nausea urinating regularly feel like almost feverish', 'pee smells strongly cloudy appearance high temperatures regular urge urinate night since symptoms first materialised', 'frequent , strong , sudden urges urinate occasionally urinate blood , stench horrible ought think infected', 'rare occasions , pee blood mild nausea help also occasionally experience high nighttime temperatures dreadful urine odour', 'lower abdomen hurts , urinate , feels like exploding low body temps ever since started new symptoms , weak', 'blood pee , low body temperature practically continual headaches often strong , uncontrollable need urinate addition , started lower back pain', 'low temps bloody urine past four days pee smells terrible , head hurts like hell scarcely control urinate , urges strike without warning', 'regularly vomit get pelvic pain occasionally blood pee , occasionally absolutely intolerable odour occasionally trouble falling asleep migraines', 'need relieve regularly , seem get bladder empty sometimes , get intense , uncontrollable urges urinate , along dark red urine', 'spirits incredibly low , pee smells awful kidney region hurts lot , seem hold urine get unreasonable urges time', 'go bathroom lot , generally drops urine come severe stomach pains overwhelming want urinate', 'urine often weird odour , crimson black colour , body temperature fluctuating often , typically keeps night', 'noticed blood urinating occasionally feel sick urinating frequently feel though fever', 'pee strong odour hazy look since symptoms started , high temperatures frequent nighttime urges urinate', 'occasionally urinate blood feel little queasy help also occasionally get horrible pee odours excessive overnight temps', 'lower abdomen aches , feels like may explode urinate since began experiencing new symptoms , body temperature consistently low weak', 'last four days , experienced low temperatures blood pee head hurts much urine smells awful desires urinate seldom come cue , hardly ever control', 'pee frequently odd smell either red black , frequent changes body temperature usually keep awake night', 'pee smells strongly seems cloudy fevers frequent overnight urination needs ever since symptoms began', 'low temps blood urine past three days pee smells terrible , head hurts much urinary urges seldom occur cue , almost never control', 'runny nose sneezing time eyes itchy often watery , coughing time head hurts time', 'sore throat sneezing time sometimes swelling face like lips near eyes cant stop sneezing start sneezing', 'hace difficulty breething shortness breath cough uncontrollably get itchy eyes swelling face body parts', 'nasal congestion blocked nose sometimes night chest pain tightness also lost sense smell taste', 'asthma like symptoms like wheezing difficulty breathing often get fever headaches feel tired time', 'feel tired time , lost taste really sore throat also get feverish often muscle aches sometimes whole body cramps', 'experiencing loss appetite difficulty swallowing food suffering sore throat runnny nose also', 'feel fatigued time , tingling sensation throat also developed flaky skin sometimes get puffy eyes sometimes puffs', 'stomach cramps , nausea diarrhea throat swollen , difficulty breathing sometimes night night get chest pain nauseous', 'itchy red skin sometimes result flaking face lips puff causes lot inconvinience get watery eyes sometimes headches puffing gets severe', 'often sneeze runny nose eyes scratchy frequently runny , frequently cough head hurts constantly', 'often sneeze sore throat lips area around eyes occasionally swell start sneezing , stop', 'trouble breathing get short breath dry , hacking cough , itchy eyes , swelling face body', 'plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability taste smell', 'get symptoms asthma , wheezing breathing problems frequently headaches fever time , feel exhausted', 'always feel exhausted , bad taste , extremely scratchy throat also muscular pain heat entire body simply cramps occasionally', 'losing appetite , also trouble swallowing nose running , sore throat', 'always worn experiencing tingle throat also started dry skin eyes occasionally swell', 'feel queasy , nauseous , dizzy swelling throat breathing issues occasionally chest discomfort nausea night', 'skin red scratchy occasionally flake cheeks lips swell , really annoying occasionally headaches runny eyes puffing', 'frequently sneeze , nose runs constantly cough , eyes sore watery head hurts time', 'sore throat frequently sneeze sometimes skin around eyes lips swells stop sneezing get going', 'respiratory issues experience breathlessness face torso swollen , eyes itching , dry , hacking cough', 'nasal congestion blocked nose occasion , night , stiffness chest pain additionally , lost senses taste smell', 'get breathing issues wheezing , asthma symptoms regularly fevers headaches constantly feel worn', 'always feel worn , unpleasant taste mouth , really itchy throat muscles also hot hurting sometimes whole body cramps', 'along losing appetite , swallowing issues sore throat , nose running', 'always feel exhausted tickle throat skin also started feel dry occasionally get ocular swelling', 'dizzy , nauseated , shaky trouble breathing since throat swollen occasion , throughout night , chest hurts feel sick', 'skin irritated inflamed sometimes , flake lips cheeks expand , really unpleasant puffing , occasionally headaches wet eyes', 'nose runs sneeze lot eyes wet hurt , cough time head aches constantly', 'sneeze lot sore throat lips skin surrounding eyes occasionally swell start , stop sneezing', 'breathing problems become breath easily eyes ache , dry , hacking cough , face body bloated', 'plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability smell taste', 'get wheezing breathing difficulties , asthma symptoms frequently headaches fever continuously exhausted', 'always feel exhausted , bad taste mouth , throat itches lot also heated painful muscles entire body cramp times', 'losing appetite trouble swallowing nose running , sore throat', 'always get tickle throat feel fatigued skin begun feel dry well ocular edema occasion', 'feel queasy , sick , wobbly throat enlarged making difficult breathe chest occasionally pains night , occasionally feel ill', 'skin swollen itchy may occasionally flake hurts lot cheeks lips swell occasionally get headaches watery eyes puffing', 'sneeze lot nose running eyes ache damp , frequently croak head hurts time', 'sore throat lot sneezing times skin around eyes lips swell find start , stop', 'trouble breathing easily get breath face torso swollen , eyes hurt , dry , hacking cough', 'nasal congestion blocked nose occasion , night , stiffness chest pain also lost senses taste smell', 'get breathing issues wheezing , asthma symptoms regularly fevers headaches always worn', 'frequently exhaustion , terrible taste mouth , throat itchiness muscles also burning uncomfortable sometimes cramps throughout body', 'appetite decreased , swallowing issues sore throat , nose running', 'throat always tickles , worn additionally , skin started feel dry ocular inflammation occasionally affects', 'nauseous , ill , shaky huge throat , makes tough breathe occasionally nighttime chest aches occasional sickness', 'skin itching swollen sometimes , could flake lips cheeks swelling aches lot puffing occasionally gives headaches runny eyes', 'often get aburning sensation throat especially eating sometimes also leaves sour bitter taste mouth get nauseos beacuse', 'heartburn indigestion often vomit whatever eat difficultly swallowing food , beacuse food gets stuck throat nagging pain upper abdomen', 'frequent belching burping chest pain often radiates back neck , jaw arm get feeling tightness pressure chest', 'persistent sour taste mouth , even eaten anything acidic get frequent hiccups feeling lump throat', 'chronic bad breath sour taste mouth , sometimes gets difficult swallow food tingling sensation throat', 'get frequent heartburn indigestion , especially eating spicy foods fatty foods get chest pain gets worse lie bend also often chest pain', 'loss appetite difficulty swallowing often persistent feeling fullness , even eating small meals usually throw get heartburn tingling sensation throat', 'sore throat hoarseness , especially morning chronic nagging pain throat bad breath also frequent belching', 'feeling food acid backing throat chest pain gets worse lie get frequent heartburn indigestion , eating food vomit', 'feel uneasiness eating usually vomit whatever eaten always pain abdomen really bad acid reflux', 'throat frequently feels like burning , especially eating additionally , occasionally get sour bitter aftertaste , causes feel queasy', 'indigestion heartburn frequently vomit everything eat , trouble swallowing food gets caught throat upper abdomen bothering', 'burping belching frequent frequently get chest discomfort spreads back neck , jaw , arm pressure tension chest', 'even anything acidic stomach , constantly sour taste mouth frequently hiccups lump throat', 'always foul breath sour taste mouth , occasionally , tingling throat makes difficult swallow meals', 'frequently heartburn indigestion , particularly consuming spicy fatty foods lie stoop , chest discomfort worsens chest hurts quite bit', 'feel like eating , swallowing challenging even eating little meals , frequently get lingering sense fullness typically , heartburn , nausea , tingling throat', 'often wake sore throat scratchy voice throat hurts constantly , also poor breath also frequently burp', 'feel though acid food backing throat chest hurts , lying makes worse eating , frequently heartburn indigestion throw', 'eating , get queasy frequently throw everything eaten always get severe abdominal ache terrible acid reflux', 'especially eating , throat regularly feels like burning also occasionally get bitter sour aftertaste , makes feel sick', 'heartburn indigestion regularly vomit everything eat , food gets stuck throat , making difficult swallow pain upper abdomen', 'belching burping common often get chest pain radiates back neck , jaw , arm chest , pressure stress', 'get sour taste mouth time , even nothing acidic stomach often get hiccups lump throat', 'periodically find challenging swallow food due tingling throat , bad breath , bad taste mouth', 'regularly indigestion heartburn , especially eating spicy fatty foods chest pain worse hunch lie additionally , chest hurts lot', 'mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling', 'frequently get scratchy voice painful throat wake bad breath continual sore throat also vomit lot', 'throat feels though food acid backing lying makes chest pain regularly heartburn indigestion eating puke', 'often feel sick eating puke entire meal constantly get excruciating acid reflux severe stomach pain', 'throat often feels like burning , especially eating bitter sour aftertaste occasionally experience also makes feel unwell', 'indigestion heartburn frequently vomit everything eat , hard swallow since food gets caught throat upper abdomen discomfort', 'tendency belch burp frequently frequently get chest pain spreads arm , jaw , back neck pressure stress chest', 'even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups', 'periodically , tingling throat , poor breath , bad taste mouth make difficult swallow meals', 'routinely experience heartburn indigestion , particularly consuming spicy fatty foods lean forward lie , chest discomfort becomes worse chest hurts lot well', 'feel like eating , swallowing challenging even little meals , frequently get lingering sensation fullness normal symptoms include nausea , heartburn , tingling throat', 'regularly wake scratchy voice sore throat throat constantly irritated , horrible breath frequently throw', 'feels like food acid backing throat chest discomfort becomes worse lying eating , frequently heartburn indigestion throw', 'eating , frequently feel unwell throw entire meal suffer painful acid reflux excruciating stomach discomfort time', 'especially eating , throat frequently feels scorching occasionally get bitter sour aftertaste makes feel sick', 'heartburn indigestion regularly throw everything eat , swallowing difficult since food gets stuck throat experiencing pain upper abdomen', 'tendency burp belch regularly often get chest discomfort radiates arm , jaw , neck chest feels tight stressed', 'always get sour taste mouth , even anything acidic stomach regularly hiccups knot throat', 'occasionally trouble swallowing food tingling throat , terrible breath , bad taste mouth', 'frequently indigestion heartburn , especially eating spicy fatty foods chest hurts lean forward lying additionally , chest hurts lot', 'regularly feel sick eating puke entire meal constantly get horrible acid reflux agony stomach discomfort', 'throat often feels like fire , especially eating occasionally get aftertaste sour bitter makes feel nauseous', 'even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups', 'mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling', 'metallic taste mouth , also sense change taste smell sometimes get unbearable joint pain muscle pain', 'headaches migraines , difficulty sleeping muscle twitching tremors sometimes get lightheaded', 'fever feel dizzy lightheaded heart beating fast feel confused able think clearing everything feels foggy', 'rashes skin flake time time leaves prone infection fingers start twitching sometimes experience tremors', 'feel nauseous chest pain recently experiencing chest pain feel uneasy often sweat profusely', 'itching body , rashes chest back get flaky skin time time often leaves marks body', 'hair loss significant change texture hair dry itchy sclap increased dandruff skin also getting dry', 'experiencing decrease sex drive difficulty fucntion sexually feel light headed confused often experince brain fog', 'experiencing changes menstrual cycle unexpected vaginal discharge often get mood swings feel agitated time time', 'experinenced significant weight gain become obese changes appetite cravings different foods', 'difficulty maintianing concentration low mental clarity often forget things general difficulty remembering things', 'addition experiencing change taste fragrance , also metallic aftertaste tongue occasionally get excruciating joint muscular pain', 'suffer migraines headaches , trouble falling asleep muscles trembling twitching sometimes feel dizzy', 'feeling really lightheaded dizzy temperature mind completely muddled , heart racing find difficult think clearly , everything seems quite hazy', 'skin occasionally peels rashes makes vulnerable infections hands begin shake , occasionally tremors', 'severe nausea chest discomfort chest discomfort lately often shiver lot feel really nervous', 'rashes chest back itch body occasionally flaky skin , frequently creates markings body', 'hair texture significantly changed , experiencing hair loss scalp dry itching , dandruff becoming worse skin also becoming really dry', 'sex desire decreased , finding harder function sexually regularly brain fog feel quite dizzy disoriented', 'monthly cycle changed , unexpected vaginal discharge frequently experience mood swings experience occasional agitation', 'gained lot weight quite fat appetite varies , desires various things', 'struggle maintain focus , mental clarity really poor trouble remembering things frequently forget stuff', 'tongue also metallic aftertaste addition change taste scent occasionally get acute muscle joint ache', 'headaches migraines , difficulties sleeping entire body shaking twitching sometimes become lightheaded', 'fever , feel quite woozy lightheaded heart pounding , head absolutely foggy ability think properly impaired , everything appears somewhat blurry', 'rashes occasionally cause skin peel susceptible illnesses result start tremble sometimes , hands start shake', 'chest pain extreme nausea present recently , chest hurting frequently shiver lot really anxious', 'body itches , rashes back chest skin flaky sometimes , commonly results body marks', 'losing hair , hair texture considerably altered dandruff becoming worse , dry , itchy scalp skin getting quite dry well', 'desire sex dropped , trouble sex frequently get brain fog , well feeling somewhat bewildered', 'noticed difference monthly cycle unexpected vaginal discharge become irritable every , moods swing lot', 'put lot weight obese different urges different appetites', 'terrible mental clarity find difficult stay focused regularly forget things problems remembering things', 'along change taste smell , tongue also metallic aftertaste occasionally get severe joint muscular pain', 'suffer migraines headaches , trouble falling asleep whole body trembling shivering times , dizziness', 'quite queasy dizzy temperature brain completely cloudy , heart racing trouble thinking straight , everything seems little fuzzy', 'sometimes skin starts flake rashes prone becoming sick result occasion , hands begin quiver begin tremble', 'severe nausea chest discomfort chest aching lately really nervous shiver lot time', 'rashes back chest , entire body itches skin may dry flaky times , frequently leaves body marks', 'shedding hair , texture hair changed significantly dry , itchy scalp dandruff becoming worse skin also becoming pretty dry', 'longer want sex , difficult regularly brain fog sense confusion', 'monthly cycle changed , unexpected vaginal discharge occasionally lose temper , moods change lot', 'gained lot weight currently quite fat many inclinations cravings', 'awful mental clarity trouble focusing frequently forget things struggle memory', 'tongue also changes taste scent , leaving metallic aftertaste excruciating joint muscle pain', 'headaches migraines , difficulties sleeping shaking shivering sometimes become lightheaded', 'temperature , feel pretty nauseous lightheaded heart pounding , mind absolutely foggy everything feels little hazy , difficulties thinking clearly', 'rashes occasionally cause skin start fall likely get ill result hands occasionally start tremble , start shake', 'chest pain severe nausea present recently , chest hurting tremble lot quite anxious', 'entire body itches , rashes back chest sometimes skin might dry flaky , often results body stains', 'burning sensation upper abdomen , ofetn night heartburn indigestion often feel nauseous', 'bloating feeling uneasiness experiencing weight loss loss appetite sometimes dark tarry stools blood vomit', 'difficulty swallowing food often get sensation food getting stuck throat constant belching bloating persitent sour taste mouth', 'bloody stools resulted bloos loss loss iron thiis caused anemia feel weak general', 'persistant , gnawing hunger apetite sometimes get abdominal cramps spasms bloating gas eating causes great deal uneasiness', 'changes bowel movements , constipation diarrhea loss appetite energy often feel fatigued', 'abdominal pain gets worse bend lie feel discomfort eat certain foods spicy acidic food sometimes get loose stools', 'difficulty sleeping due abdominal pain discomfort loss appetite feel fatigued going bathroom feel tited time', 'sour acidic taste mouth frequent belching burping feeling pressure fullness upper abdomen last hours', 'unintended weight loss difficulty gaining weight pain discomfort relieved taking antacids mouth tastes bad', 'occasionally throughout day night , burning upper abdomen get indigestion , heartburn , frequent bouts extreme nausea', 'bloating unease present losing weight losing interest food occasionally get tarry , black stools vomit contains blood', 'trouble swallowing , frequently feel like food getting stuck throat feel bloated belch constantly always get sour taste mouth', 'bloody stools caused lose iron bloos , among things anaemia , generally feel quite weak', 'hunger appetite persistent ravenous periodically , stomach may cramp spasm eating , bloating gas , makes quite uncomfortable', 'bowel motions changed constipated diarrhoeal lack energy , appetite , frequently feel really exhausted', 'stomach ache , bending lying makes worse consume certain meals , spicy acidic cuisine , discomfort sometimes causes loose stools', 'trouble falling staying asleep stomach ache using restroom , feel drained lose appetite constantly feel really anxious', 'mouth filled sour , acidic flavour burping belching frequent hours , get pressure fullness upper belly', 'lose weight unintentionally find challenging acquire weight use antacids ease pain discomfort experience mouth feels horrible', 'occasionally burning upper abdomen throughout day night get heartburn , indigestion , regular episodes severe nausea', 'feel bloated uneasy time losing weight , longer like eating occasionally get bloody vomit dark , tarry stools', 'often feel like food getting caught throat problems swallowing feel bloated frequently belch constantly bitter aftertaste', 'lost lot stuff bloody stools , including iron bloos , anaemia usually feel fairly weak', 'appetite chronic hunger ferocious stomach may occasionally ache spasm gas bloating eating , really painful', 'bowel movements become constipated diarrheal often feel quite tired lack energy appetite', 'bending reclining makes stomach feel pain eating foods , hot acidic food occasionally get loose stools result', 'due stomach discomfort , problems sleeping staying asleep exhausted using bathroom lose appetite quite nervous time', 'sour , acidic taste mouth belching burping common pressure fullness upper abdomen hours', 'unknowingly lose weight find difficult gain weight relieve pain discomfort feel , take antacids mouth hurts much', 'occasion , throughout day night , burning upper abdomen frequently get extreme nauseous episodes , heartburn , indigestion', 'bloating unease longer like eating losing weight sometimes vomit blood tarry , black stools', 'frequently get swallowing issues sensation food getting stuck throat regularly belch feel bloated aftertaste unpleasant time', 'bloody stools caused lose lot things , including iron bloos anaemia result , typically feel rather weak', 'appetite ongoing hunger fierce times stomach hurts cramps following meal , painful gas bloating', 'constipated diarrheal bowel motions happening frequently lack energy appetite', 'stomach feels worse stoop recline eating particular meals , spicy acidic cuisine , discomfort occasionally causes loose stools', 'stomach ache keeps falling staying asleep using restroom , feel worn lose interest food constantly pretty anxious', 'mouth filled acidic , sour flavour burping belching frequent hours , upper abdomen felt pressured full', 'inadvertently lose weight hard time gaining back use antacids get rid pain discomfort experience aches much mouth', 'occasionally burning upper abdomen throughout day night regularly get severe heartburn , indigestion , nausea', 'feeling bloated uneasy losing weight , longer like eating occasionally get tarry , black stools blood vomit', 'regularly trouble swallowing , sometimes feel like food becoming trapped throat frequently feel bloated belch every time , bad aftertaste', 'lost lot stuff bloody stools , including iron bloos result , anaemia generally feel rather weak', 'strong appetite constantly hungry stomach occasionally aches cramps really painful gas bloating eating', 'experiencing bowel movements constipated diarrhoeic often lack eat energy', 'hunch lie stomach hurt pain eating certain foods , hot acidic food occasionally get loose stools result', 'get sleep remain asleep stomach pain get exhausted using bathroom stop hungry worry lot time', 'mouth filled sour , acidic flavour frequent belching burping upper abdomen felt pressed full past hours', 'unintentionally lose weight find challenging gain back relieve pain discomfort feel , take antacids mouth hurts severely right', 'increased thirst frequent urination often dry mouth throat recently increased hunger appetite', 'blurred vision seems getting worse feel fatigued tired time also feel dizzy light headed times', 'dry mouth throat also experiencing increased appetite hunger however feel tired times', 'slow healing wounds cuts tingling sensation hand numbness hands feet', 'mood changes difficulty concentrating mind feels hazy foggy times gets difficult even regular chores', 'feeling tremors muscle twitching decreased sense smell taste feel fatigued sometimes feeling rapid hearbeat palipatations', 'rashes skin irritations especially folds skin also slow healing cuts bruises skin', 'frequent need urinate often uncontrollable urges feel dizzy often confused also loss visuals', 'difficulty breathing especially physical activity unusual sweating flushing frequently get yeast infections', 'persistent dry cough infections dont seem healing palpitations also problem sore throat seem go away', 'drinking water urinating frequently throat mouth frequently dry recently , appetite hunger grown', 'vision foggy , seems growing worse constantly feeling worn exhausted additionally , occasionally severe lightheadedness dizziness', 'throat mouth dry also feeling hungry hungry sometimes feel quite exhausted', 'sluggish wound reduced healing rate hands feet numb tingling sensation', 'struggle focus emotional swings times , head seems cloudy foggy , making challenging even simple tasks', 'feel muscles trembling shaking feel worn senses taste smell diminished sometimes palpitations quick heartbeat', 'experience skin irritations rashes , especially skin creases wounds bruises skin also heal quite slowly', 'frequently feel want urinate frequently strong cravings frequently feel woozy bewildered also sight loss', 'trouble breathing , especially exercising flushed sweating unexpected way yeast infections lot', 'chronic dry cough palpitations infections appear getting better also painful throat issue , although seem go away', 'water intake frequency urination increased mouth throat regularly feel dry appetite hunger increased recently', 'blurry vision , seems getting worse continuously fatigued worn also occasionally acute lightheadedness vertigo', 'mouth throat dry additionally , growing increasingly hungry occasion , feel rather worn', 'wound healing slowly slower rate hands feet numb tingling time', 'trouble focusing , emotions fluctuate brain might seem murky foggy times , making difficult complete even straightforward chores', 'body shaking trembling senses taste smell gotten weaker , feel exhausted occasionally palpitations rapid pulse', 'rashes skin irritations , especially crevices skin skin bruises cuts also take long time heal', 'often feel want urinate experience intense desires often feel dizzy confused also lost sight', 'respiratory issues , especially unexpectedly , sweating flushed frequently yeast infections urinary tract infections', 'constantly dry cough infections seem healing , palpitations throat hurts occasionally , appear get better', 'drinking water urinating frequently throat mouth frequently feel dry recently , hunger appetite grown', 'vision foggy , appears growing worse feel exhausted worn time also severe dizziness lightheadedness occasion', 'throat mouth dry also getting hungry , however , occasionally feel rather exhausted', 'wound recovering slowly hands feet tingling going numb feel weak', 'emotions change , difficulties focusing times , mind might cloudy hazy , making challenging even simple tasks', 'entire body trembling shaky lost ability taste smell , worn sometimes get racing heart palpitations', 'get skin irritations rashes , especially skin crevices cuts bruises skin also take heal', 'frequently feel want urinate strong cravings get woozy disoriented lot moreover , lost vision considerably', 'breathing problems , especially outside suddenly flushed perspiring experience yeast infections urinary tract infections rather regularly', 'dry cough never stops palpitations infections appear getting better sometimes throat hurts , seems get better', 'water intake frequency urination increased mouth throat feel dry lot hunger appetite increased recently', 'vision blurry , feels like getting worse time , feel worn fatigued occasionally extreme lightheadedness vertigo well', 'mouth throat dry additionally , growing increasingly hungry however , get periodic bouts exhaustion', 'wound healing slowly days feet hands tingling becoming numb feel really fragile', 'emotions fluctuate , hard concentrate mind foggy foggy times , making difficult perform even simple chores', 'shaking trembling lost sense taste smell , exhausted occasionally get palpitations speeding heart', 'particularly crevices skin , skin rashes irritations skin bruises cuts take heal well', 'regularly experience intense urges want urinate frequently feel drowsy lost also significantly lost vision', 'trouble breathing , especially outside start feel hot start sweat frequently urinary tract infections yeast infections', 'constantly sneeze dry cough infections seem healing , palpitations throat ache occasionally , usually gets better']\n" + ] + } + ], + "source": [ + "symptoms_list = data['cleaned_text'].tolist()\n", + "print(symptoms_list)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "53a08f5a-d648-4050-9487-fdeb464f2f7a", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter symptoms to classify: stomach pain , ulcers tongue , vomiting , cough , chest pain\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Input Symptoms: stomach pain , ulcers tongue , vomiting , cough , chest pain -> Predicted Label: GERD\n", + "['stomach pain , ulcers tongue , vomiting , cough , chest pain']\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "# Function to predict new symptoms\n", + "def predict_symptoms(new_symptoms):\n", + " # Ensure new_symptoms is a list\n", + "\n", + " preprocessed_text = preprocess_text(new_symptoms)\n", + "\n", + " if isinstance(preprocessed_text, str):\n", + " new_symptoms = [preprocessed_text]\n", + " \n", + " # Vectorize the new symptoms\n", + " new_symptoms_vectorized = vectorizer.transform(new_symptoms)\n", + "\n", + " \n", + " # Make predictions\n", + " predictions = model.predict(new_symptoms_vectorized)\n", + " \n", + " return predictions,new_symptoms\n", + "\n", + "# Get user input\n", + "user_input = input(\"Enter symptoms to classify: \")\n", + "\n", + "# Make a prediction\n", + "predictions,new_symptoms = predict_symptoms(user_input)\n", + "\n", + "print(f\"Input Symptoms: {user_input} -> Predicted Label: {predictions[0]}\")\n", + "print(new_symptoms)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1d6c180a-30a9-4a44-a50f-b38cb90a406a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "697a4928-44ec-4ec9-9975-6caa5bdf5219", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "50" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data['label'].nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a4189b0f-a7fb-4eba-bdd3-9d102b0915bb", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86196dc1-32cf-44ae-93d0-9cd431e90c2b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "da12cf2d-1413-4dda-a8c2-af4d11c5262a", + "metadata": {}, + "outputs": [], + "source": [ + "." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/LLMs/Symptom2Disease.csv b/LLMs/Symptom2Disease.csv new file mode 100644 index 0000000000000000000000000000000000000000..474d1bf691d44fcec72cfdf4205af982a8edf3b2 --- /dev/null +++ b/LLMs/Symptom2Disease.csv @@ -0,0 +1,1201 @@ +,label,text +0,Psoriasis,"I have been experiencing a skin rash on my arms, legs, and torso for the past few weeks. It is red, itchy, and covered in dry, scaly patches." +1,Psoriasis,"My skin has been peeling, especially on my knees, elbows, and scalp. This peeling is often accompanied by a burning or stinging sensation." +2,Psoriasis,"I have been experiencing joint pain in my fingers, wrists, and knees. The pain is often achy and throbbing, and it gets worse when I move my joints." +3,Psoriasis,"There is a silver like dusting on my skin, especially on my lower back and scalp. This dusting is made up of small scales that flake off easily when I scratch them." +4,Psoriasis,"My nails have small dents or pits in them, and they often feel inflammatory and tender to the touch. Even there are minor rashes on my arms." +5,Psoriasis,The skin on my palms and soles is thickened and has deep cracks. These cracks are painful and bleed easily. +6,Psoriasis,"The skin around my mouth, nose, and eyes is red and inflamed. It is often itchy and uncomfortable. There is a noticeable inflammation in my nails." +7,Psoriasis,My skin is very sensitive and reacts easily to changes in temperature or humidity. I often have to be careful about what products I use on my skin. +8,Psoriasis,"I have noticed a sudden peeling of skin at different parts of my body, mainly arms, legs and back. Also, I face severe joint pain and skin rashes." +9,Psoriasis,"The skin on my genitals is red and inflamed. It is often itchy, burning, and uncomfortable. There are rashes on different parts of the body too." +10,Psoriasis,"I have experienced fatigue and a general feeling of malaise. I often feel tired and have a lack of energy, even after a good night's sleep." +11,Psoriasis,"The rash on my skin has spread to other parts of my body, including my chest and abdomen. It is itchy and uncomfortable, and it is often worse at night. I am also facing skin peeling." +12,Psoriasis,The rash on my skin is worse in the winter months when the air is dry. I find that I have to moisturize more frequently and use humidifiers to keep my skin hydrated. +13,Psoriasis,"I have experienced difficulty sleeping due to the itching and discomfort caused by the rash. There are small dents in my nails, which is really concerning." +14,Psoriasis,"My skin is prone to infections due to dry, flaky patches. I am experiencing a strong pain in my joints. The skin on my knees and elbows is starting to peel off." +15,Psoriasis,"I am starting to have rashes on my skin. The rash often bleeds when I scratch or rub it. Moreover, I have noticed small dents in my nails." +16,Psoriasis,"I have noticed that my skin has become more sensitive than it used to be. There is a silver like dusting on my skin, especially on my back and elbows." +17,Psoriasis,"I am worried about the constant peeling of the skin on my palm, elbow and knee. I have developed rashes on my arms, which itch if I touch them. All of these are making my life quite discomforting and miserable." +18,Psoriasis,"There is strange pain in my joints. Also, I have noticed strange peeling of skin in different parts of my body. I am afraid there is something wrong going on with my body." +19,Psoriasis,"My nails have small dents on them. Even my joints have started to pain severely. There is a silver like dusting on my skin, particularly in my back." +20,Psoriasis,"The rashes on my skin are not healing. Moreover, I have noticed a sudden peeling of the skin, especially the skin on my elbows and knees. I am really worried about this." +21,Psoriasis,"For the past few weeks, I've had a skin rash on my arms, legs, and chest. It's red and irritating, with dry, scaly spots. I have a strange pain in my joints too." +22,Psoriasis,"My skin is peeling, particularly on my knees, elbows, and scalp. This peeling is frequently accompanied by a stinging or burning feeling." +23,Psoriasis,"I'm having joint discomfort in my fingers, wrists, and knees. The pain is frequently aching and throbbing, and it worsens when I move my joints." +24,Psoriasis,"My skin has a silvery film, particularly on my back, arms and scalp. This dusting is composed of tiny scales that easily peel off when scratched." +25,Psoriasis,"I have red and inflammatory skin around my mouth, nose, and eyes. It is frequently irritating and unpleasant. Recently, it has got very painful." +26,Psoriasis,My skin is extremely sensitive and quickly irritated by changes in temperature or humidity. My nails have developed dents on them. I am worried about this sudden change. +27,Psoriasis,"I've seen a sudden peeling of skin on various regions of my body, mostly my arms, legs, and back. In addition, I have significant joint pain and skin rashes. The rash is spreading to different parts of my body." +28,Psoriasis,"My genital skin is red and irritated. It is frequently irritating, burning, and unpleasant. There are also rashes in various places of the body. Also, I have a strange pain in my joints." +29,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. There is a noticeable inflammation in my nails." +30,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in excruciating agony. The skin on my knees and elbows is beginning to flake." +31,Psoriasis,"My skin is breaking out in rashes. When I scratch or rub the rash, it frequently bleeds. In addition, I've observed little dents in my nails. There is a noticeable inflammation in my nails." +32,Psoriasis,"I've observed that my skin is more sensitive now than it used to be. My skin has a silvery film, especially on my back and elbows." +33,Psoriasis,"My palms and soles have grown and developed severe fissures. These cracks are unpleasant and frequently bleed. Also, the skin is starting to peel off." +34,Psoriasis,"My nails are starting to have small pits on them. I am worried and don't know what is causing it. Also, my joints pain and there are rashes on my arms and back." +35,Psoriasis,"There is a silver like dusting on my skin. Moreover, the skin on my arms and back are starting to peel off. This is strange and really concerning me." +36,Psoriasis,"My skin rash has extended to other areas of my body, including my chest and belly. It is irritating and unpleasant, and it is frequently worst at night. I'm also experiencing skin flaking." +37,Psoriasis,"My skin rash gets worse in the winter when the air is dry. To keep my skin moisturized, I have to moisturize more regularly and use humidifiers. I am also facing joint pain." +38,Psoriasis,I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents. I am also experiencing skin peeling in different parts of my body. +39,Psoriasis,"My skin is peeling in places, especially on my knees, elbows, and arms. This peeling is often accompanied by a painful or burning sensation. I am also developing small dents on my nails, which is really concerning." +40,Psoriasis,"My skin has a silvery layer over it, especially on my back and arms. This dusting is made up of small scales that peel off readily when rubbed. Also, there are rashes all over my body." +41,Psoriasis,"My arms, face and back are all red and irritated. It is frequently irritating and unpleasant. My nails have a strange inflammation and have developed small dents. I have never seen anything like this." +42,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. Moreover, my joints pain everyday and I have no idea what is causing it." +43,Psoriasis,My fingers and soles have pretty thick skin that is cracked severely. These fractures hurt and bleed frequently. The fractures are itchy and covered with scales. +44,Psoriasis,"My skin has changed from being less sensitive to being more sensitive. My skin has a silvery coating, especially on my back, elbows and knees." +45,Psoriasis,"My nails are slightly dented. Even my joints are now experiencing excruciating discomfort. My skin has a silver-like powder, especially on my back and elbows. " +46,Psoriasis,"I've had trouble falling asleep because of the rash's pain and itching. The skin on my fingers are starting to peel off. My nails have a few tiny cracks, which is really worrying. " +47,Psoriasis,"My joints are experiencing an unusual discomfort. Additionally, I've experienced weird skin peeling in various places on my body. I'm concerned that something is wrong with my body. " +48,Psoriasis,"I am starting to have rashes on my arms and neck. The rash often bleeds and hurts when I scratch it. I have also developed small dents in my nails, which is very strange." +49,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in extreme pain . My knees and elbows' skin are starting to peel off." +50,Varicose Veins,"I have a rash on my legs that is causing a lot of discomforts. It seems there is a cramp and I can see prominent veins on the calf. Also, I have been feeling very tired and fatigued in the past couple of days." +51,Varicose Veins,"My calves have been cramping up when I walk or stand for long periods of time. There are bruise marks on my calves, which is making me worried. I feel tired very soon." +52,Varicose Veins,"There is bruising on my legs that I cannot explain. I can see strange blood vessels below the skin. Also, I am slightly obese and I am really worried." +53,Varicose Veins,I am overweight and have noticed that my legs are swollen and the blood vessels are visible. My legs have swollen and I can see a stream of swollen veins on my calves. +54,Varicose Veins,"The veins on my calves have become very prominent and causing discomfort. I can't stand for long periods of time, as it causes pain in my legs, similar to cramps." +55,Varicose Veins,The skin around the veins on my legs is red and inflamed. I believe I can see some of the swollen blood vessels. I am really worried about it. +56,Varicose Veins,Standing or walking for long periods of time causes a lot of pain in my legs. I get cramps upon doing physical activities. There are bruise marks on my legs too. +57,Varicose Veins,The cramps in my calves are making it difficult for me to walk. I feel fatigued after working for some time. I believe obesity is the reason behind this. +58,Varicose Veins,"The swelling in my legs has gotten worse over the past few weeks. Now, a large number of veins are noticeable on my calves, which is making me worried." +59,Varicose Veins,The veins on my legs are very noticeable and cause me discomfort. It seems like there is a major bruise and I get cramps when I run. +60,Varicose Veins,The skin on my calves has become inflamed and red. My legs hurt if I try to run or do any physical activities. +61,Varicose Veins,"Recently, the pain in my calves has been constant and becomes worse when I stand or walk for long periods of time. My legs have started to swell and also some blood vessels are quite noticeable." +62,Varicose Veins,The veins in my legs are causing discomfort and difficulty sleeping at night. I have no idea why it is happening. I get cramps when I sprint. +63,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes. I can't sprint or stand for long periods of time. I can see some swollen blood vessels. +64,Varicose Veins,I have noticed cramps in my calves are becoming more frequent and intense. It is causing me a lot of discomforts. I am also overweight and my legs have started to swell. +65,Varicose Veins,The veins on my legs cause a lot of discomforts when I sit for long periods of time. +66,Varicose Veins,The rash on my legs is spreading and becoming more severe. It has become very difficult for me to run. +67,Varicose Veins,My legs are causing a lot of discomforts when I exercise. I get frequent cramps and the blood vessels have become quite noticeable. +68,Varicose Veins,The prominent blood vessels on my calves are causing self-consciousness and embarrassment. I believe the problem is because of my overweight. +69,Varicose Veins,The skin around the veins on my legs is dry and flaky. It seems there is a major bruise and my legs have started to swell. +70,Varicose Veins,I have been experiencing a rash on my legs that is causing a lot of irritation and discomfort. It is red and inflamed and appears to be spreading. +71,Varicose Veins,"Recently, my calves have been cramping up frequently, especially when I am walking or standing for long periods of time. Also, the veins are very noticeable." +72,Varicose Veins,I have noticed that there are bruises on my legs that I cannot explain. They are not painful but are concerning to me. +73,Varicose Veins,"As I am overweight, I have noticed that my legs are swollen and the blood vessels are more visible than usual. The swelling seems to be getting worse over time." +74,Varicose Veins,The veins on my calves are very prominent and are causing me a lot of discomforts. They are swollen and protrude from my skin. +75,Varicose Veins,"The skin around the veins on my legs is red, inflamed, and itchy. It is causing a lot of discomforts and I am starting to get regular cramps." +76,Varicose Veins,Standing or walking for long periods of time has been causing a lot of pain in my legs. It feels like a cramp and becomes worse the longer I am on my feet. +77,Varicose Veins,The cramps in my calves have been making it difficult for me to walk and do my daily activities. They come on suddenly and last for several minutes. +78,Varicose Veins,The swelling in my legs has gotten worse over the past few weeks and is causing me difficulty fitting into my shoes. It is also causing discomfort when I sit for long periods of time. +79,Varicose Veins,"The veins on my legs are very noticeable and are causing me a lot of discomforts. They are swollen and protrude from my skin, making them visible through my clothing." +80,Varicose Veins,"The skin on my calves is itchy and inflamed, causing a lot of discomfort and difficulty sleeping at night. The blood vessels have started to protrude out, which is concerning." +81,Varicose Veins,The pain in my calves is constant and becomes worse when I stand or walk for long periods of time. I am getting constant cramps and can't run for longer periods of time. +82,Varicose Veins,"The veins in my legs are causing discomfort and difficulty sleeping at night. They are swollen and protruding from my skin, making them noticeable and painful." +83,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes and is causing discomfort when I sit for long periods of time. +84,Varicose Veins,"The cramps in my calves are becoming more frequent and intense, making it difficult for me to walk and do my daily activities." +85,Varicose Veins,"The veins on my legs are causing a lot of discomforts when I sit for long periods of time. They are swollen and protruding from my skin, making them painful and noticeable." +86,Varicose Veins,"The rash on my legs is spreading and becoming more severe. It is red, inflamed, and itchy, causing a lot of discomfort and difficulty sleeping at night." +87,Varicose Veins,"My legs have been causing a lot of discomforts when I exercise. They feel heavy and swollen, and the veins are prominent and painful. I feel fatigued all the time." +88,Varicose Veins,"The prominent veins on my calves are causing self-consciousness and embarrassment. They are swollen and protrude from my skin, making them very noticeable." +89,Varicose Veins,"The skin around the veins on my legs is dry and flaky, causing discomfort and irritation. I am also starting to get frequent cramps." +90,Varicose Veins,"I have a rash on my legs that is giving me a lot of pain. There appears to be a cramp, and I can see visible veins on the calf." +91,Varicose Veins,My veins of legs have become more visible and swollen than normal. They are visible through my skin and it hurts when I move. +92,Varicose Veins,"Walking is tough for me because of cramps in my calves. Obesity, I believe, is the cause of this. After a while of working, I'm exhausted." +93,Varicose Veins,The blood vessels on my legs are quite visible and give me a lot of pain. They're large and protrude from my skin. It is unusual and I am worried about it. +94,Varicose Veins,"I have noticed that the blood vessels in my legs are getting more noticeable than usual. It is a little concerning to me. Moreover, I am experiencing cramps every day." +95,Varicose Veins,My legs' swelling has become worse over the last couple of days. I can see the blood vessels protruding out of the skin. This is quite unusual. +96,Varicose Veins,Long durations of standing or walking have caused severe discomfort in my legs. It's a burning ache that gets worse the longer I'm on my feet. +97,Varicose Veins,"My legs' skin around the veins is unusual. There appears to be a large bruise. Nowadays, I get frequent cramps when I sprint or run." +98,Varicose Veins,"I am experiencing too many cramps in the last couple of days. I think something is not right. I believe there is a small bruise on my calves, but I am not sure about it." +99,Varicose Veins,"The veins in my calves are protruding out quite unusually. I am worried about it. Also, I am overweight and I believe this is the reason behind all of this." +100,Typhoid,"I have constipation and belly pain, and it's been really uncomfortable. The belly pain has been getting worse and is starting to affect my daily life. Moreover, I get chills every night, followed by a mild fever." +101,Typhoid,"I've also had some diarrhea, which has been really unpleasant. It's been coming and going, and it's been accompanied by abdominal cramps and bloating." +102,Typhoid,"I have been experiencing chills and fever, along with severe abdominal pain. I've been feeling really miserable overall, and I just can't seem to shake these symptoms." +103,Typhoid,I've been having a lot of trouble keeping hydrated because of the vomiting and diarrhea. There is a mild fever along with constipation and headache. +104,Typhoid,"I've lost a lot of weight in the past week because I haven't been able to eat much due to nausea and vomiting. This is followed by mild fever, headache and belly pain. I'm really concerned about my health." +105,Typhoid,"The fatigue has been really uncomfortable, and I've had a lot of difficulties doing my usual activities. I've also been feeling really depressed and irritable. There is mild pain in the abdominal part too." +106,Typhoid,"I've had a persistent headache for the past week, and it's been getting worse. It's been accompanied by belly aches, constipation and diarrhea." +107,Typhoid,"I've been experiencing high fever, especially at night. It's been really uncomfortable. There is a mild headache along with constipation and diarrhea." +108,Typhoid,"I've been having a lot of difficulty breathing, and I feel like I'm constantly nauseous. I also have mild belly pain. It's been terrifying at times." +109,Typhoid,"Diarrhea has been really watery and foul-smelling, and it's been accompanied by abdominal pain. I feel like vomiting most of the time." +110,Typhoid,"I've been having a lot of trouble sleeping because of the high fever, headache and chills. I wake up every day having a terrible pain in my belly area." +111,Typhoid,"I've also been experiencing some diarrhea and constipation, which has been really worrying. It feels like a sharp, stabbing pain in my belly area. I feel tired all the time." +112,Typhoid,"I have had some constipation and belly pain, which has been really uncomfortable. The pain has been getting worse and it's really affecting my daily life." +113,Typhoid,"I am experiencing a lot of belly pain and constipation, which has been really annoying. Sometimes, I feel a strong urge to vomit, and because of all of these, I am feeling very weak." +114,Typhoid,"The abdominal pain has been coming and going, and it's been really unpleasant. It's been accompanied by constipation and vomiting. I feel really concerned about my health." +115,Typhoid,"I have been experiencing a lot of bloating and constipation, and it's been really uncomfortable. It feels like there's a lot of pressure and pain in my belly area." +116,Typhoid,"I am experiencing extreme belly pain and constipation. Every night, I have a severe fever along with chills and headaches. The last couple of days has been really uncomfortable." +117,Typhoid,"I've been feeling exhausted and weak, and I can't seem to get rid of it. Because of the vomiting and nausea, I've entirely lost my appetite. My belly pains which are causing me concern." +118,Typhoid,"I am experiencing constipation and stomach ache, which has been really difficult. The discomfort has gotten worse, and it is seriously interfering with my everyday life." +119,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. I have a high fever, as well as constipation and headache." +120,Typhoid,The abdominal pain has been frequent and really painful. Constipation and vomiting have also occurred. I'm quite worried about my health. +121,Typhoid,"I'm having severe stomach pain and constipation. Every night, I get a headache and chills. The last few days have been really painful." +122,Typhoid,There is a distinct pain in my abdominal part. I am not sure what it is. I am also going through constant vomiting and feel nauseous. +123,Typhoid,"The diarrhea has been quite fluid and smelly, and it has been accompanied by severe abdominal pain and headache. Most of the time, I feel like vomiting." +124,Typhoid,"I have had a fever for the last couple of days. Now, I am starting to experience a severe pain in my stomach area and suffering from constipation." +125,Typhoid,"I am experiencing a lot of nausea and vomiting, and it's been quite difficult for me to eat anything. I've entirely lost my appetite, and as a result, I have become quite weak." +126,Typhoid,"I am having a lot of trouble sleeping because of the high fever and the headache. Moreover, I have constant belly pain, because of which I can't go to work." +127,Typhoid,"I have been feeling really fatigued and weak, and I can't seem to get rid of it. I have a mild fever and a strange pain in my abdominal area. I can't understand what is happening." +128,Typhoid,"I've been suffering from constipation and stomach discomfort, which has been really uncomfortable. Last night, I had a mild fever too." +129,Typhoid,"I've also been suffering from diarrhea, which has been really uncomfortable. It comes and goes, and it's accompanied by stomach aches and vomiting." +130,Typhoid,"I've been experiencing chills, fever, and extreme stomach discomfort. I've been generally unhappy, and I can't seem to get rid of these symptoms." +131,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. There is a mild fever, too, as well as stomach pain." +132,Typhoid,"I have developed diarrhea. It is accompanied by severe pain in my belly area. I don't feel like eating anything, and most of the time, I have a mild headache." +133,Typhoid,"I've had a lot of bloating and constipation, which has been really painful. There is a lot of pressure and pain in my stomach area. I get a high fever and chills every night." +134,Typhoid,"I've had a persistent stomach pain for the past week, and it is not healing even with medication. I feel like vomiting and can't eat anything, and because of which I have become extremely weak." +135,Typhoid,I am having severe stomach discomfort and diarrhoea. I have a high fever along with a headache. The previous several days have been really unpleasant. +136,Typhoid,"I am having a terrible pain in my abdominal part, and I've been feeling really nauseated. I'm also experiencing a mild fever. I am really worried." +137,Typhoid,"I am experiencing constipation and stomach ache. The discomfort has gotten worse, and it is seriously interfering with my everyday life. I feel like I have lost my appetite to eat anything." +138,Typhoid,"Most of the time I feel fatigued. I don't want to eat anything. I get a high fever and chills every night. Moreover, I have been vomiting since yesterday." +139,Typhoid,"I have lost my appetite and have noticed a significant weight loss. I have abdominal pain, especially in the area of my stomach and intestines. I am concerned about my health." +140,Typhoid,The stomach discomfort has been severe and frequent. Vomiting and constipation have also happened. I'm concerned about my health. +141,Typhoid,"I have been experiencing diarrhea and have had loose, watery stools several times a day. I have lost my appetite and feel nauseated all the time. I am starting to get a mild fever too." +142,Typhoid,"I am feeling quite weak. I'm having a lot of stomach discomfort and constipation, which is really bothering me. I have a strong urge to vomit at times, and as a result, I can't eat anything." +143,Typhoid,"There is strange pain in my stomach area. I don't know what the reason behind this is. Moreover, I am starting to get a mild fever along with chills and headaches." +144,Typhoid,"I've had a high fever, particularly at night. It's been quite unpleasant. There is a little headache, as well as constipation and diarrhea. I don't feel like eating anything." +145,Typhoid,"I've been having a lot of trouble staying hydrated because of the vomiting and diarrhea. I have a high fever, constipation, and a headache. I am also starting to get a strange pain in my stomach area and I can't do anything physical." +146,Typhoid,"I have been getting a headache for the past week that has been growing worse. It has been accompanied by stomach pains, constipation, and diarrhea. I don't know what is happening and I am really worried about it." +147,Typhoid,"I've lost a lot of weight in the last week because I couldn't eat much due to nausea and vomiting. This is followed by a high fever, headache, and stomach pain." +148,Typhoid,"I am having some diarrhea and constipation, which has been quite concerning. In my stomach, there is a severe, painful ache. I'm constantly exhausted and don't feel like eating anything." +149,Typhoid,"I've been having diarrhoea and loose, watery stools many times a day. I've lost my appetite and am always sick. I'm also developing a mild fever. Also, my abdominal part pains a lot. I don't know what the reason behind all of these is." +150,Chicken pox,"I've been experiencing intense itching all over my skin, and it's driving me crazy. I also have a rash that's red and inflamed." +151,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself." +152,Chicken pox,"I've had a high fever for the past few days. I don't know what's causing it. Also, I noticed rashes on my skin and it's hard for me to resist scratching." +153,Chicken pox,I've lost my appetite and can't seem to eat anything. I'm worried about my health. +154,Chicken pox,There are small red spots all over my body that I can't explain. It's worrying me. I feel extremely tired and experience a mild fever every night. +155,Chicken pox,"My lymph nodes are swollen, causing discomfort in my neck and armpits. I don't know what's causing it." +156,Chicken pox,"I'm feeling really sick and uncomfortable like something is wrong inside. I don't know what it could be. I noticed small red spots on my arms, which itches if I touch them." +157,Chicken pox,The itching is making it hard for me to sleep at night. I can't get any rest. I have also lost my appetite and feel lethargic. +158,Chicken pox,"I'm worried about this rash on my skin. It's spreading rapidly and causing a lot of discomforts. I can hardly sleep at night because of the itching," +159,Chicken pox,I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. +160,Chicken pox,"I have a skin rash that's red and inflamed, and it's spreading all over my body. I've been experiencing intense itching, especially on my arms and legs." +161,Chicken pox,"I've had a high fever for the past few days, and it's starting to worry me. I don't know what's causing it. Also, I have red spots all over my arms and legs, some of which are swollen." +162,Chicken pox,"I have a skin rash that's red and swollen, and it's spreading all over my body. I have a mild fever and it is causing me a lot of discomforts." +163,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself." +164,Chicken pox,There are small red spots all over my body that I can't explain. The bumps are itchy and uncomfortable and seem to spread rapidly. It's worrying me. +165,Chicken pox,The itching is making it hard for me to sleep at night. I can't seem to get any rest because the rash is so itchy and uncomfortable. I'm feeling really tired and exhausted. +166,Chicken pox,I have no energy and have lost my appetite. I have a high fever and severe headache and don't know what's wrong. +167,Chicken pox,The high fever and swollen lymph nodes are causing me much discomfort. I have a headache and feel weak and fatigued. It's hard for me to concentrate because of the fever. +168,Chicken pox,"The rash on my skin is causing a lot of discomforts. It's red and inflamed, spreading all over my body. The rash is accompanied by intense itching, especially on my arms and legs." +169,Chicken pox,"There are red spots all over my body that I can't explain. The spots are itchy and starting to swell, and they are spreading rapidly." +170,Chicken pox,I have small lymph nodes on my arms and face. The itching is making my day very uncomfortable. +171,Chicken pox,"I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. Also, there are small red spots starting to show on my skin." +172,Chicken pox,"I've had a mild fever for the past few days, and it's starting to worry me. The fever has been accompanied by a severe headache. I feel weak and lethargic." +173,Chicken pox,"I have swollen lymph nodes and red spots all over my body, and they are causing discomfort. I also have a mild fever and feel tired most of the time." +174,Chicken pox,"I've been suffering from severe itching all over my body, and it's driving me insane. I also have a red and irritating rash." +175,Chicken pox,"I have seen rashes on my skin, and it's difficult for me not to scratch. Also, I've had a high fever for several days. I'm not sure what's causing it." +176,Chicken pox,"I have little red spots all over my body that I don't understand. It worries me. I have lost my appetite and every night, I am exhausted and have a severe headache." +177,Chicken pox,"I'm feeling really sick and lost my appetite. I've seen little red patches on my arms, neck and face that itch when I touch them." +178,Chicken pox,I have red spots on my arms and legs and itching them makes it difficult for me to sleep at night. I also have severe headaches and a mild fever. +179,Chicken pox,Enlarged lymph nodes are giving me a great deal of pain. I have rashes all over my body and because of which I cannot sleep all night. +180,Chicken pox,"My skin rash is giving me a lot of pain and discomfort. It's red and swollen, and it's spreading throughout my body." +181,Chicken pox,I have a high fever and a mild headache. I'm tired most of the time and completely lost my appetite. +182,Chicken pox,"My arms and face have small lymph nodes, which are starting to swell. My day has been made really miserable by the constant itching and pain." +183,Chicken pox,"My arms and neck have large lymph nodes, which itch when I touch them. The itching has made my day extremely uncomfortable." +184,Chicken pox,"My skin rash is causing me a great deal of pain. There are also small red spots developing near my neck. Since yesterday, I have had a severe fever, headache and fatigue." +185,Chicken pox,"I am starting to develop tiny red spots all over my face and neck area, and it itches when I touch them. The itching is making my day very uncomfortable." +186,Chicken pox,"I have lost my appetite completely and can't seem to eat anything. I feel like vomiting and feel exhausted. I noticed rashes on my skin, which is really concerning me." +187,Chicken pox,I have a high fever and a severe headache. I can't seem to eat anything and feel like vomiting. There are also some red spots developing on my arms. I am really worried. +188,Chicken pox,I'm worried about these red spots on my skin. It's spreading rapidly and causing a lot of problems. I also developed a mild fever and headache every night. +189,Chicken pox,I'm feeling really nauseous and uneasy. I'm not sure what it might be. I've seen rashes on my arms and legs. I have lost my appetite and feel exhausted every day. +190,Chicken pox,I have swollen red lymph nodes on my arms and legs that itch when I touch them. I'm also suffering from a terrible headache and a mild fever. I don't feel like eating anything and have lost my appetite. +191,Chicken pox,I'm really exhausted and lacking in energy. I can hardly keep my eyes open during the day. I have a mild fever and don't feel like eating anything. I think I have lost my appetite. +192,Chicken pox,"I am exhausted and have lost my appetite. I feel vomiting and can't eat anything. In addition, little red spots are beginning to appear on my skin and near the neck. I am really worried about my health." +193,Chicken pox,There are small red spots all over my body. The spots are itchy and uncomfortable. I also have a mild fever and headache. +194,Chicken pox,"I've been suffering from severe itching all over my body, along with a fever and headache. The red spots are starting to swell and it is getting really uncomfortable every day." +195,Chicken pox,I feel tired every day. There are red spots all over my arms and back and it itches if I touch them. I am really worried and not sure what to do. +196,Chicken pox,"The high fever, swollen lymph nodes and headache are causing me a lot of trouble. I don't feel like eating anything and feel weak and fatigued. It's hard for me to concentrate on my daily life." +197,Chicken pox,"I have a high fever and red spots and rashes all over my body. I feel exhausted and have completely lost my appetite, which has made me weak and lethargic. I am really worried." +198,Chicken pox,I have seen rashes on my arms and neck and it itches if I scratch them. I've also had a high fever for a few days. I have no idea what is causing it. The itching is causing me a lot of discomforts. +199,Chicken pox,"There are red swollen spots all over my body. It itches if I touch them. Moreover, I also have a high fever and headache and always feel exhausted." +200,Impetigo,I have developed a skin rash on my face and neck. The rash is made up of red sores that are blistering. I am worried about my health. +201,Impetigo,"I have developed skin rashes made up of blistering sores. The blistering sores are raised, fluid-filled lesions and they are painful to touch. I am also suffering from a high fever." +202,Impetigo,I have a high fever. There are red sores developing near my nose. The sores are painful and have yellow rust-colored ooze coming out from them. +203,Impetigo,"There are rashes around my nose, with large red sores. I noticed that the rash was spreading to other parts of my body. Also, I have a high fever every night." +204,Impetigo,I have been suffering from a high fever for the last couple of days. Sores are developing near my nose. The sores are painful and I am feeling very uncomfortable these days. +205,Impetigo,"My skin has developed rashes, mainly near the nose. The rash is spreading to other parts of my body. I am really about worried about this." +206,Impetigo,I have been experiencing extreme fatigue and a high fever. There are rashes near my nose and mouth. The rash is itchy and makes it very difficult for me to sleep. +207,Impetigo,"I am suffering from extreme fever and weakness. I have developed sores on my face. The sores itchy and uncomfortable. Often, a yellow colored ooze comes out of the sores." +208,Impetigo,I have noticed that the sores are taking longer to heal and are more prone to infection. The sores on my face are swollen and tender to the touch and very uncomfortable to handle. +209,Impetigo,There are red sores on my face and near my nose. I have noticed that the rash is spreading more quickly on my neck and chest. +210,Impetigo,The sores around my nose have become crusted over and are difficult to touch. A yellow-rust coloured ooze used to come out of the sores. It is taking much more time to handle. +211,Impetigo,"I developed a minor rash near my nose a few days ago. Now, the rash is accompanied by a burning sensation and redness of the skin. I feel it is some kind of an infection." +212,Impetigo,"Initially, I developed small red sores near my nose and neck. Now, I am having a high fever and the sores have become more painful and inflamed over the past few days." +213,Impetigo,"I noticed a skin rash on my face. It was made up of a blistering sore. Today I observed a yellow colored fluid coming out of the sores, I am not sure what it is." +214,Impetigo,"The sores on my face are beginning to weep clear fluid. Also, every night I get a high fever and chills, because of which I cannot sleep all night." +215,Impetigo,I initially had rashes on my face and near my nose. But now the rash is spreading down my arms and legs. +216,Impetigo,"I have a high fever every night and developed sores on my face, particularly near my nose. I have noticed that the sores are taking longer to heal and are more prone to infection." +217,Impetigo,"The sores around my nose are now surrounded by red, inflamed skin. The rash has caused my skin to become dry and flaky, with a visible yellow colored fluid coming out of the sores." +218,Impetigo,"I have also been experiencing flu-like symptoms, such as fever and body pain. I have noticed red rashes and blistering sores near my nose and lips. It's itchy and uncomfortable." +219,Impetigo,I am suffering from mild fever and headache. There are small sores near my nose and rashes on my neck. I am going through a very tough time right now. +220,Impetigo,"There is a rash particularly bad around my nose, with large red sores that are painful and have yellow rust-colored ooze coming from them." +221,Impetigo,"There are sores on my face and mostly near my nose and lips. The sores are causing discomfort or pain, and there is a discharge of yellow or rust-colored fluid from them." +222,Impetigo,"I have been developing sores on my face and nose area. I am not sure what is causing this. The sores on my face are swollen and tender to the touch, and I have a burning sensation and redness of the skin." +223,Impetigo,"The rash on my face has become more painful and inflamed over the past few days, and the sores are beginning to weep clear fluid. It is getting extremely painful with each day." +224,Impetigo,I have rashes on my face. I am starting to have small sores around my nose and often a yellow fluid comes out of the sores. The sores are becoming extremely painful. +225,Impetigo,"I am feeling really sick. I have a high fever and headache. I noticed rashes on my arms and face. I am extremely worried about this. Today, I observed red sores near my nose." +226,Impetigo,"I've been suffering from a high fever for the past few days. Sores are forming around my nose and there are rashes on different parts of my body. The sores are severe, and I'm feeling really uneasy these days." +227,Impetigo,I have a high fever and am really weak. My face has gotten sores. The blisters are itchy and painful. A yellow ooze frequently leaks from the wounds. +228,Impetigo,"I am experiencing skin rashes with burning sores. The blistering sores are fluid-filled, elevated, red colored lesions that are unpleasant to touch. I also have a high fever." +229,Impetigo,"I believe I have some skin disease. There are rashes on my face and small sores near my nose. The sores have become red, and painful and some kind of a yellow ooze discharges from them." +230,Impetigo,"I have noticed that the sores on my face are healing more slowly and are more likely to become infected. My cheek sores are large, painful to the touch, and extremely difficult to handle. I can't seem to get rid of these sores." +231,Impetigo,"I am having a high fever. I've had a skin rash on my face, neck and arms. The rash is made up of burning red lesions. I'm concerned about my health." +232,Impetigo,"I've acquired skin rashes with blistering sores. The blistering sores are fluid-filled, elevated lesions that are unpleasant to touch. I'm also running a high fever." +233,Impetigo,"I'm running a high temperature. Near my nose, red sores are forming. The lesions are painful, and yellow rust-colored fluid is oozing from them." +234,Impetigo,"I have rashes around my nose, as well as huge red sores. The rash is spreading to other places on my body, as I've seen. In addition, I have a high temperature every night." +235,Impetigo,My cheeks and nose are covered with red sores. I've observed that the rash on my neck and chest is spreading faster. I am also developing a mild fever. +236,Impetigo,My nasal sores have crusted up and become difficult to touch. The wounds used to leak a yellow-rust coloured fluid. It is taking a lot longer to deal with using medication. +237,Impetigo,"A few days ago, I experienced a tiny rash around my nose. The rash is now accompanied by a burning feeling and skin redness and discharge of fluid. I believe it is some sort of infection." +238,Impetigo,"Small red sores appeared near my nose and neck at first. I now have a high temperature, and the sores have gotten more painful and inflamed in recent days." +239,Impetigo,"A rash has developed around my nose and lips, with huge red lesions that are painful and emit a yellow rust-colored fluid." +240,Impetigo,"My face is covered in sores. Most of them are near my nose and lips. The lesions are causing discomfort or suffering, and a yellow or rust-colored fluid is oozing from them." +241,Impetigo,"I've started getting sores on my face and nose. I have no idea what is causing this. My cheek sores are large and irritating to the touch, and I have a burning feeling and skin redness." +242,Impetigo,"Over the last two days, the rash on my face has gotten more severe and inflamed, and the blisters have begun to bleed clear pus. It is really painful to deal with." +243,Impetigo,"I feel I have a skin condition. My face has rashes and little blisters around my nose. The wounds have turned red and painful, and a yellow liquid is oozing from them." +244,Impetigo,"I've observed that the lesions on my face are healing slower and are more prone to infection. The lesions on my cheeks are huge, unpleasant to the touch, and incredibly difficult to treat. I can't seem to get these sores to go away." +245,Impetigo,"I'm running a high temperature. I've developed a rash on my face, neck, and arms. The rash consists of painful red lesions. My health is a concern for me." +246,Impetigo,"Over the last week, the rash on my face has gotten more severe and painful, and the sores have begun to discharge a yellow colored fluid. It's becoming increasingly painful by the day." +247,Impetigo,"I've had rashes on my face. I'm developing little sores around my nose, and a yellow ooze is frequently oozing from them. The lesions have become even more painful." +248,Impetigo,I'm feeling quite ill. I have a high fever and a headache. Rashes appeared on my arms and face. I'm quite concerned about this. I saw red sores around my nose and lips today. +249,Impetigo,"The rashes on my face are not healing. I tried some medications but it is not helping much. Recently, I noticed small sores near my nose. They are painful and very difficult to handle." +250,Dengue,I am facing severe joint pain and vomitting. I have developed a skin rash that covers my entire body and is accompanied by intense itching. +251,Dengue,"I have been experiencing chills and shivering, despite being in a warm environment. My back pains all the time and there are red spots on my arms." +252,Dengue,"I have been experiencing severe joint pain that makes it difficult for me to move and perform my daily activities. Also, I have lost my apetite because of which I feel weak." +253,Dengue,I have been vomiting frequently and have lost my appetite as a result. My joints and back pain all the time. +254,Dengue,I have a high fever accompanied with severe headache and body pain. I experince chills every night. There is a distinct pain behind my eyes too. +255,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. I have developed rashes on my neck, which itch upon touching. " +256,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I have lost my apetite and experience chills every night. +257,Dengue,I have been feeling nauseous and have a constant urge to vomit. There is a strong pain behind my eyes and there are small red spots all over my arms. +258,Dengue,I have developed red spots on my body that are itchy and inflamed. I am also experiencing high fever along with chills and shivering. +259,Dengue,I have been experiencing muscle pain that makes it difficult for me to move around. I have lost my apetite and feel vomiting. My legs and back pain a lot. +260,Dengue,"I have been experiencing back pain that is worse when I sit or stand for a long time. Also, there are rashes all over my body. There is a pain behind my eyes too." +261,Dengue,The skin rash I have developed is accompanied by redness and swelling. I don’t feel well as I have severe fever accompanied with body pain. +262,Dengue,The chills and shivering I have been experiencing are accompanied by a feeling of coldness and high fever. I have also developed rashes on my arms and red spots on my neck. +263,Dengue,"The joint pain I have been experiencing is severe and feels like a constant ache. My head aches most of the time and I am starting to develope mild fever, accompanied with chills. " +264,Dengue,The vomiting I have been experiencing is accompanied by stomach cramps and dizziness. I have lost my apetite and feel weak as a result. There is a pain behind my eyes too. +265,Dengue,The high fever I have been experiencing is accompanied by sweating and weakness. My muscles pain as a result I cannot work all day. +266,Dengue,"The fatigue I have been feeling is extreme and makes it difficult for me to perform even basic tasks. I feel vomitting and developed rashes on my arms, neck and legs. " +267,Dengue,The headache I have been experiencing is severe and is accompanied by a feeling of pressure in my head. I have mild fever along with headache. There are small red spots on my back. +268,Dengue,The nausea I have been feeling is accompanied by a loss of appetite and feeling of unease. There is a distinct pain in my back and muscles pain too. +269,Dengue,The muscle pain I have been experiencing is severe and feels like a constant ache. There are red spots all over my body and the itching is causing me a lot of discomfort. +270,Dengue,"I have developed a skin rash that covers my entire body and is accompanied by intense itching. My body pains and I have a mild fever, acompanied with headache and chills." +271,Dengue,"I'm experiencing extreme body pain, headache and vomiting. I've developed red spots that covers my entire body and causes severe itching." +272,Dengue,"My back hurts all the time, and my arms and neck have rashes. The back of eyes pain a lot. I also have fever and it is making we worried about my health." +273,Dengue,"I've been suffering from significant joint pain, which makes it difficult for me to walk and carry out my everyday tasks. I've also lost my appetite, which makes me feel weak and feel like vomitting." +274,Dengue,There is a constant behind my eyes. I have developed red spots on my neck and face and rashes on my arms. My arms and legs pain a lot. . The spots are itchy and uncomfortable and it is worrying me. +275,Dengue,"I've been feeling sick and feel a strong need to vomit. There is a sharp ache behind my eyes, and swollen red dots all over my back." +276,Dengue,My shivers and shivering have been accompanied with a sensation of coldness and a very high fever. Rashes on my arms and red patches on my neck have also appeared. +277,Dengue,"I have been suffering from severe joint ache. I feel vomiting most of the time, and I am developing a moderate fever with chills. The fever that doesn't seem to come down even with medication." +278,Dengue,"The vomiting I've been having has been followed by stomach pains and dizziness. I've lost my appetite and as a result feel weak. My arms, back, neck pain most of the time." +279,Dengue,I have developed red spots on my arms and legs that are itchy and inflamed. I have been feeling nauseaus and have a constant urge to vomit. This is accomapanied by mild fever. +280,Dengue,"I have developed a skin rash that covers my entire body. The rash is red and swollen, and is worse in certain areas such as my arms and legs. I have also lost my appetite. " +281,Dengue,I have been experiencing chills and shivering. There is a strong pain in my back and also behind my eyes. I have also noticed small red spots on my back and neck. +282,Dengue,I have been experiencing severe joint pain that is making my day very difficult. I feel like vomiting all the time and have a mild headache too. +283,Dengue,"I have been vomiting frequently and have lost my appetite as a result. There are rashes on my skin and my eyes pain, because of which I cannot sleep properly." +284,Dengue,I have a high fever along with a severe headache. The fever is accompanied by extreme body pain and chills. I am worried about my health and don’t know what to do. +285,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. The fatigue is so severe that I struggle to get out of bed. I have noticed small red spots on my arms and legs. " +286,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I feel tired and fatigued because of which I cannot work all day. I am worried about my health. +287,Dengue,"I have been feeling nauseous and have a constant urge to vomit, which is accompanied with mild fever and headache. " +288,Dengue,I have developed rashes on my body that are itchy and. I have lost my appetite and feel very tired all day. I feel something is wrong with my body. +289,Dengue,"I have been experiencing muscle pain and headache. The muscle pain feels like a constant ache and is worse when I try to use the affected muscles. There are small red spots developing on my face, neck and arms." +290,Dengue,"My back hurts, and I have rashes on my arms and armpits. The back of my eyeballs hurt a lot. I also have a mild fever, which is making us concerned about my health. " +291,Dengue,"I am experiencing very high fever and chills every night. It is really concerning me. Moreover, I don’t feel like eating anything and my back, arms, legs pain a lot. There is a strange pain behing my eyes. I can’t do any physical activities. " +292,Dengue,"As a result of my regular vomiting, I've lost my appetite. My muscles, joints and back constantly hurt. I am starting to have fever too. I am really worried and not sure what to do." +293,Dengue,I have been experiencing a severe fever that is accompanied by pain behind my eyes and headache. I feel tired and exhasuted because of which I cannot do any work. +294,Dengue,"My whole body is paining a lot and I don’t feel like eating anything. I have mild fever and get chills every night. Also, there are some red spots developing on my back and neck." +295,Dengue,"My joints and back pain everyday. I feel like vomitting and this has made me very weak. Because of my body pain, I am not able to focus on my work and don’t feel like doing anything." +296,Dengue,The body pain I have been feeling is extreme. I has lost my appetite and developed rashes on my arms and face. The back of my eyes pain a lot. +297,Dengue,I have developed rashes on my body. I am also experiencing high fever along with chills and headache. My joints and back hurt and there is a strange pain in the back of my eyes. +298,Dengue,"I have been feeling nauseous and have a constant urge to vomit. I get high fever and chills every night and feel terrible because of this. Also, I feel I have lost my appetite." +299,Dengue,"There are rashes on my skin, which itch if I touch them. I don’t feel good as my joints pain whole day. At night, I have mild fever and get chills, because of which I can’t sleep too." +0,Fungal infection,"I have raised lumps, a rash that looks red and inflamed, discoloured areas of skin that are different colours from the rest of my skin, and itching on my skin." +1,Fungal infection,"All over my body, there has been a severe itching that has been followed by a red, bumpy rash. My skin also has a few darkened spots and a few tiny, nodular breakouts. It has been happening for several days and is becoming worse." +2,Fungal infection,"I've had a rash on my skin that looks like dischromic patches, and I also have a lot of nodular eruptions and really bad itching. During the previous week, it has become worse." +3,Fungal infection,"I've had a rash that won't go away and a bothersome itching on my skin. In addition, I've seen some color-different areas and bumps that resemble knots or lumps on my skin." +4,Fungal infection,"I have a rash all over my body, and I can't stop scratching because my skin is itchy. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples." +5,Fungal infection,"Recently, my skin has been quite itchy, and I have a rash all over my body. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples." +6,Fungal infection,"My skin has been itching a lot and developing a rash. Additionally, I have a few areas of my skin that are a different hue than the rest of it. Additionally, I have a few firm pimples or breakouts on my skin." +7,Fungal infection,"All over my body has been itching like crazy, and now there are red areas all over. Additionally, some of the patches have a different tone than my natural skin. And on my skin, there are these lumps or pimples that have developed." +8,Fungal infection,"My skin has been acting up recently, becoming extremely itchy and rashes-prone. Additionally, there are certain spots that deviate from my natural skin tone in terms of hue. And now my skin has these lumps or bumps that weren't there before." +9,Fungal infection,"On my arms and legs, I have a lot of red pimples and itchy skin. My skin also has a few odd-looking lesions. And occasionally there are bumps that are somewhat uncomfortable." +10,Fungal infection,I have an itchy skin and lots of red bumps on my arms and legs. There are some weird looking spots on my skin too. And sometimes there are bumps that feel kind of hard. +11,Fungal infection,"Doctor, I have a really itchy rash on my skin and there are some weird spots that are a different color. There are also some bumps on my skin that look like little knots" +12,Fungal infection,"Doctor, My skin is covered in a very uncomfortable rash, along with some odd patches of a different hue. My skin also has a few pimples that resemble little knots" +13,Fungal infection,"I have lots of itchy spots on my skin, and sometimes they turn red or bumpy. There are also some weird patches that are different colors than the rest of my skin, and sometimes I get these weird bumps that look like little balls." +14,Fungal infection,"My skin frequently develops itchy bumps that can occasionally turn red or rough. Aside from that, my skin occasionally develops strange pimples that resemble small balls and some odd spots that are a different hue from the rest of my skin." +15,Fungal infection,"Doctor, I have these red rashes that keep popping up and my skin is continuously itching. In addition, I've observed some odd color-different spots on my skin, as well as some little nodules on my skin that appear to be expanding." +16,Fungal infection,"I have been experiencing some really intense itching all over my body, along with redness and bumps on my skin. There are also these weird patches that are different colors than the rest of my skin, and sometimes I get these nodules that look like small bumps." +17,Fungal infection,"All over my body, I've been scratching so much that my skin has become red and developed pimples. Additionally, I occasionally get these nodules that resemble little pimples, as well as these strange patches that are a different hue from the rest of my skin." +18,Fungal infection,"I've been experiencing a lot of itching, which has been accompanied with a rash that appears to be growing worse over time. There are also certain areas of skin that are different colours from the rest, and I've spotted several lumps that resemble little nodes." +19,Fungal infection,"I've been having a lot of problems with itching, and it's been accompanied by a rash that seems to be getting worse over time. There are also some patches of skin that are different colors than the rest, and I've noticed some bumps that look like little nodes." +20,Fungal infection,"Doctor, My skin is covered in an uncomfortable rash and has a few odd patches of skin that are a different colour. There are a few pimples on my skin that resemble little knots." +21,Fungal infection,"I've been itching a lot, and it's been accompanied with a rash that looks to be getting worse over time. There are also some patches of skin that are different colours from the rest of the skin, as well as some lumps that resemble little nodes." +22,Fungal infection,"My skin has been acting up lately, becoming exceedingly itchy and prone to rashes. Furthermore, several patches differ from my normal skin tone in terms of colour. And now I have lumps or bumps on my skin that weren't there before." +23,Fungal infection,"A rash that appears to be developing throughout my skin has been accompanying my recent bouts of intense itching and discomfort. On my skin, I also have some dischromic spots and little lumps that seem to be appearing everywhere." +24,Fungal infection,"My skin always itches, and occasionally it becomes quite rough and red. In addition, I occasionally get little pimples that resemble tiny balls and certain spots that are a different colour from the rest of my skin. It severely irritates me and itches." +25,Fungal infection,"I have a lot of itching all over my skin, and sometimes it gets really red and bumpy. There are also some patches that are different colors than the rest of my skin, and sometimes I get these little bumps that look like little balls. It's really annoying and itchy." +26,Fungal infection,"I have a pretty irritating itch all over my body, and my skin also has a few red, bumpy areas. I've also had some pimples that resemble small balls and other spots that are a different colour than the rest of my skin. " +27,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my skin that are a different hue than the rest of it, and I've had some pimples that resemble little balls." +28,Fungal infection,"I've been having this really annoying itch all over my body, and I have red and bumpy spots on my skin too. There are also some areas that are a different color than the rest of my skin, and I've had some bumps that look like little balls." +29,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my epidermis with a distinct shade than the rest of it, and I've had some pimples that resemble little balls." +30,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that look different in shade than the rest of my skin, and I've had some bumps that are kind of hard." +31,Fungal infection,"I've been quite itchy recently, and I have rashy patches all over my skin. There are also certain regions that are darker in colour than the rest of my skin, and I've got some firm lumps." +32,Fungal infection,"I've been rather itchy recently, and I have rashy blotches all over my skin. There are also certain regions that are more dark in color than the rest of my skin, and I've got some painful lumps." +33,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. Additionally, I've had a few pimples that are rather firm, and there are certain spots on my body that have a different shade of brown than the rest of my skin." +34,Fungal infection,"My skin has been really itchy and there are these rashy spots all over. There are also some patches that look different in color than the rest of my skin, and I've had some bumps that are kind of hard." +35,Fungal infection,"My skin has been really scratchy, and there are rashes all over my body. I have some bumps that are quite firm, as well as some areas that are a darker shade from the rest of my skin. It's extremely unpleasant." +36,Fungal infection,"There are rashy areas all over my skin, which has been really irritating. Additionally, I have some bumps that are fairly firm and some patches that are a different colour from the rest of my skin." +37,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. In addition, there are a few spots where my skin doesn't appear to be its usual shade, and I've experienced a few lumps that are quite painful." +38,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that don't look like the normal color of my skin, and I've had some bumps that are kind of hard" +39,Fungal infection,"I've been quite itchy recently, and I have rashy places all over my body. There are also some regions that don't appear to be the typical hue of my skin, and I've experienced some firm lumps." +40,Fungal infection,"I've been itching and have rashy patches all over my skin recently. There are also some regions that don't appear to be the regular tone of my skin, and I've experienced some painful bumps." +41,Fungal infection,"Recently, I've been itching myself a lot, and my skin is covered with rashy patches. Furthermore, there are a few regions where my skin doesn't appear to be its usual tone, and I've experienced a few lumps that are exceptionally painful." +42,Fungal infection,"I've been having this constant itch and there are these red and bumpy spots on my skin. There are also some patches that are a different color than the rest of my skin, and I've had some bumps that are kind of like little lumps." +43,Fungal infection,"There are red, bumpy areas on my skin, and I've been scratching myself nonstop. Additionally, I have some bumps that resemble little lumps and some spots that are a different shade of skin than the rest of my body." +44,Fungal infection,"I've had a lot of itching on my skin, which occasionally turns into a rash. There are also some odd patches of skin that are a different hue than the rest of me, and I occasionally get little pimples that resemble nodules." +45,Fungal infection,"I've had a tendency of itching on my skin, that frequently turns into a rash. There are also some strange patches of skin that are a different tone than the rest of my skin, and I regularly get little lumps that mimic nodules." +46,Fungal infection,"I've been experiencing a lot of itching on my skin, and sometimes it turns into a rash. There are also some strange patches of skin that are a different color than the rest of me, and sometimes I get little bumps that look like nodules." +47,Fungal infection,"My body has been itching terribly all over, and there are now red spots everywhere. Some of the patches also differ in tone from my natural complexion. And there are these lumps or pimples that have appeared on my skin." +48,Fungal infection,"My skin has been really itchy lately, and it occasionally erupts into a rash. In addition, I have a few odd areas of skin that are a different coloration from the rest of me, and occasionally I develop little bumps that look  like nodules." +49,Fungal infection,There are now red blotches all over my body where I have been itching horribly all over. A few of the patches also differ in complexion from my natural skin. And these lumps or bumps have developed on my skin. +50,Common Cold,"I can't stop sneezing and my nose is really runny. I'm also really cold and tired all the time, and I've been coughing a lot. My fever is really high too, like way above normal." +51,Common Cold,"My nose is extremely runny, and I can't seem to stop sneezing. In addition, I constantly feel cold, exhausted, and I've been coughing a lot. My fever is also really high far above normal." +52,Common Cold,"I've been sneezing nonstop and I can't seem to shake this chill. I'm feeling really weak and tired, and my cough won't go away. My fever is really high" +53,Common Cold,"I've been sneezing incessantly and I just can't get this chill to go away. I feel so weak and exhausted, and my cough won't stop. My temperature is really high." +54,Common Cold,I'm constantly sneezing and my body is shaking from being cold. I'm so tired I can barely move and my head is killing me. My fever is through the roof +55,Common Cold,"I'm constantly sneezing, and the cold is making my body tremble. I'm so exhausted that I can hardly move, and my head hurts. My fever is quite high." +56,Common Cold,"I've been quite exhausted and ill. I'm sneezing nonstop and am quite cold. My head is throbbing, and I lack energy. Additionally, I have a very high fever and feel like I am on fire." +57,Common Cold,"I've been feeling really tired and sick. I've been sneezing a lot and I can't seem to get warm. I'm so tired and my head is killing me. And my fever is really high, like I'm boiling." +58,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak" +59,Common Cold,"I've been quite exhausted and ill. I have been sneezing a lot and am having trouble warming up. I'm so exhausted, and my head hurts. And I feel like I am boiling over with my high temperature." +60,Common Cold,I can't stop sneezing and I feel really tired and crummy. My throat is really sore and I have a lot of gunky stuff in my nose and throat. My neck feels swollen and puffy too. +61,Common Cold,"I can't stop sneezing, and I'm exhausted and sick. My throat is really uncomfortable, and there is a lot of junk in my nose and throat. My neck is also swollen and puffy." +62,Common Cold,"I keep sneezing, and I'm miserable and exhausted. I have a lot of gunky things in my nose and throat, and my throat is really hurting. My neck also feels puffy and swollen." +63,Common Cold,I've been feeling really exhausted and sick to my stomach. I've had a really bad cough and my throat has hurt a lot. I've experienced substantial sinus pressure and a congested nose. I'm really unpleasant and worn out. +64,Common Cold,I've been sneezing a lot and feeling really tired and sick. There's also a lot of gross stuff coming out of my nose and my throat feels really scratchy. And my neck feels swollen too. +65,Common Cold,"I've been wheezing a lot and am generally feeling sick and exhausted. My throat feels really scratchy, and a lot of gross stuff is flowing out of my nose. My neck also feels bloated." +66,Common Cold,"My sinuses feel incredibly congested, and my eyes are continuously red. I just constantly feel drained and exhausted. In addition, I have a lot of uncomfortable phlegm in my throat. My lymph nodes feel bloated, and breathing has been challenging." +67,Common Cold,My eyes have been really red and my sinuses feel congested. I just don't have any energy and my throat has been really itchy. I've also noticed my lymph nodes are swollen and I've been coughing up a lot of phlegm. +68,Common Cold,"My sinuses feel stuffy, and my eyes have been quite red. I simply lack energy, and my throat has been really scratchy. Along with the swelling in my lymph nodes, I've also been coughing up a lot of phlegm." +69,Common Cold,"My eyes are always red and itchy, and my nose feels all stuffy and congested. I just feel kind of sick and tired all the time, and I keep coughing up all this gunk. My throat feels sore and scratchy, and I've noticed that the bumps on my neck are bigger than usual" +70,Common Cold,"My nose always feels stuffy and congested, and my eyes are always red and itching. I have a feeling of being unwell and fatigued, and I keep hacking up this gunk. I have a scratchy, irritated throat, and I've seen that my neck's bumps are larger than usual." +71,Common Cold,"I keep sneezing, and my eyes don't quit dripping. It's incredibly difficult for me to breathe because it feels like there is something trapped in my throat. I often feel exhausted, and lately, I've had a lot of phlegm. Moreover, my lymph nodes are enlarged." +72,Common Cold,My eyes are red and watery all the time. I've also had this pressure in my sinuses that won't go away. I'm always feeling tired and I've been having a lot of trouble breathing. I've also had a lot of gunk in my throat and my lymph nodes are swollen. +73,Common Cold,"My eyes are constantly red and runny. A persistent tightness in my sinuses has also been bothering me. I've been having a lot of difficulties breathing and constantly feel fatigued. In addition, I have a lot of throat mucus and inflamed lymph nodes." +74,Common Cold,"My nose feels quite clogged, and my eyes are constantly very red and runny. In addition, my chest hurts and I've been having a lot of breathing problems. In addition, my muscles feel quite painful, and I can't smell anything." +75,Common Cold,"My eyes are usually red and runny, and my nose is always stuffy. I've also been having difficulty breathing and my chest hurts. In addition, I can't smell anything and my muscles are quite painful." +76,Common Cold,"My eyes are usually red and inflamed, and I have the impression that something is clogging my sinuses. I've been coughing up a lot of gunk, and my chest hurts. I can't smell anything, and my muscles are aching." +77,Common Cold,"My eyes are always red and swollen, and I feel like there's something blocking my sinuses. I've been coughing up a lot of goo and my chest feels really heavy. I can't smell anything and my muscles are really sore" +78,Common Cold,"I've been coughing a lot and feeling chilly and shivery. My nose has been quite clogged, and I am experiencing facial pressure. I also have a lot of phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching." +79,Common Cold,"For days, I've had a nasty cough and cold. My sinuses are clogged, and I have facial pressure. I've also been creating phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching." +80,Common Cold,"I've had a nasty cough and cold for days. My sinuses are congested, and I have facial pressure. I've also been coughing up mucus, and it pains my chest. I can't smell anything and my muscles are aching." +81,Common Cold,"My cough and cold have been awful for days. My sinuses are congested, and my face is under strain. Additionally, I've been coughing up phlegm, and it hurts in my chest. I have no sense of smell, and my muscles hurt a lot." +82,Common Cold,"I'm coughing nonstop and I'm shivering terribly. I have a stuffy nose and my face is under strain. In addition, my throat is coughing up some nasty gunk, and my chest hurts. My muscles hurt a lot, and I can't smell anything." +83,Common Cold,I can't stop coughing and I feel really cold. My sinuses are all blocked and I have a lot of mucus. My chest hurts and I can't smell anything. My muscles are also really sore. +84,Common Cold,"I'm coughing nonstop and am really chilly. My mucus production is excessive, and my sinuses are fully clogged. I can't smell anything, and my chest hurts. My muscles are quite painful as well." +85,Common Cold,"I can't stop coughing and I'm freezing. My sinuses are completely blocked, and I'm inundated with mucous. My chest hurts, and I'm unable to smell anything. My muscles are also really achy." +86,Common Cold,"I've been coughing a lot and finding it difficult to breathe. My throat hurts and I feel like I have a lot of phlegm trapped in my chest. My nose has been running a lot, and I've been feeling really congested." +87,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak" +88,Common Cold,"I've been experiencing severe weariness and a sickly sensation. My throat has been really painful and I've had a fairly severe cough. My nose has been quite stuffy, and I've had significant sinus pressure. I'm really miserable and extremely exhausted." +89,Common Cold,I've been feeling really sick and I've had a lot of fatigue. I've had a really bad cough and my throat has been really sore. I've had a lot of sinus pressure and my nose has been really congested. I just feel really run down and miserable. +90,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Simply put, I feel really run down and feeble." +91,Common Cold,I've been really weary and ill. I've been suffering from a severe cough and sore throat. I've got a lot of chills and a pretty high temperature. I simply feel tired and run down. +92,Common Cold,"I can't quit sneezing, and my nose is running. I'm also constantly chilly and exhausted, and I've been coughing a lot. My fever is also really high, well above usual." +93,Common Cold,"I've been feeling awful, with a lot of congestion and a runny nose. I've been coughing a lot and having a lot of chest pain. My fever has been really high, and I've been experiencing severe muscular discomfort." +94,Common Cold,"My neck is swollen, and I'm exhausted. My throat is scratchy, and my eyes are burning red. My nose is really clogged, and I am experiencing facial pressure. My chest hurts, and I'm unable to smell anything." +95,Common Cold,"I lack energy and feel like my neck is bloated. My eyes are red, and my throat feels scratchy. I have severe congestion in my nostrils, and my face is under pressure. I can't smell anything, and my chest hurts." +96,Common Cold,"I feel quite weak, and my lymph nodes are enlarged. My eyes are burning, and my throat hurts. My sinuses are under strain, and my nose is stuffy. I can't smell anything, and my chest hurts." +97,Common Cold,"I've had a terrible cough and cold for days. My face is tired and my sinuses are blocked. In addition, my chest hurts from the phlegm I've been coughing up. I can't smell, and my muscles are in terrible pain." +98,Common Cold,"I have red, watery eyes all the time. My sinuses have also been bothered by a constant tightness. My breathing has been quite tough, and I've been feeling worn out all the time. My lymph nodes are irritated, and I also have a lot of throat mucous." +99,Common Cold,"I always get hot, puffy eyes and the feeling that something is obstructing my sinuses. My chest feels quite heavy, and I've been coughing up a lot of gunk. I have no sense of smell, and my muscles hurt a lot." +100,Pneumonia,"I've been feeling really cold and tired lately, and I've been coughing a lot with chest pain. My heart is beating really fast too, and when I cough, the phlegm is kind of a rusty color." +101,Pneumonia,"I've been coughing a lot recently with chest pain and feeling incredibly chilly and exhausted. Additionally, my heart is thumping rapidly, and the phlegm I cough up has a reddish hue." +102,Pneumonia,"I've been feeling really drained and cold, and I can't stop coughing. It hurts in my chest when I do, and my heart feels like it's racing. The mucus I'm coughing up is a gross brownish color." +103,Pneumonia,"I've been exhausted and chilly, and I can't stop coughing. When I do, it pains in my chest and makes my heart race. My coughing mucous has a disgusting brownish hue." +104,Pneumonia,"I've been having chills and feeling exhausted, and I can't seem to shake this cough. My chest hurts when I cough, and my heart feels like it's going a million miles an hour. The phlegm I'm coughing up is a dirty rust color." +105,Pneumonia,"I've been experiencing chills, feeling worn out, and I can't seem to get rid of this cough. When I cough, my chest aches and my heart feels as like it is beating a million miles per hour. I'm coughing up a nasty rust-colored phlegm." +106,Pneumonia,"I've been feeling really weak and cold lately, and this cough won't go away. It hurts in my chest when I cough, and my heart is pounding. The mucus I'm bringing up is a rusty brown color." +107,Pneumonia,"I've been having chills and feeling really worn out, and this cough won't go away. My chest hurts when I cough, and my heart is racing. The mucus I'm bringing up is a gross brownish color." +108,Pneumonia,"I've been experiencing chills, feel really exhausted, and my cough just won't go away. When I cough, my chest aches and my heart is pounding. It's a disgusting brownish hue, the mucous I'm coming up." +109,Pneumonia,"I have a really high fever, and I'm having trouble breathing. I'm sweating a lot and feeling really cold and tired. My heart is beating really fast, and I have some brownish sputum" +110,Pneumonia,"I'm having problems breathing and have a very high fever. I'm perspiring a lot and experiencing extreme fatigue and chilly. My heart is racing, and I'm coughing up some brownish mucus." +111,Pneumonia,"My temperature is very high, and I'm having a hard time breathing. I'm sweating profusely, and I'm shaking with chills. I'm really tired, and my heart is beating really fast. I also have some brownish phlegm coming up" +112,Pneumonia,"I'm having trouble breathing, and my fever is really high. I'm drenched in sweat and shivering from the chill. My heart is thumping rapidly, and I'm quite exhausted. Additionally, I'm about to have some brownish phlegm." +113,Pneumonia,"My fever is really high, and I'm having trouble catching my breath. I'm sweating a lot, feeling cold and tired, and my heart is beating really fast. I also have some brownish phlegm coming up." +114,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm." +115,Pneumonia,"I've been feeling really sick with a high fever, shortness of breath, sweating, chills, and extreme fatigue. My heart rate is rapid, and I've been coughing up a lot of brownish sputum." +116,Pneumonia,"With a high temperature, shortness of breath, sweating, chills, and intense exhaustion, I've been feeling quite poorly. I've been coughing up a lot of brownish phlegm and my pulse rate is racing." +117,Pneumonia,I'm having a really hard time catching my breath and I'm sweating a lot. I feel really sick and have a lot of mucus in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is dark and looks like rust. +118,Pneumonia,"I'm sweating profusely and finding it difficult to catch my breath. I feel quite ill, and my throat is very mucous. My heart is pounding, and my chest aches. I'm coughing up thick mucous that resembles rust." +119,Pneumonia,"I'm having a lot of trouble breathing and am really uneasy. I'm feeling unwell and am perspiring a lot. My chest hurts and I have a lot of mucus in my throat. My heart is racing, and the hue of the mucus I'm coughing up is off." +120,Pneumonia,I can't seem to get enough air and I'm sweating a lot. I don't feel well and there's a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is reddish in color. +121,Pneumonia,"I'm sweating profusely and can't seem to get enough air. My throat is filled with a lot of mucus, and I don't feel good. My heart is pounding, and my chest aches. I'm coughing up reddish-colored mucous." +122,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is yellowish. +123,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up brownish mucous." +124,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish. +125,Pneumonia,"I'm having trouble breathing and am quite uneasy. My throat is filled with a lot of phlegm, and I'm perspiring a lot. My heart is racing, and my chest aches. I'm coughing up reddish mucous." +126,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is brownish and stringy. +127,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up a stringy, brownish mucous." +128,Pneumonia,"I'm drenched with sweat and struggling to breathe. I don't feel well and have a lot of mucous in my throat. My chest aches, and my heart is racing. I'm coughing up mucus that is crimson in colour." +129,Pneumonia,"I've been feeling very lousy, with a high temperature, shortness of breath, sweating, chills, and extreme weariness. My heart is beating, and I've been coughing up a lot of brownish phlegm." +130,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm." +131,Pneumonia,"My fever is really high, and I'm having difficulty breathing. I'm drenched in sweat and shivering with chills. I'm quite fatigued, and my heart is racing. I'm also expecting some brownish phlegm." +132,Pneumonia,"I've been getting chills, feeling tired, and I can't seem to shake this cough. My chest aches and my heart feels like it's racing at a million miles per hour when I cough. I'm coughing out a foul rusty phlegm." +133,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish. +134,Pneumonia,"I'm having trouble breathing and am really uncomfortable. I'm sweating profusely and have a lot of mucus in my throat. My chest aches, and my heart is racing. I'm coughing up dark mucous." +135,Pneumonia,"I've got a high fever and can't seem to catch my breath. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm. My chest aches, and my heart has been racing rapidly." +136,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark." +137,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm." +138,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark." +139,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and red phlegm." +140,Pneumonia,"I've had chills, lethargy, a cough, a high temperature, and difficulties breathing lately. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm." +141,Pneumonia,"I've been having a lot of respiratory issues lately along with chills, exhaustion, a cough, and a high temperature. I've been sweating profusely and generally feeling ill and weak. My chest aches, and my heart has been racing rapidly." +142,Pneumonia,"I've been suffering with chills, tiredness, and a cough recently. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My chest aches, and my heart has been racing." +143,Pneumonia,"I'm running a temperature and can't seem to catch my breath. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My heart has been beating frantically, and my chest hurts." +144,Pneumonia,"I'm drenched with sweat and can't seem to catch my breath. My throat is clogged with mucus, and I'm miserable. My heart is racing, and my chest aches. I'm coughing up a brownish stringy mucus." +145,Pneumonia,"I'm saturated with sweat and struggling to breathe. My throat is blocked with mucous, and I'm uncomfortable. My heart is racing, and my chest aches. I'm coughing up a darkish stringy mucous." +146,Pneumonia,"I'm having a lot of problems breathing. I'm not feeling good, and I'm sweating a lot. I have a lot of mucous in my throat and my chest hurts. My breathing is laboured, and the phlegm I'm coughing up has an odd tint." +147,Pneumonia,"I have a lot of difficulty breathing. I don't feel well, and I'm perspiring a lot. My chest hurts, and I have a lot of mucus in my throat. I'm having trouble breathing, and the phlegm I'm coughing up has a strange hue." +148,Pneumonia,"I've been coughing a lot and feeling incredibly chilly and exhausted. I have a pretty high fever, and it's difficult for me to breathe. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm." +149,Pneumonia,"I've recently had chills, exhaustion, a cough, a high temperature, and breathing issues. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm. My heart has been racing quite quickly." +150,Dimorphic Hemorrhoids,"Constipation, discomfort with bowel motions, and anus pain have all recently been bothering me. My anus has been quite inflamed, and my stool has been extremely bloody." +151,Dimorphic Hemorrhoids,"Lately I've been experiencing constipation, pain during bowel movements, and pain in my anus. My stool has also been really bloody and my anus has been really irritated." +152,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. My bowel movements have been extremely uncomfortable and difficult for me to have.  My anus has been quite inflamed, and my stool has been extremely bloody." +153,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately. It's really painful when I do, and there's been some blood in my stool. I've also been having some pain and irritation around my anus." +154,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. When I do, it hurts a lot, and I've noticed some blood in my stool. Around my anus, I've also been experiencing some discomfort and itching." +155,Dimorphic Hemorrhoids,"Lately I've been really constipated, and it's been really painful when I do go to the bathroom. I've also noticed some blood in my stool, and my anus has been really irritated." +156,Dimorphic Hemorrhoids,"I've been suffering from severe constipation lately, and whenever I do go to the restroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool." +157,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately, and it's been really painful. I've also noticed that my stool has been bloody and my anus has been really irritated." +158,Dimorphic Hemorrhoids,"Recently, I've been having a lot of discomfort and difficulty using the restroom. Additionally, I've noticed that my anus has been quite sore and that my stool has been bloody." +159,Dimorphic Hemorrhoids,"I've been terribly constipated lately, and when I do go to the bathroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool." +160,Dimorphic Hemorrhoids,"I've been quite constipated lately, and going to the restroom has been excruciatingly uncomfortable. I've also observed blood in my stool, and my anus has been aggravated." +161,Dimorphic Hemorrhoids,I've been having a lot of trouble going to the bathroom lately. It's been really painful and I've been experiencing pain in my anus. My stool has also been bloody and my anus has been really irritated. +162,Dimorphic Hemorrhoids,"I've been having a lot of problems using the restroom recently. It's been excruciatingly uncomfortable, and I've been feeling agony in my anus. My stool has been bloody as well, and my anus has been really inflamed." +163,Dimorphic Hemorrhoids,"I've been having trouble going to the restroom recently. When I try to go, it's really uncomfortable, and my anus hurts a lot. I've also had some blood in my stool, and my anus has been really uncomfortable." +164,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful when I try to go and my anus hurts a lot. There's also been some blood in my stool and my anus has been really itchy. +165,Dimorphic Hemorrhoids,"I've been experiencing problems using the restroom recently. It's quite difficult for me to go, and it hurts when I do. I've also been experiencing buttock soreness and bloody stools. My anus has also been quite itching and sensitive." +166,Dimorphic Hemorrhoids,"Recently, I've been having problems using the restroom. Going is incredibly difficult, and doing so hurts. In addition, I've been experiencing some butt soreness, and my stools have been bloody. My anus has also been quite itching and aggravated." +167,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +168,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt." +169,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +170,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt." +171,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +172,Dimorphic Hemorrhoids,"Constipation has made it quite difficult for me to use the restroom. My stool has been bloody when I do go, and it hurts. In addition, my anus has been quite itchy and inflamed, and I've been experiencing some butt soreness." +173,Dimorphic Hemorrhoids,"It's incredibly difficult for me to use the restroom, and when I do, it hurts a lot. My stools have been bloody, and my butt has been hurting. My anus has also been quite itching and aggravated." +174,Dimorphic Hemorrhoids,I'm having a lot of trouble going to the bathroom and it's really painful when I do. My stool has been bloody and I've had some pain in my butt. My anus has been really itchy and irritated too. +175,Dimorphic Hemorrhoids,I've been having trouble going to the bathroom. It's been really hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +176,Dimorphic Hemorrhoids,"I've been finding it challenging to use the restroom. Going has been quite difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +177,Dimorphic Hemorrhoids,"I've been having difficulty using the restroom. It's been difficult to go, and it aches when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +178,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +179,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +180,Dimorphic Hemorrhoids,"Constipation and soreness with bowel motions have been bothering me lately. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +181,Dimorphic Hemorrhoids,I've been having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +182,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +183,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +184,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +185,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +186,Dimorphic Hemorrhoids,"My bowel motions are giving me a lot of problems right now. Going is difficult, and going hurts when I do it. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +187,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +188,Dimorphic Hemorrhoids,"I've been having constipation and bowel motions that hurt recently. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +189,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +190,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +191,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +192,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +193,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +194,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's really painful and I'm really uncomfortable." +195,Dimorphic Hemorrhoids,"I've been getting a lot of bowel issues recently. It's difficult for me to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +196,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful and I'm only able to go every few days. There's also a lot of pain in my anus and around that area. My stool has been really bloody and my anus feels really irritated. +197,Dimorphic Hemorrhoids,"I've been finding it incredibly difficult recently to use the restroom. I can only go sporadically because it hurts so much. My anus and the surrounding region are also quite painful. My anus feels really aggravated, and my stool has been extremely bloody." +198,Dimorphic Hemorrhoids,I'm having a lot of trouble with constipation and pain while trying to go to the bathroom. It hurts a lot in my anus and the area around it. My stool has been bloody and my anus is really irritated. +199,Dimorphic Hemorrhoids,"Constipation and bowel movement discomfort have been very common for me lately. The region surrounding my anus and I both ache a lot. My anus is really itchy, and my stool has been bloody." +200,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I've been experiencing a lot of stiffness when I walk about and my joints have been swollen. Walking has also been really uncomfortable." +201,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and I've been having a lot of stiffness when I move around. It's also been really painful to walk. +202,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen and I've been experiencing a lot of stiffness when I move around. Walking has also been excruciatingly uncomfortable." +203,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's been hard to move around. Walking has been really painful. +204,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult to move about. Walking has been excruciatingly uncomfortable." +205,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. It has been difficult to move about since my joints have swollen. It has been really uncomfortable to walk." +206,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. My joints have swollen, making it difficult for me to move. It has hurt a lot to walk." +207,Arthritis,"My neck has been so tense, and I've been feeling like my muscles are incredibly weak. I have trouble moving since my joints have enlarged. To walk has been quite painful." +208,Arthritis,"My neck has been really stiff, and I've had terrible muscle weakness. Due to the swelling in my joints, it has been challenging to move about. Walking has been quite unpleasant." +209,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +210,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +211,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable." +212,Arthritis,"Recently, I've been suffering neck muscle weakness and stiffness. My joints have enlarged and it is difficult for me to walk without feeling stiff. Walking has also been excruciatingly uncomfortable." +213,Arthritis,"Lately, my neck has been tight and my muscles have been weakened. I have swelling joints that make it difficult for me to move about without getting stiff. It has also been agonisingly painful to walk." +214,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +215,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +216,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable." +217,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable." +218,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to move without becoming stiff. Walking has been quite uncomfortable as well." +219,Arthritis,"My neck has been really tight, and my muscles have been rather weak. I have swelling joints that make it hard for me to move without getting stiff. Additionally, walking has been quite unpleasant." +220,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +221,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +222,Arthritis,My neck has been extremely tight and my muscles have been feeling extremely weak. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable. +223,Arthritis,"My neck has been extremely stiff and my muscles have been extremely weak. As a result of swelling in my joints, I find it difficult to move around without feeling stiff. Additionally, walking has been extremely uneasy." +224,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable." +225,Arthritis,"My neck has been extremely tight and my muscles have been feeling extremely weak. My joints have been swollen and I've been walking around with a lot of stiffness. Additionally, walking has been extremely uneasy." +226,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable." +227,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +228,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable." +229,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +230,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swollen and it's hard for me to move around. It's also been painful to walk. +231,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. Swollen joints make it difficult for me to move around. Walking has also been difficult. +232,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints, making it difficult for me to move. Walking has also been painful." +233,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have enlarged, making it difficult for me to move. Walking has also been difficult." +234,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. It has been difficult for me to move around because my joints have been swelling. Walking has also been extremely painful. +235,Arthritis,"My muscles have been feeling feeble recently, but my neck has been rock solid. My joints have become swollen, making it difficult for me to move about. Walking has been quite uncomfortable as well." +236,Arthritis,"My muscles have been feeling rather weak lately, but my neck has been really strong. My joints have swollen, making it challenging for me to move about. It has also been excruciatingly difficult to walk." +237,Arthritis,My neck has been extremely tight and my muscles have felt quite weak recently. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable. +238,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of Pine Tree State to run whereas not getting stiff. additionally, walking has been terribly uncomfortable." +239,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, creating it troublesome on behalf of me to run regarding while not changing into stiff. Walking has additionally been agonizingly uncomfortable." +240,Arthritis,"My muscles are quite weak, and my neck has been very stiff. My joints have swollen, creating it troublesome on behalf of me to steer concerning while not feeling stiff. Walking has conjointly been very uncomfortable." +241,Arthritis,"My muscles area unit quite weak, and my neck has been terribly stiff. My joints have swollen, making it hard on behalf of Maine to steer regarding whereas not feeling stiff. Walking has put together been terribly uncomfortable." +242,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's onerous on behalf of me to run while not obtaining stiff. in addition, walking has been extraordinarily uncomfortable." +243,Arthritis,My neck has been very tight and my muscles have felt quite weak recently. it's tough on behalf of me to maneuver around while not changing into stiff thanks to my swollen joints. Walking has additionally been very uncomfortable. +244,Arthritis,"Recently, when I try to walk about, I have stiffness, a stiff neck, swollen joints, and muscular weakness. Walking has also been really uncomfortable." +245,Arthritis,"Lately i have been experiencing muscle weakness, a stiff neck, swelling joints, and stiffness after I attempt to move around. it is also been very painful to steer." +246,Arthritis,"Recently, the muscles in my neck have become tight and weak. It's difficult for me to run now since my joints are older without getting tight. The act of walking has also been quite unpleasant." +247,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of American state to run whereas not getting stiff. additionally, walking has been very uncomfortable." +248,Arthritis,"Recently, the muscles in my neck have become tight and weak. Since my joints have matured, it is difficult for the American government for me to run without becoming stiff. Walking has also been quite unpleasant." +249,Arthritis,"Lately, I've been having stiffness and weakness in my neck muscles. Since my joints have matured, it is difficult for the American state to operate without becoming stiff. Furthermore, walking has been quite painful." +250,Acne,I've been having a really bad rash on my skin lately. It's full of pus-filled pimples and blackheads. My skin has also been scurring a lot. +251,Acne,I've just developed a severe rash on my skin. It's clogged with pus-filled pimples and blackheads. My skin has also been quite sensitive. +252,Acne,"My skin has been breaking out in a terrible rash lately. Blackheads and pus-filled pimples abound on it. Additionally, my skin has been scurring a lot." +253,Acne,"I've recently been experiencing a severe skin rash. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been scurring a lot." +254,Acne,I've been having a very unhealthy rash on my skin latterly. It's filled with pus-filled pimples and blackheads. My skin has additionally been scurring heaps. +255,Acne,My skin has just acquired a nasty rash. It's full of pus-filled pimples and blackheads. My skin has been really sensitive as well. +256,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive." +257,Acne,"I recently experienced a severe skin rash. Blackheads and pimples filled with pus are clogging it. Additionally, my skin has been quite irritated." +258,Acne,My skin has recently been severely rashy. Blackheads and pus-filled pimples have blocked it. My skin has been quite delicate as well. +259,Acne,Lately I've been experiencing a skin rash with a lot of pus-filled pimples and blackheads. My skin has also been scurring a lot. +260,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot." +261,Acne,My skin has now developed a revolting rash. There are pus-filled pimples and blackheads everywhere. My skin has also been really sensitive. +262,Acne,"My skin has developed a horrible rash. There are blackheads and pus-filled pimples everywhere. Furthermore, my skin has been exceedingly sensitive." +263,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive." +264,Acne,My skin has simply nonheritable a nasty rash. It's packed with pus-filled pimples and blackheads. My skin has been very sensitive moreover. +265,Acne,"My skin has developed a terrible rash that is not inherited. It has a lot of blackheads and pus-filled pimples. Furthermore, my skin has been exceedingly sensitive." +266,Acne,"Recently, I've been experiencing a lot of acne breakouts with pimples that contain pus. I've also been struggling with blackheads." +267,Acne,I woke up this morning and found that I have a really nasty rash all over my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +268,Acne,I've been noticing a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +269,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +270,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +271,Acne,I woke up this morning to find a really nasty rash on my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +272,Acne,I've been struggling with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +273,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +274,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +275,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying everywhere. +276,Acne,I recently had a horrible rash on my skin. There are several blackheads and pus-filled pimples. My skin has also been moving around a lot. +277,Acne,"This morning when I woke up, I discovered that I have an extremely bad rash all over my body. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot." +278,Acne,I awoke this morning to see that I had a horrible rash all over my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about. +279,Acne,I've just developed a skin rash with several pus-filled pimples and blackheads. My skin has also been quite sensitive. +280,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot." +281,Acne,"I woke up this morning to find that I have a terrible rash all over my body. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been changing a lot." +282,Acne,"When I awoke this morning, I realised that I had a severe rash all over my body. There are many pus-filled pimples and blackheads all over the place. My skin has also been scurring a lot." +283,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying about. +284,Acne,I awoke this morning to see a horrible rash on my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about. +285,Acne,"This morning when I woke up, I discovered an extremely bad rash on my skin. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot." +286,Acne,I've recently been battling a pretty itchy rash on my skin. There are pus-filled pimples and blackheads all over it. My skin has also been scurring a lot. +287,Acne,"This morning, I realized that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot." +288,Acne,"I woke up today to find that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot." +289,Acne,"I woke up this morning to find that I had a major rash all over my body. It's covered in pus-filled pimples and blackheads, and my skin has been scurrying a lot" +290,Acne,"This morning, I saw a large rash all over my body. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot." +291,Acne,"I discovered that I had a significant rash all over my body this morning. Blackheads and pus-filled pimples are proliferating, and my skin has been scurrying a lot." +292,Acne,"Yesterday, I noticed an enormous rash all over my skin. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot." +293,Acne,"I discovered a huge rash on my skin yesterday. My face is covered of blackheads and pus-filled pimples, and my skin has been crawling a lot." +294,Acne,"My skin has a horrible rash that is absolutely nonheritable. Blackheads and pus-filled pimples abound on it. In addition, my skin has been quite sensitive." +295,Acne,"My skin has merely developed an uninherited rash. It has a lot of pus-filled pimples and blackheads. Furthermore, my skin has been quite sensitive." +296,Acne,"When I awoke this morning, I saw a severe rash across my skin. There are many pus-filled pimples and blackheads all over the place. My skin has also been shifting a lot." +297,Acne,"When I woke up this morning, I saw a terrible rash on my skin. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been shifting a lot." +298,Acne,"I've recently struggled with a really irritating skin rash. There are blackheads and pus-filled pimples all over it. Additionally, my skin has been scurring a lot." +299,Acne,I've recently been dealing with an itching rash on my skin. It's covered in pus-filled pimples and blackheads. My skin has also been quite sensitive. +0,Bronchial Asthma,"I have been feeling extremely tired and weak, and I've also been coughing a lot with difficulty breathing. My fever is very high, and I'm producing a lot of mucus when I cough." +1,Bronchial Asthma,"I've got a cough that won't go away, and I'm exhausted. I've been coughing up thick mucous and my fever is also pretty high." +2,Bronchial Asthma,"I have a persistent cough and have been feeling quite fatigued. My fever is through the roof, and I'm having trouble breathing. When I cough, I also cough up a lot of mucous." +3,Bronchial Asthma,"I've been having issues with exhaustion, a dry cough, and breathing. I have a very high fever and have been coughing up a lot of thick, mucoid phlegm." +4,Bronchial Asthma,"I feel really fatigued and weak, and I have a bad cough. My fever is really high, and my breathing has become shallow. When I cough, a lot of saliva comes out as well." +5,Bronchial Asthma,"I've had a lot of sleepiness, a cough that refuses to go away, and breathing difficulty. I've been coughing up a lot of thick, mucoid saliva and have a high fever." +6,Bronchial Asthma,"doctor, i have been having high fever since past few days , saliva also became thick , dry cough , weakness also seen" +7,Bronchial Asthma,"I have a cough that has continued for days, and I feel really weak and tired. My fever is high, and my breath has become strained. When I cough, I also generate a lot of mucus." +8,Bronchial Asthma,"Mom, Dad, I've been feeling really tired and weak lately, and I've had this cough that just won't go away. It's been hard for me to catch my breath, and my fever has been really high. When I cough, I've been producing a lot of mucus." +9,Bronchial Asthma,"Hey Mom, Hey Dad, I've been feeling really exhausted lately and have had this persistent cough. My breathing has become shallow, and my fever is very high. I've also been coughing up a lot of thick, mucoid sputum" +10,Bronchial Asthma,"Recently, I've felt quite weak and exhausted, and I've also had a cough that simply won't go away. My fever has been really high, and it has been challenging for me to catch my breath. I've been making a lot of mucous when I cough." +11,Bronchial Asthma,"I've felt terribly weak and drained, and I've also had a cough that that won't go away. My fever has been exceptionally high, and it has been challenging to try to catch my breath. I've been creating a lot of mucous when I cough." +12,Bronchial Asthma,"I'm feeling really tired and weak lately, and I've had this cough that just won't go away. My breathing has become shallow, and my fever has been really high. When I cough, I've been producing a lot of thick, mucoid sputum" +13,Bronchial Asthma,"feeling extremely exhausted and have had this persistent cough. It's been hard for me to catch my breath, and my fever is very high. I've also been producing a lot of mucus when I cough" +14,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum." +15,Bronchial Asthma,"I've had a nagging cough that won't go away, and my breathing has become labored. My fever is also very high, and I'm feeling very weak and tired. I've been producing a lot of mucus when I cough" +16,Bronchial Asthma,"I've been experiencing a high fever, a persistent cough, and shortness of breath. I've also been producing a lot of thick, mucoid sputum, and I'm feeling very tired and weak." +17,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so drained and tired from having to deal with all of this." +18,Bronchial Asthma,"I've had this cough that's been lingering for days and difficulty breathing. My fever is sky-high, and I'm feeling so weak and tired. I've also been producing a lot of mucus when I cough, and it's just been so overwhelming to deal with all of these symptoms. I'm getting so frustrated with all of this." +19,Bronchial Asthma,"I've had a persistent cough for days, and I also have breathing problems. I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything." +20,Bronchial Asthma,"I've been struggling with difficulty breathing, a constant cough, and fatigue. My fever is extremely high, and I've been coughing up a lot of thick, mucoid sputum. It's been so hard to deal with all of this, and I'm just feeling so drained and worn out" +21,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so exhausted and tired from having to cope with all of this." +22,Bronchial Asthma,"I've been feeling really ill lately. I've had this persistent cough and difficulty breathing, and my fever has been off the charts. I'm also feeling extremely exhausted, and I've been producing a lot of mucus when I cough. It's just been so overwhelming to deal with all of these symptoms" +23,Bronchial Asthma,"Recently, I've been feeling terrible. My fever has been through the roof, and I've had a persistent cough and breathing problems. I've been coughing up a lot of phlegm and am also feeling quite weary. Dealing with all of these symptoms has been quite difficult." +24,Bronchial Asthma,"I've had a fever, a cough that won't go away, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I feel quite worn out and weak." +25,Bronchial Asthma,"Hey, I've had a dry cough, breathing difficulties, as well as a high fever. a lot of mucous is being produced, and I feel incredibly weak and tired.""" +26,Bronchial Asthma,"Recently, I have had a number of concerning symptoms, including a dry cough, impaired breathing, a high fever, and a lot of mucus. I also feel very weak and tired." +27,Bronchial Asthma,"I am currently dealing with a number of health issues, including a dry cough, difficulty breathing, a high fever, and increased mucus production. I am also feeling very weak and tired" +28,Bronchial Asthma,"its been a week , i am suffering from continious health issues like dry cough , problems in breathing , weakness throughout the day." +29,Bronchial Asthma,"Doctor , from couple of days i am not able to brethe propelry , lying on bed due to high fever , lot of mucus gets out . please suggest me some medicines." +30,Bronchial Asthma,"I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling so drained and exhausted. It's been so hard to deal with all of this." +31,Bronchial Asthma," I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything." +32,Bronchial Asthma," must confess that I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling quite drained and exhausted. It's all been rather tough to deal with, and I'm feeling quite sick at the moment" +33,Bronchial Asthma,"I must admit that I have been having a high fever, a persistent cough, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I've been feeling really depleted and worn out." +34,Bronchial Asthma,"I've been having a tough time with this constant cough, difficulty breathing, and fatigue. My fever is high, and I've been coughing up a lot of thick, mucoid sputum. It's all been rather draining and exhausting, and I'm feeling quite sick at the moment." +35,Bronchial Asthma,"I've been struggling with a persistent cough, breathing issues, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really tiring and exhausting, and right now I'm feeling rather ill." +36,Bronchial Asthma,"I've been dealing with a bad cough, breathing issues, and drowsiness. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really exhausting and exhausting, and right now I'm feeling rather ill." +37,Bronchial Asthma,"My persistent cough, breathing problems, and exhaustion have been making things difficult for me. I've been producing copious amounts of thick, mucoid sputum while also having a high fever. I'm currently feeling fairly ill because everything has been so tiring and exhausting." +38,Bronchial Asthma,"With my persistent cough, respiratory issues, and exhaustion, I've been struggling. I have a high fever and have been producing a lot of thick, mucoid sputum while coughing. I currently feel rather sick as a result of how draining and tiresome everything has been." +39,Bronchial Asthma,"My fever is through the roof, and I'm so weak and tired out. I've been coughing up a lot of mucous, and managing all of these symptoms has been really hard. Everything is making me so upset." +40,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feelinf too tired. Please recommend some medications for me." +41,Bronchial Asthma,"Hey, I've got a dry cough, trouble breathing, and a high fever. I'm producing a lot of mucus and am feeling quite weak and exhausted." +42,Bronchial Asthma,"I've been coughing nonstop for days, and I also have respiratory issues. My fever is through the roof, and I'm so weak and worn out. All of these symptoms have been really challenging for me to control," +43,Bronchial Asthma,"In addition to sleepiness, I've been having trouble breathing due to a persistent cough. I've been coughing up a lot of thick, mucoid sputum and have a high fever." +44,Bronchial Asthma,"I've been struggling to breathe, coughing constantly, and feeling worn out. I have a very high fever and have been coughing up a lot of thick, mucoid saliva. I simply feel so worn out and exhausted from trying to deal with everything." +45,Bronchial Asthma,"I've been experiencing difficulty breathing, a chronic cough, and weariness. I've been producing a lot of thick, mucoid sputum while also running a very high temperature. Due to having to cope with all of this, I'm simply feeling extremely worn out and exhausted." +46,Bronchial Asthma,"Hello, Mom and Father Recently, I've felt incredibly worn out and have had a cough that won't go away. My fever is really high, and my breathing has become shallow. Additionally, I've been coughing up a lot of mucous, thick sputum." +47,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum." +48,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feeling too tired.sometimes mucus has been seen too.Please recommend some medications for me." +49,Bronchial Asthma,"I've had ongoing health problems for a week, including a dry cough, breathing difficulties, and general weakness." +50,Hypertension,"I have been experiencing a headache, chest pain, dizziness, and difficulty maintaining my balance. I also feel like I am having trouble concentrating" +51,Hypertension,"Along with a headache, chest pain, instability, and balance issues, I've also been feeling dizzy. I also think I'm having problems focusing." +52,Hypertension,"Along with a head pain, chest pain, instability, and balance issues, I've also been feeling unwell. I also think I'm having problems focusing." +53,Hypertension,"In addition to a head pain, chest pain, instability, and balance issues, I've already been feeling unwell. I also suppose I'm having issues focusing." +54,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. My ability to concentrate and focus has also been challenging." +55,Hypertension,"I have been having a headache, chest pain, dizziness, and trouble with my balance. It has also been hard for me to focus and concentrate." +56,Hypertension,"I've been encountering trouble walking, a headache, chest pain, and dizziness. My concentration skills and focus has also been challenging." +57,Hypertension,"I've been encountering poor balance, a headache, chest pain, and dizziness. My ability to pay attention and focus has also been problematic." +58,Hypertension,"My coordination has been off, and I've been experiencing a headache, chest pain, and dizziness. Additionally, I've had trouble concentrating and focusing." +59,Hypertension,"My symptoms include a headache, chest pain, dizziness, lack of balance, and trouble concentrating." +60,Hypertension,"I have been experiencing symptoms such as a headache, chest pain, dizziness, loss of balance, and difficulty focusing." +61,Hypertension,"I've been suffering from symptoms including a headache, chest pain, dizziness, losing my balance, and trouble concentrating." +62,Hypertension,"Headache, chest discomfort, dizziness, lack of balance, and difficulty concentrating are some of the symptoms I've been having." +63,Hypertension,"Along with a headache and chest pain, I also experienced fainting and balance issues. Additionally, I've discovered that it's hard for me to focus." +64,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. I've also realised that I'm having trouble focusing." +65,Hypertension,"My balance has been off, and I have a headache, chest pain, and dizziness. I've also observed that it's hard for me to concentrate." +66,Hypertension,"I've been experiencing balance issues, chest pain, headaches, and pains. I've been having trouble focusing as well." +67,Hypertension,"I have been experiencing chest pain, dizziness, and a headache that feels like a continual pressure in my forehead." +68,Hypertension,"I have been feeling lightheaded and unsteady on my feet, and have also noticed a decline in my ability to focus and concentrate." +69,Hypertension,"I've been experiencing dizziness and shakiness, as well as a loss in my attention span and ability to concentrate." +70,Hypertension,"I've been experiencing dizziness and anxiousness, as well as a loss in my attention and concentration and ability to concentrate." +71,Hypertension,"I've had intense aches in my chest, a headache that won't go away, and I've been feeling dizzy and unsteady." +72,Hypertension,"I've had intense aches in my chest, a head  pain that refuses to go away, and I've been feeling dizzy and unsteady." +73,Hypertension,"Along with chest pain, dizziness, and a headache that feels like a narrow zone around my head, I have been having a lot of trouble." +74,Hypertension,"I have been struggling with a headache that feels like a tight band around my head, along with chest pain and dizziness." +75,Hypertension,I've been experiencing balance issues in addition to feeling disoriented and dizzy. My headache has also been present nonstop. +76,Hypertension,"I have been feeling disoriented and dizzy, and have also had trouble keeping my balance. My headache has been a constant presence as well." +77,Hypertension,"I've been experiencing balance issues along with feeling dizzy and lightheaded. Additionally, I've seen a drop in my concentration and focus." +78,Hypertension,"In addition to feeling dizzy and lightheaded, I've been having problems keeping my equilibrium. My capacity to concentrate and focus has also been slipping, I've noticed." +79,Hypertension,"I have been experiencing a headache that feels like a sharp pain in my temples, along with chest pain and dizziness." +80,Hypertension,"Along with a chest pain and dizziness, I've had a headache that seems like a sharp pain in my forehead." +81,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a walk. It's been hard for me to focus and concentrate since then." +82,Hypertension,"While taking a walk, I suddenly started experiencing headache, chest pain, and dizziness after feeling fine all day. Since then, it has been challenging for me to concentrate and focus." +83,Hypertension,"I woke up this morning with a headache and chest pain, and as the day has gone on, I've also been feeling dizzy and unsteady on my feet" +84,Hypertension,"I had a headache and chest pain this morning, and as the day wore on, I also started to feel unsteady and unstable on my feet." +85,Hypertension,"I have been dealing with a headache and chest pain for a few days now, but today the dizziness and loss of balance became much worse." +86,Hypertension,"For a few days now, I've been suffering from a headache and chest pain, but today the dizziness and lack of balance got considerably worse." +87,Hypertension,"I was at work when I started feeling a headache, chest pain, and dizziness. It's been hard for me to concentrate and focus on my tasks since then." +88,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was at work. Since then, it has been challenging for me to focus and concentrate on my work." +89,Hypertension,"I was in the middle of a workout when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to maintain my balance since then" +90,Hypertension,"I instantly experienced a headache, chest pain, and dizziness while working out. Since then, it has been challenging for me to keep my balance." +91,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while driving home from work. It's been hard for me to focus and concentrate on the road since then." +92,Hypertension,"I felt fine all day, but when I was driving home from work, I suddenly started to have headache, chest discomfort, and dizziness. Since then, it has been challenging for me to concentrate and focus while driving." +93,Hypertension,"I was out shopping when I started feeling a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my tasks since then." +94,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was out shopping. Since then, it has been difficult for me to concentrate on my work." +95,Hypertension,"I woke up this morning feeling fine, but as the day went on, I started experiencing a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my work since then." +96,Hypertension,"I felt good when I woke up this morning, but as the day wore on, I began to feel headachey, sick to my stomach, and dizzy. Since then, it has been challenging for me to concentrate and focus on my work." +97,Hypertension,"I was in the middle of a meeting when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on the discussion since then." +98,Hypertension,"I suddenly experienced a headache, chest pain, and dizziness in the middle of a conference. Since then, it has been challenging for me to concentrate and focus on the topic." +99,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a run. It's been hard for me to maintain my balance since then" +100,Migraine,"I have been experiencing acidity and indigestion after meals, as well as frequent headaches and blurred vision." +101,Migraine,"I've been getting frequent headaches and hazy vision, as well as acid reflux and indigestion after meals." +102,Migraine,"I have been having trouble with my vision, seeing things as distorted and experiencing visual disturbances." +103,Migraine,"I've been suffering visual disruptions, seeing things as distorted, and eyesight problems." +104,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties." +105,Migraine,"I have been feeling excessively hungry, even after eating, and have had a stiff neck." +106,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties." +107,Migraine,"I've been grumpy and gloomy lately, and I've also noticed a change in my vision." +108,Migraine,"I have been feeling depressed and irritable, and have noticed a change in my vision." +109,Migraine,"I've been irritated and depressed lately, and I've also noticed a change in my vision." +110,Migraine,"Along with recurrent headaches and blurred vision, I suffer acid reflux and trouble digesting my food." +111,Migraine,"I have been experiencing acid reflux and difficulty digesting my food, along with regular headaches and impaired vision" +112,Migraine,"I have been feeling hungry all the time and have had a sore neck, as well as problems with my vision." +113,Migraine,"In addition to having a stiff neck and eye issues, I have been always hungry." +114,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +115,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux." +116,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been suffering indigestion, headaches, blurred vision, and stomach problems." +117,Migraine,"I have been suffering from acid reflux, indigestion, frequent headaches, and impaired vision, as well as excessive hunger, a sore neck, depression, irritability, and visual disturbance." +118,Migraine,"Along with increased hunger, a sore neck, melancholy, impatience, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and blurred eyesight." +119,Migraine,"Together with increased hunger, a sore neck, anxiety, irritation, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and impaired eyesight." +120,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as regular headaches and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +121,Migraine,"In addition to recurrent headaches and blurred vision, increased appetite, a stiff neck, sadness, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity." +122,Migraine,"In add to frequent headaches and blurred vision, increased appetite, a stiff neck, anxiety, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity." +123,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +124,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been experiencing blurred and distorted vision." +125,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been feeling blurred and distorted vision." +126,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as frequent headaches and impaired vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance" +127,Migraine,"Acidity and indigestion are among the digestive problems I've been having, along with regular headaches, blurred vision, increased hunger, stiff neck, sadness, impatience, and visual disruption." +128,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +129,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and regular headaches." +130,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, anxiety, irritability, and regular headaches, I have also been battling acid reflux, indigestion, and regular headaches." +131,Migraine,"I have been experiencing acidity, indigestion, and frequent headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +132,Migraine,"Stomach acid, indigestion, frequent headaches, hazy and distorted vision, increased appetite, stiff neck, depression, irritation, and visual distortion have all been bothering me." +133,Migraine,"I have been struggling with digestive issues, including acid reflux and indigestion, as well as regular headaches and impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance" +134,Migraine,"I have been experiencing frequent headaches, blurred vision, excessive appetite, a sore neck, sadness, irritability, and digestive problems including indigestion and acid reflux." +135,Migraine,"I have been enduring frequent headaches, blurred vision, excessive appetite, a sore neck, anxiety, irritability, and digestive difficulties including indigestion and acid reflux." +136,Migraine,"I have been experiencing acidity, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance" +137,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion." +138,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion." +139,Migraine,"I have been suffering from acid reflux, indigestion, and frequent headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +140,Migraine,"Along with impaired eyesight, increased appetite, a sore neck, melancholy, impatience, and regular headaches, I've also been experiencing heartburn, acid reflux, and indigestion." +141,Migraine,"Along with impaired seeing, excessive eating, a sore neck, melancholy, impatience, and constant headaches, I've also been fighting heartburn, acid reflux, and indigestion." +142,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort." +143,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been bothering me and interfering with my usual activities." +144,Migraine,"As well as with excessive appetite, a tense neck, depression, irritability, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been disturbing me and interfering with my usual activities." +145,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of distress and making it difficult to go about my daily activities." +146,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent migraines. My regular activities have been made more challenging by these symptoms, which have been causing me a great deal of distress." +147,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent dizziness. My regular activities have been made more tough by these symptoms, which have been causing me a great deal of distress." +148,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort." +149,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of problems and making it difficult to concentrate and function normally." +150,Cervical spondylosis,"I have been experiencing severe back pain, a persistent cough, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance." +151,Cervical spondylosis,"Along with a chronic cough and limb weakness, I've been dealing with excruciating back discomfort. I've been experiencing neck pain as well as vertigo and instability." +152,Cervical spondylosis,"I have been suffering from back pain, a hacking cough, and weakness in my arms and legs. Additionally, my neck hurts and I have had issues with dizziness and maintaining my balance." +153,Cervical spondylosis,"Back pain, a hacking cough, and numbness in my arms and legs have been bothering me. In addition, my neck hurts, and I've having trouble staying balanced and without getting lightheaded." +154,Cervical spondylosis,"Back pain, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy." +155,Cervical spondylosis,"Pain typically, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy." +156,Cervical spondylosis,"I have been struggling with back pain, a cough that won't go away, and weakness in my extremities. My neck hurts and I have had problems with dizziness and losing my balance." +157,Cervical spondylosis,"Back discomfort, a persistent cough, and weakness in my limbs have been bothering me. I have issues with vertigo and losing my equilibrium, and my neck hurts." +158,Cervical spondylosis,"Back discomfort, a breathing difficulty, and weakness in my limbs have been hurting me. I have issues with vertigo and losing my balance, and my neck hurts." +159,Cervical spondylosis,"I have been experiencing intense back pain, a dry cough, and a lack of strength in my limbs. My neck hurts and I have been feeling dizzy and unsteady on my feet." +160,Cervical spondylosis,"I've been struggling with severe back pain, a dry cough, and limb weakness. I've been feeling lightheaded and wobbly on my feet, and my neck hurts." +161,Cervical spondylosis,"I've been battling with back pain, a dry cough, and limb weakness. I've been feeling dizzy and unstable on my feet, and my neck hurts." +162,Cervical spondylosis,"I've been struggling with back pain, a chronic cough, and limb weakness. I've been feeling disoriented and weak on my feet, and my neck hurts." +163,Cervical spondylosis,"I have been suffering from back pain, a productive cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and balance." +164,Cervical spondylosis,"Back pain, a productive cough, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck hurts." +165,Cervical spondylosis,"Backache, a difficulty breathing, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck suffers." +166,Cervical spondylosis,"I have been struggling with back pain, a persistent cough, and weakness in my muscles. My neck hurts and I have had problems with dizziness and loss of balance." +167,Cervical spondylosis,"Back pain, a lingering cough, and muscle weakness have been bothering me. I have issues with dizziness and losing my equilibrium, and my neck hurts." +168,Cervical spondylosis,"Back pain, a chronic cough, and muscle weakness have been bothering me. I have concerns with dizziness and losing my position, and my neck hurts." +169,Cervical spondylosis,"I have been experiencing severe back pain, a cough that comes and goes, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance." +170,Cervical spondylosis,"I've been having intermittent coughing fits, significant back pain, and limb weakness. I've been experiencing neck pain as well as a dizzy and unsteady sensation." +171,Cervical spondylosis,"I've been having periodic coughing fits, terrible back pain, and limb weakness. I've been feeling neck pain as well as a dizzy and unstable sensation." +172,Cervical spondylosis,"I have been dealing with back pain, a cough that won't go away, and weakness in my arms and legs. My neck hurts and I have had problems with dizziness and maintaining my balance." +173,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts." +174,Cervical spondylosis,"Back pain, a dry cough, and stiffness in my arms and legs have been bothering me. I've had problems staying balanced and experience dizziness, and my neck hurts." +175,Cervical spondylosis,"I've been experiencing back pain, a persistent cough, and numbness in my arms and legs. I've been having trouble staying balanced and managing my vertigo, and my neck hurts." +176,Cervical spondylosis,"My arms and legs have been weak, and I have been suffering from back pain and a persistent cough. In addition to experiencing neck pain and balance issues, I also suffer dizziness." +177,Cervical spondylosis,"Back pain, a persistent cough, and arm and leg weakness have been bothering me. I've been experiencing neck pain, balance issues, and dizziness." +178,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts." +179,Cervical spondylosis,"I have been suffering from back pain, a dry cough, and a lack of strength in my muscles. My neck is sore and I have been feeling dizzy and unsteady on my feet" +180,Cervical spondylosis,"Back pain, a dry cough, and a lack of muscle strength have been bothering me. My neck hurts, and I've been feeling lightheaded and shaky." +181,Cervical spondylosis,"My muscles lack strength, and I have been experiencing back pain and a dry cough. I've been experiencing neck pain and feeling lightheaded and unstable on my feet." +182,Cervical spondylosis,"My muscles haven't been very strong, and I've been experiencing back ache. I've been feeling lightheaded and wobbly on my feet, and my neck hurts." +183,Cervical spondylosis,"I've been experiencing back pain, a dry cough, and muscle weakness. I've been experiencing neck pain, feeling lightheaded, and having trouble standing still." +184,Cervical spondylosis,"I have been struggling with intense back pain, a chronic cough, and weakness in my arms and legs. My neck is sore and I have had problems with dizziness and loss of balance." +185,Cervical spondylosis,"I've had terrible back pain, a persistent cough, and weakness in my arms and legs. I have issues with dizziness and balance loss, and my neck hurts." +186,Cervical spondylosis,"I've been suffering from severe back pain, a persistent cough, and numbness in my arms and legs. I've been experiencing issues with vertigo and balance issues, and my neck hurts." +187,Cervical spondylosis,"Along with a persistent cough, weakness in my arms and legs, and severe back pain, I've been having a lot of trouble. I've experienced issues with vertigo and balance loss, and my neck is hurting." +188,Cervical spondylosis,"I have been experiencing severe back pain, a cough that produces phlegm, and weakness in my muscles. My neck also hurts and I have been feeling dizzy and unsteady on my feet." +189,Cervical spondylosis,"In addition to having excruciating back pain, I've also been coughing up mucus and feeling weak all over. I've been feeling lightheaded and unstable on my feet, and my neck hurts as well." +190,Cervical spondylosis,"My muscles have been quite weak, and I've been coughing up phlegm along with significant back discomfort. In addition to feeling weak and disoriented, my neck has been hurting." +191,Cervical spondylosis,"Along with a phlegmy cough and muscle weakness, I've been dealing with excruciating back pain. In addition to feeling woozy and shaky on my feet, my neck has been hurting." +192,Cervical spondylosis,"I have been dealing with back pain, a persistent cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and loss of balance." +193,Cervical spondylosis,"Back ache, a chronic cough, and limb weakness have been bothering me. I have troubles with disorientation and balance loss, and my neck hurts." +194,Cervical spondylosis,"I've had back pain, a cough that won't go away, and limb weakness. I've been experiencing neck pain, instability, and balance concerns." +195,Cervical spondylosis,"I have been suffering from back pain, a chronic cough, and weakness in my arms and legs. My neck hurts and I have been feeling dizzy and off balance" +196,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. My neck hurts, and I've been feeling lightheaded and unsteady." +197,Cervical spondylosis,"I've had back pain, a persistent cough, and weakness in my arms and legs. My neck hurts, and I've been feeling off-balance and woozy." +198,Cervical spondylosis,"I have been struggling with back pain, a productive cough, and weakness in my muscles. My neck is sore and I have had problems with dizziness and unsteady balance." +199,Cervical spondylosis,"Back pain, a productive cough, and muscle weakness have been bothering me. I have issues with dizziness and uneven balance, and my neck hurts." +200,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain." +201,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +202,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach has been hurting." +203,Jaundice,"Extreme itchiness, sickness, and exhaustion have all been plaguing me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +204,Jaundice,I have been having severe itching and vomiting. I am also very tired and have lost weight. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain +205,Jaundice,"I've been experiencing intense itching and nausea. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +206,Jaundice,"I've been throwing up and experiencing intense itching. Along with losing weight, I'm also really exhausted. My skin has become yellow, and my fever is really high. I've been having stomach pain and my pee is black." +207,Jaundice,"Strong itchiness and nausea have been bothering me. I have also lost weight and am really exhausted. I have a high fever, and my skin is becoming yellow. In addition to feeling stomach ache, my pee is black." +208,Jaundice,I've been experiencing terrible itching and nausea. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. I have dark urine and stomach ache. +209,Jaundice,I have been feeling itchy and have been vomiting. I am also very fatigued and have lost weight. My fever is high and my skin has become yellow. My urine is dark and I have abdominal pain +210,Jaundice,"I've been feeling scratchy and throwing up. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have stomach ache and black urine." +211,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. Additionally, I get stomach ache and dark urine." +212,Jaundice,"I've had a scratchy stomach and been throwing up. Aside from losing weight, I am also really exhausted. I have a high fever and yellow skin. Besides having stomach ache, my pee is black." +213,Jaundice,"I've been itchy and throwing up. In addition, I have lost weight and feel really exhausted. My skin has become yellow and I have a severe temperature. I have abdominal ache and black urine." +214,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +215,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain" +216,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having" +217,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +218,Jaundice,"I've had nausea, vomiting, and exhaustion. Additionally, I've lost weight and have a temperature. My urine is black and my skin has turned yellow. I've also been having stomach pain." +219,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well." +220,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +221,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +222,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +223,Jaundice,"I've been constantly feeling scratchy, sick, and tired out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Furthermore, I have been experiencing stomach pain." +224,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain." +225,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain." +226,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain." +227,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts." +228,Jaundice,"Extreme itchiness, nausea, and exhaustion have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present." +229,Jaundice,"Extreme itchiness, nausea, and fatigue have been troubling me. In moreover, I experienced a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present." +230,Jaundice,I have been feeling itchy and have been vomiting. I am also very tired and have lost weight. My fever is high and my skin has become yellow. I have been experiencing abdominal pain as well. +231,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. My stomach has also been hurting recently." +232,Jaundice,"I've had a scratchy stomach and been throwing up. I have also lost weight and am really exhausted. I have a high fever and yellow skin. As well as you, I have been having stomach pain." +233,Jaundice,I've been itchy and throwing up. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. My stomach has also been hurting. +234,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +235,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain" +236,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having" +237,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +238,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well." +239,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +240,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain." +241,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain." +242,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain." +243,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts." +244,Jaundice,"I have been experiencing itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain." +245,Jaundice,"I've been losing weight and experiencing nausea, itching, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +246,Jaundice,"I have been suffering from intense itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain" +247,Jaundice,"I've been losing weight and experiencing severe itching, nausea, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +248,Jaundice,"I have been experiencing severe itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain" +249,Jaundice,"I've been losing weight, feeling really fatigued, and throwing up a lot. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +250,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. I feel nauseous and my muscles are really sore" +251,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot." +252,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot." +253,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. My muscles are quite sore, and I feel sick." +254,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, My muscles hurt a lot, and I feel queasy." +255,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. My muscles hurt a lot, and I feel sick." +256,Malaria,"I've had intense itching all over my body, accompanied by chills and vomiting. My fever is really high and I've been sweating excessively. I also have a headache and feel nauseous. My muscles are really painful." +257,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort." +258,Malaria,"Along with severe body itchiness, chills, and nausea, I've been experiencing. I've been severely perspiring and have a very high fever. I'm feeling queasy and also have a headache. Really hurting muscles are me." +259,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort." +260,Malaria,"I've been experiencing severe body itchiness, along with chills and nausea. I've been perspiring a lot and have an extremely high fever. I feel sick to my stomach and have a headache. My muscles are hurting a lot." +261,Malaria,"I'm suffering from intense itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been bothering me." +262,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +263,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +264,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been bothered by nausea as well as muscle ache." +265,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and have been perspiring a lot. I've also been bothered by nausea and muscular ache." +266,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +267,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +268,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me discomfort." +269,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +270,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache." +271,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. I have a headache and am also perspiring a lot. I've been uncomfortable from nausea and muscle ache, too." +272,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been suffering from nausea as well as muscle ache." +273,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +274,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable." +275,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles." +276,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache." +277,Malaria,"I have a high fever, chills, and severe itching. Along with my headache and excessive sweating, I've been terrible with nausea and muscle ache." +278,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and am perspiring a lot. I've been feeling awful with nausea and muscle ache." +279,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been causing me a lot of discomfort." +280,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I've been really uncomfortable lately from nausea and muscle ache." +281,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. I've been suffering from severe muscle pain and nausea." +282,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, I've been suffering from severe muscle pain and nausea." +283,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been in a lot of agony from muscle ache and nausea." +284,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been bothering me." +285,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +286,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache." +287,Malaria,"I have a high fever, chills, and severe itching. I have a headache and am also perspiring a lot. I've been bothered by nausea as well as muscle ache." +288,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. In addition, I have a headache and am perspiring a lot. I've also been bothered by nausea and muscular ache." +289,Malaria,"I'm suffering from severe itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been causing me discomfort." +290,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +291,Malaria,"I have a high fever, severe itching, chills, and vomiting. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +292,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been uncomfortable from nausea and muscle ache, too." +293,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. In addition, I have a headache and have been perspiring a lot. I've been suffering from nausea as well as muscle ache." +294,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +295,Malaria,"I've been experiencing intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable." +296,Malaria,"Intense scratching, chills, nausea, and a high temperature have been plaguing me. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles." +297,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache." +298,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Along with my headache and excessive sweating, I've been feeling awful with nausea and muscle ache." +299,Malaria,"I've had severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me a lot of discomfort." +0,urinary tract infection,"Frequent urges to urinate with little output, pain during urination, cloudy or bloody urine, strong or foul-smelling urine, pelvic pain, low fever, nausea and vomiting" +1,urinary tract infection,"I get frequent urges to urinate at night with little output, and a lot of pain during urination. The urine is coludy and bloody and sometime foul smelling, and I get nauseous" +2,urinary tract infection,I get a burning sensation when I pee. Sometimes a lot of pain and foul smelling urine. I have been getting more urges to urinate at night +3,urinary tract infection,I have been getting blood in my pee. Sometimes I get nauseous while peeing. This often almost coincides with me having a high temperature +4,urinary tract infection,"My pee looks cloudy and has storng and foul smell. I frequently get an urge to urinate at night, and have been getting high temperatures since these symptoms strted showing" +5,urinary tract infection,"I have pain in my abdomen, and often get feverish. I have sudden and strong urges to pee. The pain is almost constant, and often increases at night time. My pee almost always has a foul smell" +6,urinary tract infection,"I have been frequently getting sudden strong urges to pee. There is blood in my pee sometimes and it is very foul smelling. I think I have an infection, what do I do?" +7,urinary tract infection,"I get blood in my pee sometimes and sometimes get nauseous whie peeing. I also have a bad smell in my pee and sometimes get high temperatures at nights, help me" +8,urinary tract infection,"I have pain in my lower abdomen, and get a buring sensation in my pee. I also have been getting low temperatures since I started to get these other symptoms. I have been weak because of this" +9,urinary tract infection,There is blood in my urine and I have a low fever. My head hurts almost all the time and I get very strong uncontrollable urges to pee. I have been having pain in lower back also +10,urinary tract infection,I have been having low temperatures and bloody pee since some days now. My head hurts like crazy and pee also smells very foul. I have almost no control on my peeing and get very sudden urges +11,urinary tract infection,I have pain near my pelvic region and vomit a lot. Sometimes there is blood in my pee and there is almost a very foul smell in my urine.I sometimes get headches and have trouble sleeping due to this +12,urinary tract infection,"I have to constantly to go the bathroom to relieve myself, but cant seem to empty my bladder. I get these very strong and uncontrollable urges to pee and sometimes get dark or bloody pee" +13,urinary tract infection,I been having very low temperatues and a very foul smelling pee. The area near my kidneys hurt a lot and I cant seem to hold my pee. I often get these uncontrollable urges +14,urinary tract infection,"I have to go the bathroom all the time, but the urine output is very low often just a few drops. My stomach hurts a lot and and cant seem to be able to control my urges to pee" +15,urinary tract infection,My is pee is dark and often bloody and often has a very unfathomable smell. I have been having temperature fluctuations pretty frequently and often am not able to sleep at night because of this +16,urinary tract infection,I have been having pain in my bladder and have been getting +17,urinary tract infection,I have been urinating with blood in it. I occasionally feel queasy when urinating. I frequently almost have a fever at the same time. +18,urinary tract infection,"My pee has a strong, unpleasant scent and a hazy appearance. Since these symptoms started appearing, I regularly feel the desire to urinate at night and have been experiencing high temperatures" +19,urinary tract infection,"My stomach hurts, and I frequently acquire a temperature. I experience sudden, intense cravings to urinate. The discomfort is virtually always there and frequently gets worse at night. My pee nearly always smells bad." +20,urinary tract infection,"I've been experiencing frequent, intense, abrupt cravings to urinate. Sometimes I get blood in my pee, and it smells awful. What should I do if I believe I have an infection?" +21,urinary tract infection,I occasionally urinate with blood in it and occasionally feel queasy while doing so. Help! I also occasionally get high temps at night and have a terrible odour coming from my pee. +22,urinary tract infection,"I have lower abdominal ache and a bursting sensation when I urinate. Since I began to experience these additional symptoms, I have also been experiencing low body temperatures. I've been weak as a result of this." +23,urinary tract infection,"I have a mild temperature and blood in my pee. My head hurts almost constantly, and I frequently experience severe, involuntary desires to urinate. Additionally, I've been experiencing lower back ache" +24,urinary tract infection,"Since a few days ago, I've been experiencing low temperatures and bloody urination. My head is in excruciating pain, and my urine smells awful. I can hardly control when I urinate, and the impulses come on suddenly." +25,urinary tract infection,"I frequently vomit and get discomfort at my pelvic area. My urine occasionally smells almost unbearably bad, and there is occasionally blood in it. Because of my headaches at times, I have problems falling asleep." +26,urinary tract infection,"I have to use the restroom frequently to relieve myself, but I can't seem to get my bladder empty. I occasionally get severe, uncontrolled desires to urinate, as well as black or crimson urine." +27,urinary tract infection,"I've been experiencing really low moods and very bad urine odour. I can't seem to keep my urine back, and the area near my kidneys hurts a lot. I frequently experience these irrational cravings." +28,urinary tract infection,"I have to use the restroom frequently, yet only a few drops of pee are usually produced. My stomach aches a lot, and I can't seem to control the desire to urinate." +29,urinary tract infection,"My urine is frequently black, red, and has a really strange odour. I have been experiencing temperature changes very regularly, which usually prevents me from sleeping at night." +30,urinary tract infection,Blood has been found in my urination. I sometimes have nausea when urinating. I regularly feel like I'm almost feverish. +31,urinary tract infection,My pee smells strongly and is cloudy in appearance. I've had high temperatures and a regular urge to urinate at night since these symptoms first materialised. +32,urinary tract infection,"I've been having frequent, strong, sudden urges to urinate. I occasionally urinate with blood in it, and the stench is horrible. What ought I to do if I think I'm infected?" +33,urinary tract infection,"On rare occasions, I pee with blood in it and have mild nausea. Help! I also occasionally experience high nighttime temperatures and a dreadful urine odour." +34,urinary tract infection,"My lower abdomen hurts, and when I urinate, it feels like it's exploding. I've been having low body temps ever since I started having these new symptoms. Because of this, I've been weak." +35,urinary tract infection,"Blood is in my pee, and I have a low body temperature. I have practically continual headaches and often strong, uncontrollable need to urinate. In addition, I've started having lower back pain." +36,urinary tract infection,"I've had low temps and bloody urine for the past four days. My pee smells terrible, and my head hurts like hell. I scarcely have any control over when I urinate, and the urges strike without warning." +37,urinary tract infection,"I regularly vomit and get pelvic pain. There is occasionally blood in my pee, and it occasionally has an absolutely intolerable odour. I occasionally have trouble falling asleep because of my migraines." +38,urinary tract infection,"I need to relieve myself regularly, but I can't seem to get my bladder to empty. On sometimes, I get intense, uncontrollable urges to urinate, along with dark or red urine." +39,urinary tract infection,"My spirits have been incredibly low, and my pee smells awful. My kidney region hurts a lot, and I can't seem to hold my urine in. I get these unreasonable urges all the time." +40,urinary tract infection,"I have to go to the bathroom a lot, but generally only a few drops of urine come out. I have severe stomach pains and an overwhelming want to urinate." +41,urinary tract infection,"My urine often has a weird odour, is crimson or black in colour, and both. My body's temperature has been fluctuating often, which typically keeps me up at night." +42,urinary tract infection,I noticed blood in my urinating. I occasionally feel sick after urinating. I frequently feel as though I have a fever. +43,urinary tract infection,"My pee has a strong odour and a hazy look. Since these symptoms started, I've had high temperatures and frequent nighttime urges to urinate." +44,urinary tract infection,I occasionally urinate with blood in it and feel a little queasy. Help! I also occasionally get horrible pee odours and excessive overnight temps. +45,urinary tract infection,"My lower abdomen aches, and it feels like it may explode when I urinate. Since I began experiencing these new symptoms, my body temperature has been consistently low. That's why I've been weak." +46,urinary tract infection,"In the last four days, I've experienced low temperatures and blood in my pee. My head hurts so much and my urine smells awful. The desires to urinate seldom come on cue, and I hardly ever have any control over when they do." +47,urinary tract infection,"My pee frequently has an odd smell and is either red or black, or both. The frequent changes in my body temperature usually keep me awake at night." +48,urinary tract infection,My pee smells strongly and seems cloudy. I've had fevers and frequent overnight urination needs ever since these symptoms began. +49,urinary tract infection,"I've had low temps and blood in my urine for the past three days. My pee smells terrible, and my head hurts so much. Urinary urges seldom occur on cue, and I almost never have any control over when they do." +50,allergy,"I have a runny nose and I am sneezing all the time. My eyes are itchy and often watery, and I am coughing all the time. My head hurts and all the time" +51,allergy,I have sore throat and I am sneezing all the time. Sometimes I have swelling on my face like my lips and near my eyes. I just cant stop sneezing once I start sneezing +52,allergy,I hace difficulty in breething and shortness of breath. I cough uncontrollably and get itchy eyes and swelling on my face and other body parts +53,allergy,I have a nasal congestion and blocked nose. Sometimes at night I have chest pain and tightness. I have also lost my sense of smell and taste +54,allergy,I have asthma like symptoms like wheezing and difficulty breathing. I often get fever and have headaches. I feel tired all the time +55,allergy,"I feel tired all the time, I have lost my taste and have a really sore throat. I also get feverish and often have muscle aches. Sometimes my whole body just cramps up" +56,allergy,I have been experiencing a loss of appetite and have difficulty swallowing food. I have been suffering from sore throat and runnny nose also. +57,allergy,"I feel fatigued all the time, and have a tingling sensation in my throat. I have also developed flaky skin. Sometimes I get puffy eyes and sometimes puffs up too." +58,allergy,"I have stomach cramps, nausea and diarrhea. My throat is swollen, and I have difficulty breathing. Sometimes at night night I get chest pain and nauseous." +59,allergy,I have itchy and red skin. Sometimes these result in flaking. My face and lips puff up and causes a lot of inconvinience. I get watery eyes sometimes and headches when the puffing gets severe +60,allergy,"I often sneeze and have a runny nose. My eyes are scratchy and frequently runny, and I frequently cough. My head hurts constantly." +61,allergy,"I often sneeze and have a sore throat. My lips and the area around my eyes occasionally swell. Once I start sneezing, I just can't stop." +62,allergy,"I have trouble breathing and get short of breath. I have a dry, hacking cough, itchy eyes, and swelling all over my face and body." +63,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort at night. I've also lost my ability to taste and smell. +64,allergy,"I get symptoms of asthma, such as wheezing and breathing problems. I frequently have headaches and fever. All the time, I feel exhausted." +65,allergy,"I always feel exhausted, have bad taste, and have an extremely scratchy throat. I also have muscular pain and heat. My entire body simply cramps up occasionally." +66,allergy,"I've been losing my appetite, and I also have trouble swallowing. My nose has been running, and I have a sore throat." +67,allergy,I'm always worn out and experiencing a tingle in my throat. I've also started to have dry skin. My eyes occasionally swell up +68,allergy,"I feel queasy, nauseous, and dizzy. I have a swelling throat and am having breathing issues. I occasionally have chest discomfort and nausea at night." +69,allergy,"My skin is red and scratchy. These can occasionally flake. My cheeks and lips swell, which is really annoying. I occasionally have headaches and runny eyes because to the puffing." +70,allergy,"I frequently sneeze, and my nose runs. I constantly cough, and my eyes are sore and watery. My head hurts all the time." +71,allergy,I have a sore throat and frequently sneeze. Sometimes the skin around my eyes and my lips swells. I just can't stop sneezing once I get going. +72,allergy,"I have respiratory issues and experience breathlessness. My face and torso are swollen, my eyes are itching, and I have a dry, hacking cough." +73,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. Additionally, I've lost my senses of taste and smell." +74,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I constantly feel worn out." +75,allergy,"I always feel worn out, have unpleasant taste in my mouth, and have a really itchy throat. My muscles are also hot and hurting. Sometimes my whole body just cramps up." +76,allergy,"Along with losing my appetite, I've been having swallowing issues. I have a sore throat, and my nose has been running." +77,allergy,I always feel exhausted and have a tickle in my throat. My skin has also started to feel dry. I occasionally get ocular swelling. +78,allergy,"I'm dizzy, nauseated, and shaky. I'm having trouble breathing since my throat is swollen. On occasion, throughout the night, my chest hurts and I feel sick." +79,allergy,"My skin is irritated and inflamed. Sometimes, they can flake. My lips and cheeks expand, and it is really unpleasant. Because of the puffing, I occasionally have headaches and wet eyes." +80,allergy,"My nose runs and I sneeze a lot. My eyes are wet and hurt, and I cough all the time. My head aches constantly." +81,allergy,"I sneeze a lot and have a sore throat. My lips and the skin surrounding my eyes will occasionally swell. Once I start, I just can't stop sneezing." +82,allergy,"I have breathing problems and become out of breath easily. My eyes ache, I have a dry, hacking cough, and my face and body are bloated." +83,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort during the night. I've also lost my ability to smell and taste. +84,allergy,"I get wheezing and breathing difficulties, which are asthma symptoms. I frequently have headaches and fever. I'm continuously exhausted." +85,allergy,"I always feel exhausted, have a bad taste in my mouth, and my throat itches a lot. Also heated and painful are my muscles. My entire body can cramp up at times." +86,allergy,"I've been losing my appetite and having trouble swallowing. My nose has been running, and I have a sore throat." +87,allergy,I always get a tickle in my throat and feel fatigued. My skin has begun to feel dry as well. I have ocular edema on occasion. +88,allergy,"I feel queasy, sick, and wobbly. My throat is enlarged and making it difficult for me to breathe. My chest occasionally pains all through the night, and I occasionally feel ill." +89,allergy,My skin is swollen and itchy. They may occasionally flake. It hurts a lot when my cheeks and lips swell. I occasionally get headaches and watery eyes from the puffing. +90,allergy,"I sneeze a lot and my nose is running. My eyes ache and are damp, and I frequently croak. My head hurts all the time." +91,allergy,"I have a sore throat and a lot of sneezing. There are times when the skin around my eyes and my lips swell. I find that once I start, I just cannot stop." +92,allergy,"I have trouble breathing and easily get out of breath. My face and torso are swollen, my eyes hurt, and I have a dry, hacking cough." +93,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. I've also lost my senses of taste and smell." +94,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I'm always worn out." +95,allergy,"I frequently have exhaustion, a terrible taste in my mouth, and throat itchiness. My muscles are also burning and uncomfortable. Sometimes I have cramps all throughout my body." +96,allergy,"My appetite has decreased, and I've been having swallowing issues. I have a sore throat, and my nose has been running." +97,allergy,"My throat always tickles, and I'm worn out. Additionally, my skin has started to feel dry. Ocular inflammation occasionally affects me." +98,allergy,"I'm nauseous, ill, and shaky. I have a huge throat, which makes it tough for me to breathe. I occasionally have nighttime chest aches and occasional sickness." +99,allergy,"My skin is itching and swollen. Sometimes, they could flake. My lips and cheeks swelling aches a lot. The puffing occasionally gives me headaches and runny eyes." +100,gastroesophageal reflux disease,I often get aburning sensation in my throat while and especially after eating. Sometimes this also leaves a sour or bitter taste in my mouth and I get nauseos beacuse of this +101,gastroesophageal reflux disease,"I have heartburn and indigestion. I often vomit whatever I eat and have difficultly swallowing food, beacuse the food gets stuck in my throat. I have a nagging pain in my upper abdomen" +102,gastroesophageal reflux disease,"I have frequent belching and burping. I have chest pain that often radiates to the back of my neck, jaw and arm. I get a feeling of tightness and pressure on my chest" +103,gastroesophageal reflux disease,"I have a persistent sour taste in my mouth, even when I haven't eaten anything acidic. I get frequent hiccups and a feeling of lump in my throat." +104,gastroesophageal reflux disease,"I have a chronic bad breath and a sour taste in my mouth, It sometimes gets difficult to swallow food because of this tingling sensation in my throat" +105,gastroesophageal reflux disease,"I get frequent heartburn and indigestion, especially eating spicy foods or fatty foods. I get chest pain that gets worse when I lie down or bend over. I also often have chest pain" +106,gastroesophageal reflux disease,"I have a loss of appetite and difficulty swallowing. I often have this persistent feeling of fullness, even after eating small meals. I usually throw up and get heartburn and a tingling sensation in my throat" +107,gastroesophageal reflux disease,"I have a sore throat or hoarseness, especially in the morning. I have a chronic nagging pain in my throat and bad breath. I also have frequent belching" +108,gastroesophageal reflux disease,"I have a feeling of food or acid backing up into my throat. I chest pain which gets worse if I lie down. I get frequent heartburn or indigestion, after eating food and vomit it out" +109,gastroesophageal reflux disease,I feel uneasiness after eating and usually vomit whatever I've eaten. I always have this pain in my abdomen and have really bad acid reflux +110,gastroesophageal reflux disease,"My throat frequently feels like it is burning, especially after eating. Additionally, I occasionally get a sour or bitter aftertaste, which causes me to feel queasy." +111,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and I have trouble swallowing food because it gets caught in my throat. My upper abdomen is bothering me." +112,gastroesophageal reflux disease,"My burping and belching are frequent. I frequently get chest discomfort that spreads to the back of my neck, jaw, and arm. I have pressure and tension in my chest." +113,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have hiccups and a lump in my throat." +114,gastroesophageal reflux disease,"I always have foul breath and a sour taste in my mouth, and occasionally, the tingling in my throat makes it difficult to swallow meals." +115,gastroesophageal reflux disease,"I frequently have heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lie down or stoop over, my chest discomfort worsens. My chest hurts quite a bit too." +116,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after eating little meals, I frequently get this lingering sense of fullness. Typically, I have heartburn, nausea, and tingling in my throat." +117,gastroesophageal reflux disease,"I often wake up with a sore throat or a scratchy voice. My throat hurts constantly, and I also have poor breath. I also frequently burp." +118,gastroesophageal reflux disease,"I feel as though acid or food is backing up into my throat. My chest hurts, and lying down makes it worse. After eating, I frequently have heartburn or indigestion and throw up." +119,gastroesophageal reflux disease,"After eating, I get queasy and frequently throw up everything I've eaten. I always get severe abdominal ache and have terrible acid reflux." +120,gastroesophageal reflux disease,"Especially after eating, my throat regularly feels like it is burning. I also occasionally get a bitter or sour aftertaste, which makes me feel sick." +121,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly vomit everything I eat, and food gets stuck in my throat, making it difficult for me to swallow. I have a pain in my upper abdomen." +122,gastroesophageal reflux disease,"Belching and burping are common in me. I often get chest pain that radiates to the back of my neck, my jaw, and my arm. In my chest, there is pressure and stress." +123,gastroesophageal reflux disease,"I get a sour taste in my mouth all the time, even when there is nothing acidic in my stomach. I often get the hiccups and have a lump in my throat." +124,gastroesophageal reflux disease,"I periodically find it challenging to swallow food due to the tingling in my throat, bad breath, and bad taste in my mouth." +125,gastroesophageal reflux disease," regularly have indigestion and heartburn, especially after eating spicy or fatty foods. My chest pain is worse when I hunch over or lie down. Additionally, my chest hurts a lot." +126,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling." +127,gastroesophageal reflux disease,I frequently get a scratchy voice or a painful throat when I wake up. I have bad breath and a continual sore throat. I also vomit a lot. +128,gastroesophageal reflux disease,My throat feels as though food or acid is backing up. Lying down only makes my chest pain more. I regularly have heartburn or indigestion after eating and puke up. +129,gastroesophageal reflux disease,I often feel sick after eating and puke up the entire meal. I constantly get excruciating acid reflux and severe stomach pain. +130,gastroesophageal reflux disease,"My throat often feels like it is burning, especially after eating. A bitter or sour aftertaste that I occasionally experience also makes me feel unwell." +131,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and it is hard for me to swallow since food gets caught in my throat. My upper abdomen is in discomfort." +132,gastroesophageal reflux disease,"My tendency is to belch and burp frequently. I frequently get chest pain that spreads to my arm, jaw, and the back of my neck. There is pressure and stress in my chest." +133,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups." +134,gastroesophageal reflux disease,"Periodically, the tingling in my throat, poor breath, and bad taste in my mouth make it difficult for me to swallow meals." +135,gastroesophageal reflux disease,"I routinely experience heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lean forward or lie down, my chest discomfort becomes worse. My chest hurts a lot as well." +136,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after little meals, I frequently get this lingering sensation of fullness. My normal symptoms include nausea, heartburn, and tingling in my throat." +137,gastroesophageal reflux disease,"I regularly wake up with a scratchy voice or a sore throat. My throat is constantly irritated, and I have horrible breath. I frequently throw up." +138,gastroesophageal reflux disease,"It feels like food or acid is backing up in my throat. My chest discomfort only becomes worse while I'm lying down. After eating, I frequently have heartburn or indigestion and throw up." +139,gastroesophageal reflux disease,"After eating, I frequently feel unwell and throw up the entire meal. I suffer from painful acid reflux and excruciating stomach discomfort all the time." +140,gastroesophageal reflux disease,"Especially after eating, my throat frequently feels scorching. I occasionally get a bitter or sour aftertaste that makes me feel sick." +141,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly throw up everything I eat, and swallowing is difficult for me since food gets stuck in my throat. I'm experiencing pain in my upper abdomen." +142,gastroesophageal reflux disease,"I have a tendency to burp and belch regularly. I often get chest discomfort that radiates to my arm, jaw, and neck. My chest feels tight and stressed." +143,gastroesophageal reflux disease,"I always get a sour taste in my mouth, even when I don't have anything acidic in my stomach. I regularly have the hiccups and a knot in my throat." +144,gastroesophageal reflux disease,"I occasionally have trouble swallowing food because of the tingling in my throat, terrible breath, and bad taste in my mouth." +145,gastroesophageal reflux disease,"I frequently have indigestion and heartburn, especially after eating spicy or fatty foods. My chest hurts when I lean forward or while I'm lying down. Additionally, my chest hurts a lot." +146,gastroesophageal reflux disease,I regularly feel sick after eating and puke up the entire meal. I constantly get horrible acid reflux agony and stomach discomfort. +147,gastroesophageal reflux disease,"My throat often feels like it's on fire, especially after eating. I occasionally get an aftertaste that is sour or bitter and makes me feel nauseous." +148,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups." +149,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling." +150,drug reaction,"I have a metallic taste in my mouth, and also have a sense of change of taste and smell. Sometimes get very unbearable joint pain and muscle pain" +151,drug reaction,"I have headaches and migraines, have been having difficulty sleeping. I have been having muscle twitching and tremors. Sometimes I get lightheaded" +152,drug reaction,I have fever and feel very dizzy and lightheaded. My heart is beating very fast and I feel very confused. I am not able to think very clearing and everything feels very foggy +153,drug reaction,I have rashes on my skin and these flake off from time to time. This leaves me prone to infection. My fingers start twitching and sometimes I experience tremors. +154,drug reaction,I feel very nauseous and have chest pain. Recently I have been experiencing chest pain. I feel very uneasy and often sweat profusely +155,drug reaction,"I have itching all over my body, and rashes in my chest and back. I get flaky skin from time to time and often this leaves marks on my body." +156,drug reaction,I have hair loss and there is a significant change in the texture of my hair. I have dry and itchy sclap and increased dandruff. My skin is also getting very dry +157,drug reaction,I am experiencing a decrease in my sex drive and difficulty to fucntion sexually. I feel very light headed and confused and often experince brain fog +158,drug reaction,I am experiencing changes in my menstrual cycle and unexpected vaginal discharge. I often get mood swings and feel agitated from time to time +159,drug reaction,I have experinenced significant weight gain and become very obese. I have changes in my appetite and cravings for different foods +160,drug reaction,I have difficulty in maintianing concentration and very low mental clarity. I often forget things and in general have difficulty remembering things +161,drug reaction,"In addition to experiencing a change in taste and fragrance, I also have a metallic aftertaste in my tongue. occasionally get excruciating joint and muscular pain" +162,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My muscles have been trembling and twitching. I sometimes feel dizzy." +163,drug reaction,"I'm feeling really lightheaded and dizzy when I have a temperature. My mind is completely muddled, and my heart is racing. I find it difficult to think clearly, and everything seems quite hazy." +164,drug reaction,"My skin occasionally peels off the rashes that I have. This makes me more vulnerable to infections. My hands begin to shake, and occasionally I have tremors." +165,drug reaction,I have severe nausea and chest discomfort. I have been having chest discomfort lately. I often shiver a lot and feel really nervous. +166,drug reaction,"I have rashes in my chest and back and itch all over my body. I occasionally have flaky skin, which frequently creates markings on my body." +167,drug reaction,"My hair's texture has significantly changed, and I'm experiencing hair loss. My scalp is dry and itching, and my dandruff is becoming worse. My skin is also becoming really dry." +168,drug reaction,"My sex desire has decreased, and I'm finding it harder to function sexually. I regularly have brain fog and feel quite dizzy and disoriented." +169,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I frequently experience mood swings and experience occasional agitation." +170,drug reaction,"I've gained a lot of weight and am now quite fat. My appetite varies, and I have desires for various things." +171,drug reaction,"I struggle to maintain focus, and my mental clarity is really poor. I have trouble remembering things and frequently forget stuff." +172,drug reaction,My tongue also has a metallic aftertaste in addition to a change in taste and scent. occasionally get acute muscle and joint ache +173,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. My entire body has been shaking and twitching. Sometimes I become lightheaded." +174,drug reaction,"When I have a fever, I feel quite woozy and lightheaded. My heart is pounding, and my head is absolutely foggy. My ability to think properly is impaired, and everything appears to be somewhat blurry." +175,drug reaction,"My rashes occasionally cause my skin to peel off. I'm more susceptible to illnesses as a result. I start to tremble sometimes, and my hands start to shake." +176,drug reaction,"Both chest pain and extreme nausea are present. Recently, my chest has been hurting. I frequently shiver a lot and am really anxious." +177,drug reaction,"My body itches all over, and I have rashes on my back and chest. My skin can be flaky on sometimes, which commonly results in body marks." +178,drug reaction,"I'm losing hair, and my hair's texture has considerably altered. My dandruff is becoming worse, and my dry, itchy scalp. My skin is getting quite dry as well." +179,drug reaction,"My desire for sex has dropped, and I'm having trouble having sex. I frequently get brain fog, as well as feeling somewhat bewildered." +180,drug reaction,"I've noticed a difference in my monthly cycle and an unexpected vaginal discharge. I become irritable every now and again, and my moods swing a lot." +181,drug reaction,I have put on a lot of weight and am now very obese. I have different urges and different appetites. +182,drug reaction,I have terrible mental clarity and find it difficult to stay focused. I regularly forget things and have problems remembering things. +183,drug reaction,"Along with a change in taste and smell, my tongue also has a metallic aftertaste. occasionally get severe joint and muscular pain" +184,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My whole body has been trembling and shivering. At times, I have dizziness." +185,drug reaction,"I am quite queasy and dizzy when I have a temperature. My brain is completely cloudy, and my heart is racing. I'm having trouble thinking straight, and everything seems a little fuzzy." +186,drug reaction,"Sometimes my skin starts to flake off from my rashes. I'm more prone to becoming sick as a result. On occasion, my hands begin to quiver and I begin to tremble." +187,drug reaction,There is severe nausea and chest discomfort. My chest has been aching lately. I'm really nervous and shiver a lot of the time. +188,drug reaction,"I have rashes on my back and chest, and my entire body itches. My skin may be dry and flaky at times, which frequently leaves body marks." +189,drug reaction,"I'm shedding hair, and the texture of my hair has changed significantly. My dry, itchy scalp and dandruff are becoming worse. My skin is also becoming pretty dry." +190,drug reaction,"I no longer want to have sex, and it's difficult for me to do so. I regularly have brain fog and a sense of confusion." +191,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I occasionally lose my temper, and my moods change a lot." +192,drug reaction,I've gained a lot of weight and am currently quite fat. I have many inclinations and cravings. +193,drug reaction,I have awful mental clarity and have trouble focusing. I frequently forget things and struggle with memory. +194,drug reaction,"My tongue also changes in taste and scent, leaving a metallic aftertaste. can have excruciating joint and muscle pain" +195,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. I've been shaking and shivering all over. Sometimes I become lightheaded." +196,drug reaction,"When I have a temperature, I feel pretty nauseous and lightheaded. My heart is pounding, and my mind is absolutely foggy. Everything feels a little hazy to me, and I'm having difficulties thinking clearly." +197,drug reaction,"My rashes occasionally cause my skin to start to fall off. I'm more likely to get ill as a result. My hands occasionally start to tremble, and I start to shake." +198,drug reaction,"Chest pain and severe nausea are present. Recently, my chest has been hurting. I tremble a lot and am quite anxious." +199,drug reaction,"My entire body itches, and I have rashes on my back and chest. Sometimes my skin might be dry and flaky, which often results in body stains." +200,peptic ulcer disease,"I have a burning sensation in my upper abdomen, ofetn between or at night. I have heartburn and indigestion and often feel very nauseous" +201,peptic ulcer disease,I have bloating and a feeling of uneasiness. I have been experiencing weight loss and a loss of appetite. Sometimes I have dark and tarry stools and blood in my vomit +202,peptic ulcer disease,I have difficulty swallowing food and often get a sensation of the food getting stuck in my throat. I have constant belching and bloating. There is a persitent sour taste in my mouth +203,peptic ulcer disease,I have been having bloody stools which has resulted in bloos loss and loss of iron. Thiis has caused me anemia and I feel very weak in general +204,peptic ulcer disease,"I have persistant, gnawing hunger and apetite. Sometimes I get abdominal cramps and spasms. There is bloating and gas after eating which causes me a great deal of uneasiness" +205,peptic ulcer disease,"I have changes in my bowel movements, such as constipation and diarrhea. I have a loss of appetite and energy and often feel very fatigued" +206,peptic ulcer disease,I have abdominal pain and it gets only worse if I bend over or lie down. I feel discomfort when I eat certain foods such as spicy or acidic food. Sometimes I get loose stools because of this +207,peptic ulcer disease,I have difficulty sleeping due to abdominal pain or discomfort. I have a loss of appetite and feel fatigued after going to the bathroom. I feel very tited all the time +208,peptic ulcer disease,I have a sour acidic taste in my mouth. I have frequent belching and burping. I have a feeling of pressure or fullness in my upper abdomen that last for a few hours +209,peptic ulcer disease,I have unintended weight loss and difficulty gaining weight. I have pain and discomfort that is relieved by taking antacids. My mouth tastes very bad +210,peptic ulcer disease,"Occasionally throughout the day or at night, I have burning in my upper abdomen. I get indigestion, heartburn, and frequent bouts of extreme nausea." +211,peptic ulcer disease,"Bloating and unease are both present in me. I've been losing weight and losing interest in food. I occasionally get tarry, black stools and vomit that contains blood." +212,peptic ulcer disease,"I have trouble swallowing, and I frequently feel like food is getting stuck in my throat. I feel bloated and belch constantly. I always get a sour taste in my mouth." +213,peptic ulcer disease,"My bloody stools have caused me to lose iron and bloos, among other things. I now have anaemia from this, and I generally feel quite weak." +214,peptic ulcer disease,"My hunger and appetite are persistent and ravenous. Periodically, my stomach may cramp and spasm. After eating, I have bloating and gas, which makes me quite uncomfortable." +215,peptic ulcer disease,"My bowel motions have changed; they've been constipated and diarrhoeal. I lack energy, appetite, and frequently feel really exhausted." +216,peptic ulcer disease,"I have stomach ache, and bending over or lying down just makes it worse. When I consume certain meals, such as spicy or acidic cuisine, I have discomfort. This sometimes causes me to have loose stools." +217,peptic ulcer disease,"I have trouble falling or staying asleep because of stomach ache. After using the restroom, I feel drained and lose my appetite. I constantly feel really anxious." +218,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. My burping and belching are frequent. For a few hours, I get pressure or fullness in my upper belly." +219,peptic ulcer disease,I lose weight unintentionally and find it challenging to acquire weight. I use antacids to ease the pain and discomfort I experience. My mouth feels horrible. +220,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I get heartburn, indigestion, and regular episodes of severe nausea." +221,peptic ulcer disease,"I feel bloated and uneasy at the same time. I've been losing weight, and I no longer like eating. I occasionally get bloody vomit and dark, tarry stools." +222,peptic ulcer disease,I often feel like food is getting caught in my throat and have problems swallowing. I feel bloated and frequently belch. I constantly have a bitter aftertaste. +223,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. Because of this, I now have anaemia and usually feel fairly weak." +224,peptic ulcer disease,"My appetite and chronic hunger are both ferocious. My stomach may occasionally ache and spasm. I have gas and bloating after eating, which is really painful." +225,peptic ulcer disease,My bowel movements have become constipated and diarrheal. I often feel quite tired and lack both energy and appetite. +226,peptic ulcer disease,"Bending down or reclining down only makes my stomach feel more. I have pain after eating some foods, such as hot or acidic food. I occasionally get loose stools as a result of this." +227,peptic ulcer disease,"Due to a stomach discomfort, I have problems sleeping or staying asleep. I am exhausted after using the bathroom and lose my appetite. I'm quite nervous all the time." +228,peptic ulcer disease,"A sour, acidic taste is all over my mouth. Belching and burping are common in me. I have pressure or fullness in my upper abdomen for a few hours." +229,peptic ulcer disease,"I unknowingly lose weight and find it difficult to gain weight. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so much." +230,peptic ulcer disease,"On occasion, throughout the day or at night, I have burning in my upper abdomen. I frequently get extreme nauseous episodes, heartburn, and indigestion." +231,peptic ulcer disease,"I have both bloating and unease. I no longer like eating because I've been losing weight. I sometimes vomit blood and have tarry, black stools." +232,peptic ulcer disease,I frequently get swallowing issues and the sensation that food is getting stuck in my throat. I regularly belch and feel bloated. My aftertaste is unpleasant all the time. +233,peptic ulcer disease,"My bloody stools have caused me to lose a lot of things, including iron and bloos. I now have anaemia as a result, and I typically feel rather weak." +234,peptic ulcer disease,"Both my appetite and ongoing hunger are fierce. There are times when my stomach hurts and cramps. Following a meal, I have very painful gas and bloating." +235,peptic ulcer disease,Constipated and diarrheal bowel motions have been happening to me. I frequently have a lack of energy and appetite. +236,peptic ulcer disease,"My stomach only feels worse when I stoop or recline. After eating particular meals, such as spicy or acidic cuisine, I have discomfort. This occasionally causes me to have loose stools." +237,peptic ulcer disease,"I have a stomach ache that keeps me from falling or staying asleep. After using the restroom, I feel worn out and lose interest in food. I'm constantly pretty anxious." +238,peptic ulcer disease,"My mouth is filled with an acidic, sour flavour. Burping and belching are frequent in me. For a few hours, my upper abdomen has felt pressured or full." +239,peptic ulcer disease,I inadvertently lose weight and have a hard time gaining it back. I use antacids to get rid of the pain and discomfort I experience. It aches so much in my mouth. +240,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I regularly get severe heartburn, indigestion, and nausea." +241,peptic ulcer disease,"I'm feeling both bloated and uneasy. Because I've been losing weight, I no longer like eating. I occasionally get tarry, black stools and blood in my vomit." +242,peptic ulcer disease,"I regularly have trouble swallowing, and I sometimes feel like food is becoming trapped in my throat. I frequently feel bloated and belch. Every time, I have a bad aftertaste." +243,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. As a result, I now have anaemia and generally feel rather weak." +244,peptic ulcer disease,I have a strong appetite and am constantly hungry. My stomach occasionally aches and cramps. I have really painful gas and bloating after eating. +245,peptic ulcer disease,I've been experiencing bowel movements that are both constipated and diarrhoeic. I often lack the will to eat and energy. +246,peptic ulcer disease,"Only when I hunch down or lie down does my stomach hurt more. I have pain after eating certain foods, such as hot or acidic food. I occasionally get loose stools as a result of this." +247,peptic ulcer disease,I can't get to sleep or remain asleep because I have a stomach pain. I get exhausted after using the bathroom and stop being hungry. I worry a lot of the time. +248,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. I have frequent belching and burping. My upper abdomen has felt pressed in or full for the past few hours." +249,peptic ulcer disease,"I unintentionally lose weight and find it challenging to gain it back. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so severely right now." +250,diabetes,I have increased thirst and frequent urination. I often have a dry mouth and throat. Recently I have been having increased hunger and appetite +251,diabetes,I have blurred vision and it only seems to be getting worse. I feel fatigued and tired all the time. I also feel very dizzy and light headed at times +252,diabetes,I have a dry mouth and throat. I also have been experiencing an increased appetite and hunger. However I do feel very tired at times +253,diabetes,I have slow healing of wounds and cuts. I have this tingling sensation in my hand and numbness in both my hands and feet +254,diabetes,I have mood changes and have difficulty concentrating. My mind feels hazy and foggy at times and it gets difficult to do even regular chores +255,diabetes,I have a feeling of tremors and muscle twitching. I have decreased sense of smell or taste and I feel fatigued. Sometimes I have a feeling of rapid hearbeat or palipatations +256,diabetes,I have rashes and skin irritations especially in the folds of the skin. There is also very slow healing of any cuts and bruises I have on my skin +257,diabetes,I have a frequent need to urinate and often have these uncontrollable urges. I feel dizzy and often confused. I have also been loss of visuals +258,diabetes,I have difficulty breathing especially during physical activity. I have unusual sweating and flushing. I frequently get yeast infections +259,diabetes,I have persistent dry cough. My infections dont seem to be healing and I have palpitations. I also have this problem of sore throat that does seem to go away +260,diabetes,"I'm drinking more water and urinating more frequently. My throat and mouth are frequently dry. Recently, my appetite and hunger have both grown." +261,diabetes,"My vision is foggy, and it seems to be growing worse. I'm constantly feeling worn out and exhausted. Additionally, I occasionally have severe lightheadedness and dizziness." +262,diabetes,My throat and mouth are dry. I've also been feeling more hungry and more hungry. But sometimes I do feel quite exhausted. +263,diabetes,I have a sluggish wound and reduced healing rate. My hands and feet are both numb and have this tingling sensation. +264,diabetes,"I struggle to focus and have emotional swings. At times, my head seems cloudy and foggy, making it challenging for me to do even simple tasks." +265,diabetes,I feel my muscles trembling and shaking. I feel worn out and my senses of taste and smell have diminished. Sometimes I have palpitations or a quick heartbeat. +266,diabetes,"I experience skin irritations and rashes, especially in my skin's creases. Any wounds and bruises I have on my skin also heal quite slowly." +267,diabetes,I frequently feel the want to urinate and frequently have these strong cravings. I frequently feel woozy and bewildered. I've also had sight loss. +268,diabetes,"I have trouble breathing, especially when exercising. I'm flushed and sweating in an unexpected way. I have yeast infections a lot." +269,diabetes,"I have a chronic dry cough. I have palpitations and my infections don't appear to be getting better. I also have a painful throat issue, although it does seem to go away." +270,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat regularly feel dry. My appetite and hunger have both increased recently. +271,diabetes,"I have blurry vision, and it seems to be getting worse. I'm continuously fatigued and worn out. I also occasionally have acute lightheadedness and vertigo." +272,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. But on occasion, I do feel rather worn out." +273,diabetes,My wound is healing slowly and at a slower rate. My hands and feet are numb and tingling at the same time. +274,diabetes,"I have trouble focusing, and my emotions fluctuate. My brain might seem murky and foggy at times, making it difficult for me to complete even straightforward chores." +275,diabetes,"My body is shaking and trembling. My senses of taste and smell have gotten weaker, and I feel exhausted. I occasionally have palpitations or a rapid pulse." +276,diabetes,"I have rashes and skin irritations, especially in the crevices of my skin. My skin bruises and cuts also take a long time to heal." +277,diabetes,I often feel the want to urinate and experience these intense desires. I often feel dizzy and confused. I also lost my sight. +278,diabetes,"I have respiratory issues, especially when doing out. Unexpectedly, I'm sweating and flushed. I frequently have yeast infections and urinary tract infections" +279,diabetes,"I constantly have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat hurts occasionally, but it does appear to get better." +280,diabetes,"I've been drinking more water and urinating more frequently. My throat and mouth frequently feel dry. Recently, both my hunger and appetite have grown." +281,diabetes,"My vision is foggy, and it appears to be growing worse. I feel exhausted and worn out all the time. I also have severe dizziness and lightheadedness on occasion." +282,diabetes,"My throat and mouth are dry. I've also been getting hungry more and more. I do, however, occasionally feel rather exhausted." +283,diabetes,My wound is recovering more slowly now. Both my hands and feet are tingling and going numb. I feel very weak +284,diabetes,"My emotions change, and I have difficulties focusing. At times, my mind might be cloudy and hazy, making it challenging for me to do even simple tasks." +285,diabetes,"My entire body is trembling and shaky. I've lost my ability to taste and smell, and I'm worn out. I sometimes get a racing heart or palpitations." +286,diabetes,"I get skin irritations and rashes, especially in my skin's crevices. Cuts and bruises on my skin also take a while to heal." +287,diabetes,"I frequently feel the want to urinate and have these strong cravings. I get woozy and disoriented a lot. Moreover, I have lost my vision considerably" +288,diabetes,"I have breathing problems, especially when I'm outside. I'm suddenly flushed and perspiring. I experience yeast infections and urinary tract infections rather regularly." +289,diabetes,"I have a dry cough that never stops. I have palpitations and my infections don't appear to be getting better. Sometimes my throat hurts, but it seems to get better." +290,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat feel dry a lot. My hunger and appetite have both increased recently. +291,diabetes,"My vision is blurry, and it feels like it's getting worse. All the time, I feel worn out and fatigued. I occasionally have extreme lightheadedness and vertigo as well." +292,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. However, I do get periodic bouts of exhaustion." +293,diabetes,My wound is healing more slowly these days. My feet and hands are tingling and becoming numb. I feel really fragile. +294,diabetes,"My emotions fluctuate, and it's hard for me to concentrate. My mind can be foggy and foggy at times, making it difficult for me to perform even simple chores." +295,diabetes,"I'm shaking and trembling all over. I've lost my sense of taste and smell, and I'm exhausted. I occasionally get palpitations or a speeding heart." +296,diabetes,"Particularly in the crevices of my skin, I have skin rashes and irritations. My skin bruises and cuts take a while to heal as well." +297,diabetes,I regularly experience these intense urges and the want to urinate. I frequently feel drowsy and lost. I've also significantly lost my vision. +298,diabetes,"I have trouble breathing, especially outside. I start to feel hot and start to sweat. I frequently have urinary tract infections and yeast infections." +299,diabetes,"I constantly sneeze and have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat does ache occasionally, but it usually gets better." diff --git a/LLMs/final_dataset.csv b/LLMs/final_dataset.csv new file mode 100644 index 0000000000000000000000000000000000000000..5976d9767e4e44406ae69f4c65896713dc4ad348 --- /dev/null +++ b/LLMs/final_dataset.csv @@ -0,0 +1,4921 @@ +,prognosis,symptoms_text +0,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +1,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +2,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +3,Fungal infection,"itching,skin_rash,dischromic _patches" +4,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +5,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +6,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +7,Fungal infection,"itching,skin_rash,dischromic _patches" +8,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +9,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +10,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +11,Allergy,"shivering,chills,watering_from_eyes" +12,Allergy,"continuous_sneezing,chills,watering_from_eyes" +13,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +14,Allergy,"continuous_sneezing,shivering,chills" +15,Allergy,"shivering,chills,watering_from_eyes" +16,Allergy,"continuous_sneezing,chills,watering_from_eyes" +17,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +18,Allergy,"continuous_sneezing,shivering,chills" +19,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +20,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +21,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +22,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +23,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +24,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain" +25,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough" +26,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +27,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +28,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +29,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +30,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +31,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +32,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +33,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +34,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +35,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes" +36,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +37,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain" +38,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +39,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +40,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +41,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +42,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +43,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +44,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +45,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination" +46,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +47,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +48,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +49,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +50,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +51,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +52,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +53,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +54,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +55,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching" +56,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching" +57,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases" +58,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +59,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +60,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +61,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +62,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +63,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts" +64,AIDS,"muscle_wasting,patches_in_throat,high_fever" +65,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +66,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +67,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +68,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +69,AIDS,"muscle_wasting,patches_in_throat,high_fever" +70,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +71,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +72,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +73,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +74,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +75,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +76,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +77,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria" +78,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria" +79,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria" +80,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +81,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +82,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +83,Gastroenteritis,"vomiting,dehydration,diarrhoea" +84,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +85,Gastroenteritis,"vomiting,sunken_eyes,dehydration" +86,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +87,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +88,Gastroenteritis,"vomiting,dehydration,diarrhoea" +89,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +90,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +91,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +92,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +93,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum" +94,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum" +95,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum" +96,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history" +97,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +98,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +99,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +100,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +101,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +102,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +103,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +104,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration" +105,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance" +106,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +107,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +108,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +109,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +110,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +111,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +112,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +113,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +114,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +115,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances" +116,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances" +117,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances" +118,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances" +119,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability" +120,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +121,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +122,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +123,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +124,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance" +125,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance" +126,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness" +127,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +128,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +129,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +130,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +131,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +132,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +133,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +134,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +135,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side" +136,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +137,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +138,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +139,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +140,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +141,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +142,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +143,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +144,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +145,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain" +146,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain" +147,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain" +148,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain" +149,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine" +150,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +151,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +152,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +153,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +154,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +155,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain" +156,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain" +157,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain" +158,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain" +159,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +160,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +161,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +162,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +163,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +164,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +165,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +166,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +167,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +168,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body" +169,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body" +170,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body" +171,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body" +172,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain" +173,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +174,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +175,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +176,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +177,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +178,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +179,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +180,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +181,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +182,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +183,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain" +184,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain" +185,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain" +186,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)" +187,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +188,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +189,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +190,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +191,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +192,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +193,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +194,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +195,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +196,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +197,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +198,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +199,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain" +200,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +201,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +202,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +203,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +204,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +205,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +206,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +207,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +208,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +209,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +210,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +211,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +212,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +213,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +214,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history" +215,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history" +216,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +217,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +218,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +221,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +222,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +223,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +224,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +225,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +226,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +227,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes" +228,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes" +229,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain" +230,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding" +231,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +232,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +233,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +234,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +235,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +236,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +237,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +238,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +239,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +240,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +241,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +242,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +243,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +244,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +245,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +246,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1" +247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1" +248,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption" +249,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +250,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +251,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +252,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +253,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +254,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +255,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +256,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +257,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +258,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +259,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +260,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +261,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +262,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +263,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +264,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +265,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +266,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +267,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +268,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +269,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +270,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum" +271,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +272,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +273,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +274,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +275,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +276,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +277,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +278,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +279,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +280,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +281,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +282,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +283,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +284,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus" +285,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus" +286,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus" +287,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool" +288,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +289,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +290,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +291,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +292,Heart attack,"breathlessness,sweating,chest_pain" +293,Heart attack,"vomiting,sweating,chest_pain" +294,Heart attack,"vomiting,breathlessness,chest_pain" +295,Heart attack,"vomiting,breathlessness,sweating" +296,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +297,Heart attack,"breathlessness,sweating,chest_pain" +298,Heart attack,"vomiting,sweating,chest_pain" +299,Heart attack,"vomiting,breathlessness,chest_pain" +300,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +301,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +302,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +303,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +304,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +305,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +306,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf" +307,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +308,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels" +309,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +310,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +312,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +313,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +314,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +315,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +316,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +317,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +318,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +319,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +320,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +321,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +322,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +323,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +324,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +325,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +326,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +327,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +328,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +329,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation" +330,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations" +331,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +332,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +333,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +334,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +335,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +336,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +337,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +339,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +340,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +341,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +342,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +343,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +344,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking" +345,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking" +346,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking" +347,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints" +348,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +349,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +350,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +351,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +352,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking" +353,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking" +354,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking" +355,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking" +356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +357,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness" +358,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +359,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +360,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +361,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +362,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +363,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness" +364,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness" +365,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +366,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness" +367,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance" +368,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +369,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +370,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +371,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +372,Acne,"pus_filled_pimples,blackheads,scurring" +373,Acne,"skin_rash,blackheads,scurring" +374,Acne,"skin_rash,pus_filled_pimples,scurring" +375,Acne,"skin_rash,pus_filled_pimples,blackheads" +376,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +377,Acne,"skin_rash,pus_filled_pimples,blackheads" +378,Acne,"skin_rash,pus_filled_pimples,scurring" +379,Acne,"skin_rash,blackheads,scurring" +380,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +381,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +382,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +383,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine" +384,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +385,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine" +386,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +387,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +388,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +389,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +390,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +391,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +392,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +393,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +394,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +395,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails" +396,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails" +397,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails" +398,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +399,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +400,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +401,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +402,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +403,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +404,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +405,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze" +406,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze" +407,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose" +408,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +409,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +410,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +411,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +412,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +413,Fungal infection,"itching,skin_rash,dischromic _patches" +414,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +415,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +416,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +417,Fungal infection,"itching,skin_rash,dischromic _patches" +418,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +419,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +420,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +421,Allergy,"shivering,chills,watering_from_eyes" +422,Allergy,"continuous_sneezing,chills,watering_from_eyes" +423,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +424,Allergy,"continuous_sneezing,shivering,chills" +425,Allergy,"shivering,chills,watering_from_eyes" +426,Allergy,"continuous_sneezing,chills,watering_from_eyes" +427,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +428,Allergy,"continuous_sneezing,shivering,chills" +429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +431,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +432,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +433,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +434,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain" +435,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough" +436,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +437,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +438,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +439,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +440,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +441,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +442,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +443,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +444,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +445,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes" +446,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain" +448,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +449,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +450,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +451,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +452,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +453,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +454,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +455,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination" +456,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +457,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +458,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +459,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +460,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +461,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +462,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +463,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +464,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching" +466,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching" +467,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases" +468,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +469,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +470,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +471,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +472,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +473,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts" +474,AIDS,"muscle_wasting,patches_in_throat,high_fever" +475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +476,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +477,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +478,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +479,AIDS,"muscle_wasting,patches_in_throat,high_fever" +480,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +481,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +482,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +483,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +484,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +485,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +486,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +487,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria" +488,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria" +489,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria" +490,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +491,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +492,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +493,Gastroenteritis,"vomiting,dehydration,diarrhoea" +494,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +495,Gastroenteritis,"vomiting,sunken_eyes,dehydration" +496,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +497,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +498,Gastroenteritis,"vomiting,dehydration,diarrhoea" +499,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +500,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +501,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +502,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +503,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum" +504,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum" +505,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum" +506,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history" +507,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +508,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +509,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +510,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +511,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +512,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +513,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +514,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration" +515,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance" +516,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +517,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +518,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +519,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +520,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +521,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +522,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +523,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +524,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +525,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances" +526,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances" +527,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances" +528,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances" +529,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability" +530,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +531,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +532,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +533,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +534,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance" +535,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance" +536,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness" +537,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +538,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +539,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +540,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +541,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +542,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +543,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +544,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +545,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side" +546,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +547,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +548,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +549,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +550,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +551,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +552,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +553,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +554,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +555,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain" +556,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain" +557,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain" +558,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain" +559,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine" +560,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +561,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +562,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +563,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +564,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +565,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain" +566,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain" +567,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain" +568,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain" +569,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +570,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +571,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +572,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +573,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +574,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +575,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +576,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +577,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +578,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body" +579,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body" +580,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body" +581,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body" +582,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain" +583,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +584,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +585,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +586,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +587,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +588,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +589,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +590,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +591,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +592,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +593,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain" +594,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain" +595,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain" +596,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)" +597,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +598,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +599,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +600,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +601,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +602,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +603,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +604,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +605,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +606,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +607,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +608,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +609,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain" +610,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +611,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +612,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +613,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +614,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +615,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +616,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +617,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +618,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +619,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +620,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +621,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +622,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +623,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +624,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history" +625,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history" +626,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +627,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +628,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +631,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +632,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +633,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +634,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +635,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +636,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +637,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes" +638,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes" +639,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain" +640,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding" +641,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +642,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +643,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +644,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +645,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +646,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +648,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +649,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +650,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +651,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +652,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +653,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +654,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +655,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +656,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1" +657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1" +658,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption" +659,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +660,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +661,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +662,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +663,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +664,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +665,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +666,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +667,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +668,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +669,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +670,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +671,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +672,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +673,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +674,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +675,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +676,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +677,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +678,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +679,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +680,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum" +681,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +682,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +683,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +684,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +685,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +686,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +687,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +688,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +689,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +690,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +691,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +692,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +693,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +694,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus" +695,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus" +696,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus" +697,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool" +698,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +699,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +700,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +701,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +702,Heart attack,"breathlessness,sweating,chest_pain" +703,Heart attack,"vomiting,sweating,chest_pain" +704,Heart attack,"vomiting,breathlessness,chest_pain" +705,Heart attack,"vomiting,breathlessness,sweating" +706,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +707,Heart attack,"breathlessness,sweating,chest_pain" +708,Heart attack,"vomiting,sweating,chest_pain" +709,Heart attack,"vomiting,breathlessness,chest_pain" +710,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +711,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +712,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +713,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +714,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +715,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +716,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf" +717,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +718,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels" +719,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +720,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +722,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +723,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +724,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +725,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +726,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +727,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +728,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +729,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +730,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +731,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +732,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +733,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +734,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +735,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +736,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +737,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +739,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation" +740,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations" +741,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +742,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +743,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +744,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +745,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +746,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +747,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +749,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +750,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +751,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +752,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +753,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +754,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking" +755,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking" +756,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking" +757,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints" +758,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +759,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +760,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +761,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +762,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking" +763,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking" +764,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking" +765,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking" +766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +767,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness" +768,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +769,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +770,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +771,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +772,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +773,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness" +774,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness" +775,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +776,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness" +777,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance" +778,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +779,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +780,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +781,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +782,Acne,"pus_filled_pimples,blackheads,scurring" +783,Acne,"skin_rash,blackheads,scurring" +784,Acne,"skin_rash,pus_filled_pimples,scurring" +785,Acne,"skin_rash,pus_filled_pimples,blackheads" +786,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +787,Acne,"skin_rash,pus_filled_pimples,blackheads" +788,Acne,"skin_rash,pus_filled_pimples,scurring" +789,Acne,"skin_rash,blackheads,scurring" +790,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +791,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +792,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +793,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine" +794,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +795,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine" +796,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +797,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +798,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +799,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +800,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +801,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +802,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +803,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +804,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +805,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails" +806,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails" +807,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails" +808,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +809,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +810,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +811,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +812,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +813,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +814,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +815,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze" +816,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze" +817,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose" +818,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +819,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +820,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +821,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +822,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +823,Fungal infection,"itching,skin_rash,dischromic _patches" +824,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +825,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +826,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +827,Fungal infection,"itching,skin_rash,dischromic _patches" +828,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +831,Allergy,"shivering,chills,watering_from_eyes" +832,Allergy,"continuous_sneezing,chills,watering_from_eyes" +833,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +834,Allergy,"continuous_sneezing,shivering,chills" +835,Allergy,"shivering,chills,watering_from_eyes" +836,Allergy,"continuous_sneezing,chills,watering_from_eyes" +837,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +838,Allergy,"continuous_sneezing,shivering,chills" +839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +841,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +842,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +843,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +844,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain" +845,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough" +846,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +847,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +848,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +849,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +850,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +851,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +852,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +853,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +854,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +855,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes" +856,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain" +858,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +859,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +860,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +861,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +862,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +863,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +864,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +865,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination" +866,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +867,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +868,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +869,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +870,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +871,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +872,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +873,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +874,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching" +876,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching" +877,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases" +878,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +879,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +880,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +881,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +882,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +883,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts" +884,AIDS,"muscle_wasting,patches_in_throat,high_fever" +885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +886,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +887,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +888,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +889,AIDS,"muscle_wasting,patches_in_throat,high_fever" +890,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +891,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +892,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +893,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +894,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +895,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +896,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +897,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria" +898,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria" +899,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria" +900,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +901,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +902,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +903,Gastroenteritis,"vomiting,dehydration,diarrhoea" +904,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +905,Gastroenteritis,"vomiting,sunken_eyes,dehydration" +906,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +907,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +908,Gastroenteritis,"vomiting,dehydration,diarrhoea" +909,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +910,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +911,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +912,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +913,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum" +914,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum" +915,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum" +916,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history" +917,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +918,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +919,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +920,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +921,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +922,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +923,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +924,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration" +925,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance" +926,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +927,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +928,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +929,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +930,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +931,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +932,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +933,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +934,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +935,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances" +936,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances" +937,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances" +938,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances" +939,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability" +940,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +941,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +942,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +943,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +944,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance" +945,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance" +946,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness" +947,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +948,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +949,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +950,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +951,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +952,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +953,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +954,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +955,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side" +956,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +957,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +958,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +959,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +960,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +961,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +962,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +963,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +964,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +965,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain" +966,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain" +967,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain" +968,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain" +969,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine" +970,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +971,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +972,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +973,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +974,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +975,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain" +976,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain" +977,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain" +978,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain" +979,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +980,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +981,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +982,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +983,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +984,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +985,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +986,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +987,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +988,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body" +989,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body" +990,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body" +991,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body" +992,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain" +993,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +994,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +995,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +996,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +997,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +998,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +999,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1000,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1001,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1002,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1003,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain" +1004,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain" +1005,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain" +1006,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)" +1007,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1008,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1009,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1010,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1011,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1012,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1013,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1014,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1015,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1016,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1017,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1018,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1019,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain" +1020,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1021,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1022,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1023,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1024,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1025,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1026,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1027,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1028,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1029,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1030,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +1031,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1032,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1033,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1034,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history" +1035,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history" +1036,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +1037,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +1038,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1041,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1042,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1043,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1044,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1045,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1046,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1047,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes" +1048,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes" +1049,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain" +1050,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding" +1051,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1052,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1053,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1054,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1055,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1056,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1058,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1059,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1060,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1061,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1062,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1063,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1064,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1065,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1066,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1" +1067,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1" +1068,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption" +1069,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1070,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1071,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1072,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1073,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1074,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1075,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1076,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1077,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1078,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1079,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1080,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1081,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1082,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1083,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1084,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1085,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1086,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1087,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1088,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1089,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1090,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum" +1091,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1092,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1093,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1094,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1095,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1096,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1097,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1098,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1099,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1100,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1101,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1102,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1103,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1104,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus" +1105,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus" +1106,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus" +1107,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool" +1108,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1109,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1110,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1111,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1112,Heart attack,"breathlessness,sweating,chest_pain" +1113,Heart attack,"vomiting,sweating,chest_pain" +1114,Heart attack,"vomiting,breathlessness,chest_pain" +1115,Heart attack,"vomiting,breathlessness,sweating" +1116,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1117,Heart attack,"breathlessness,sweating,chest_pain" +1118,Heart attack,"vomiting,sweating,chest_pain" +1119,Heart attack,"vomiting,breathlessness,chest_pain" +1120,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1121,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1122,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1123,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1124,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1125,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1126,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf" +1127,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +1128,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels" +1129,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +1130,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1132,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1133,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1134,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1135,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1136,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1137,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1138,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1139,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1140,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1141,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1142,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1143,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1144,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1145,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1146,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1147,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1149,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation" +1150,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations" +1151,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1152,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1153,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1154,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1155,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1156,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1157,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1158,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1159,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1160,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1161,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1162,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1163,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1164,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking" +1165,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking" +1166,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking" +1167,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints" +1168,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1169,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1170,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1171,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1172,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1173,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking" +1174,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking" +1175,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking" +1176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1177,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness" +1178,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1179,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1180,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1181,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1182,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1183,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness" +1184,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness" +1185,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +1186,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness" +1187,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance" +1188,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1189,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +1190,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +1191,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +1192,Acne,"pus_filled_pimples,blackheads,scurring" +1193,Acne,"skin_rash,blackheads,scurring" +1194,Acne,"skin_rash,pus_filled_pimples,scurring" +1195,Acne,"skin_rash,pus_filled_pimples,blackheads" +1196,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +1197,Acne,"skin_rash,pus_filled_pimples,blackheads" +1198,Acne,"skin_rash,pus_filled_pimples,scurring" +1199,Acne,"skin_rash,blackheads,scurring" +1200,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1201,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1202,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1203,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine" +1204,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +1205,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine" +1206,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1207,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +1208,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1209,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +1210,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1211,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1212,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1213,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1214,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1215,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails" +1216,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails" +1217,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails" +1218,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1219,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1220,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1221,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1222,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1223,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +1224,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +1225,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze" +1226,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze" +1227,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose" +1228,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1229,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +1230,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +1231,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +1232,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +1233,Fungal infection,"itching,skin_rash,dischromic _patches" +1234,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +1235,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +1236,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +1237,Fungal infection,"itching,skin_rash,dischromic _patches" +1238,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +1239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +1240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +1241,Allergy,"shivering,chills,watering_from_eyes" +1242,Allergy,"continuous_sneezing,chills,watering_from_eyes" +1243,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +1244,Allergy,"continuous_sneezing,shivering,chills" +1245,Allergy,"shivering,chills,watering_from_eyes" +1246,Allergy,"continuous_sneezing,chills,watering_from_eyes" +1247,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +1248,Allergy,"continuous_sneezing,shivering,chills" +1249,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +1250,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +1251,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +1252,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +1253,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +1254,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain" +1255,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough" +1256,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +1257,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +1258,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +1259,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +1260,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1261,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1262,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1263,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1264,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1265,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes" +1266,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +1267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain" +1268,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1269,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1270,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +1271,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +1272,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +1273,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +1274,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +1275,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination" +1276,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +1277,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +1278,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +1279,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +1280,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1281,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +1282,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1283,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1284,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +1285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching" +1286,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching" +1287,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases" +1288,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1289,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1290,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +1291,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +1292,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +1293,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts" +1294,AIDS,"muscle_wasting,patches_in_throat,high_fever" +1295,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +1296,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +1297,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +1298,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +1299,AIDS,"muscle_wasting,patches_in_throat,high_fever" +1300,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1301,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1302,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1303,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1304,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1305,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1306,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1307,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria" +1308,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria" +1309,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria" +1310,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +1311,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +1312,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +1313,Gastroenteritis,"vomiting,dehydration,diarrhoea" +1314,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +1315,Gastroenteritis,"vomiting,sunken_eyes,dehydration" +1316,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +1317,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +1318,Gastroenteritis,"vomiting,dehydration,diarrhoea" +1319,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +1320,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +1321,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +1322,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +1323,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum" +1324,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum" +1325,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum" +1326,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history" +1327,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +1328,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +1329,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +1330,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1331,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1332,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +1333,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +1334,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration" +1335,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance" +1336,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1337,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1338,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +1339,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +1340,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1341,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1342,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1343,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1344,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1345,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances" +1346,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances" +1347,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances" +1348,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances" +1349,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability" +1350,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1351,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1352,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1353,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +1354,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance" +1355,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance" +1356,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness" +1357,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1358,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1359,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +1360,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +1361,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +1362,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +1363,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +1364,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +1365,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side" +1366,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +1367,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +1368,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +1369,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +1370,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1371,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1372,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1373,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1374,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1375,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1376,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain" +1377,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain" +1378,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain" +1379,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine" +1380,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +1381,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1382,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1383,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1384,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1385,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain" +1386,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain" +1387,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain" +1388,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain" +1389,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +1390,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1391,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1392,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1393,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1394,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1395,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1396,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1397,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1398,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body" +1399,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body" +1400,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body" +1401,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body" +1402,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain" +1403,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1404,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1405,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1406,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1407,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1408,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1409,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1410,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1411,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1412,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1413,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain" +1414,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain" +1415,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain" +1416,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)" +1417,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1418,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1419,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1420,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1421,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1422,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1423,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1424,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1425,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1426,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1427,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1428,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1429,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain" +1430,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1431,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1432,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1433,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1434,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1435,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1436,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1437,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1438,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1439,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1440,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +1441,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1442,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1443,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1444,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history" +1445,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history" +1446,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +1447,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +1448,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1451,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1452,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1453,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1454,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1455,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1456,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1457,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes" +1458,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes" +1459,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain" +1460,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding" +1461,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1462,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1463,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1464,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1465,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1466,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1468,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1469,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1470,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1471,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1472,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1473,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1474,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1475,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1476,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1" +1477,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1" +1478,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption" +1479,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1480,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1481,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1482,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1483,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1484,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1485,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1486,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1487,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1488,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1489,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1490,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1491,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1492,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1493,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1494,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1495,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1496,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1497,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1498,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1499,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1500,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum" +1501,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1502,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1503,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1504,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1505,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1506,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1507,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1508,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1509,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1510,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1511,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1512,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1513,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1514,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus" +1515,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus" +1516,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus" +1517,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool" +1518,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1519,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1520,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1521,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1522,Heart attack,"breathlessness,sweating,chest_pain" +1523,Heart attack,"vomiting,sweating,chest_pain" +1524,Heart attack,"vomiting,breathlessness,chest_pain" +1525,Heart attack,"vomiting,breathlessness,sweating" +1526,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1527,Heart attack,"breathlessness,sweating,chest_pain" +1528,Heart attack,"vomiting,sweating,chest_pain" +1529,Heart attack,"vomiting,breathlessness,chest_pain" +1530,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1532,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1533,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1534,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1535,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1536,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf" +1537,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +1538,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels" +1539,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +1540,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1542,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1543,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1544,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1545,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1546,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1547,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1548,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1549,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1550,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1551,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1552,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1553,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1554,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1555,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1556,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1557,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1559,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation" +1560,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations" +1561,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1562,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1563,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1564,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1565,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1566,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1567,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1568,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1569,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1570,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1571,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1572,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1573,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1574,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking" +1575,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking" +1576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking" +1577,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints" +1578,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1579,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1580,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1581,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1582,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1583,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking" +1584,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking" +1585,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking" +1586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1587,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness" +1588,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1589,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1590,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1591,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1592,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1593,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness" +1594,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness" +1595,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +1596,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness" +1597,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance" +1598,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +1599,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +1600,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +1601,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +1602,Acne,"pus_filled_pimples,blackheads,scurring" +1603,Acne,"skin_rash,blackheads,scurring" +1604,Acne,"skin_rash,pus_filled_pimples,scurring" +1605,Acne,"skin_rash,pus_filled_pimples,blackheads" +1606,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +1607,Acne,"skin_rash,pus_filled_pimples,blackheads" +1608,Acne,"skin_rash,pus_filled_pimples,scurring" +1609,Acne,"skin_rash,blackheads,scurring" +1610,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1611,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1612,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1613,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine" +1614,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +1615,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine" +1616,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1617,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +1618,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +1619,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +1620,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1621,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1622,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1623,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1624,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1625,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails" +1626,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails" +1627,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails" +1628,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1629,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +1630,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1631,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1632,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1633,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +1634,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +1635,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze" +1636,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze" +1637,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose" +1638,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +1639,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +1640,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +1641,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +1642,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +1643,Fungal infection,"itching,skin_rash,dischromic _patches" +1644,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +1645,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +1646,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +1647,Fungal infection,"itching,skin_rash,dischromic _patches" +1648,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +1649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +1650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +1651,Allergy,"shivering,chills,watering_from_eyes" +1652,Allergy,"continuous_sneezing,chills,watering_from_eyes" +1653,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +1654,Allergy,"continuous_sneezing,shivering,chills" +1655,Allergy,"shivering,chills,watering_from_eyes" +1656,Allergy,"continuous_sneezing,chills,watering_from_eyes" +1657,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +1658,Allergy,"continuous_sneezing,shivering,chills" +1659,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +1660,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +1661,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +1662,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +1663,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +1664,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain" +1665,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough" +1666,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +1667,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +1668,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +1669,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +1670,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1671,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1672,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1673,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1674,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1675,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes" +1676,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +1677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain" +1678,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1679,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1680,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +1681,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +1682,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +1683,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +1684,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +1685,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination" +1686,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +1687,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +1688,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +1689,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +1690,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1691,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +1692,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1693,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1694,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +1695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching" +1696,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching" +1697,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases" +1698,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1699,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +1700,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +1701,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +1702,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +1703,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts" +1704,AIDS,"muscle_wasting,patches_in_throat,high_fever" +1705,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +1706,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +1707,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +1708,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +1709,AIDS,"muscle_wasting,patches_in_throat,high_fever" +1710,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1711,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1712,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1713,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1714,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1715,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1716,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +1717,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria" +1718,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria" +1719,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria" +1720,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +1721,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +1722,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +1723,Gastroenteritis,"vomiting,dehydration,diarrhoea" +1724,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +1725,Gastroenteritis,"vomiting,sunken_eyes,dehydration" +1726,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +1727,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +1728,Gastroenteritis,"vomiting,dehydration,diarrhoea" +1729,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +1730,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +1731,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +1732,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +1733,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum" +1734,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum" +1735,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum" +1736,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history" +1737,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +1738,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +1739,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +1740,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1741,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1742,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +1743,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +1744,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration" +1745,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance" +1746,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1747,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +1748,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +1749,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +1750,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1751,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1752,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1753,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1754,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +1755,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances" +1756,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances" +1757,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances" +1758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances" +1759,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability" +1760,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1761,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1762,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1763,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +1764,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance" +1765,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance" +1766,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness" +1767,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1768,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +1769,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +1770,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +1771,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +1772,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +1773,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +1774,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +1775,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side" +1776,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +1777,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +1778,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +1779,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +1780,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1781,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1782,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1783,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1784,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1785,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain" +1786,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain" +1787,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain" +1788,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain" +1789,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine" +1790,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +1791,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1792,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1793,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1794,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +1795,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain" +1796,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain" +1797,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain" +1798,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain" +1799,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +1800,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1801,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1802,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1803,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1804,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1805,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1806,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1807,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +1808,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body" +1809,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body" +1810,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body" +1811,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body" +1812,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain" +1813,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1814,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1815,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1816,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1817,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1818,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1819,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +1820,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1821,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1822,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1823,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain" +1824,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain" +1825,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain" +1826,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)" +1827,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1828,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1829,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +1830,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1831,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1832,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1833,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1834,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1835,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1836,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1837,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1838,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +1839,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain" +1840,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1841,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1842,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1843,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1844,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1845,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1846,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1847,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1848,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +1850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +1851,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1852,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1853,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1854,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history" +1855,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history" +1856,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +1857,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +1858,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +1860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1861,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1862,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1863,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1864,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1865,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1866,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +1867,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes" +1868,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes" +1869,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain" +1870,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding" +1871,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1872,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1873,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1874,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1875,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1876,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1878,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1879,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +1880,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1881,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1882,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1883,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1884,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1885,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1886,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1" +1887,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1" +1888,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption" +1889,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +1890,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1891,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1892,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1893,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1894,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1895,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1896,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1897,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1898,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1899,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +1900,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1901,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1902,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1903,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1904,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1905,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1906,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1907,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1908,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1909,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +1910,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum" +1911,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1912,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1913,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1914,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1915,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1916,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1917,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1918,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1919,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +1920,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1921,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1922,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1923,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1924,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus" +1925,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus" +1926,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus" +1927,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool" +1928,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1929,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +1930,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1931,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1932,Heart attack,"breathlessness,sweating,chest_pain" +1933,Heart attack,"vomiting,sweating,chest_pain" +1934,Heart attack,"vomiting,breathlessness,chest_pain" +1935,Heart attack,"vomiting,breathlessness,sweating" +1936,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +1937,Heart attack,"breathlessness,sweating,chest_pain" +1938,Heart attack,"vomiting,sweating,chest_pain" +1939,Heart attack,"vomiting,breathlessness,chest_pain" +1940,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1942,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1943,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1944,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1945,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +1946,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf" +1947,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +1948,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels" +1949,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +1950,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1951,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1952,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1953,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1954,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1955,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1956,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1957,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1958,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1959,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +1960,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1961,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1962,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1963,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1964,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1965,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1966,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1967,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +1969,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation" +1970,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations" +1971,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1972,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1973,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1974,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1975,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1976,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1977,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1978,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1979,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +1980,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1981,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1982,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1983,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1984,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking" +1985,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking" +1986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking" +1987,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints" +1988,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1989,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +1990,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1991,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1992,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1993,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking" +1994,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking" +1995,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking" +1996,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1997,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness" +1998,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +1999,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2000,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2001,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2002,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2003,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness" +2004,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness" +2005,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +2006,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness" +2007,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance" +2008,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2009,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +2010,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2011,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2012,Acne,"pus_filled_pimples,blackheads,scurring" +2013,Acne,"skin_rash,blackheads,scurring" +2014,Acne,"skin_rash,pus_filled_pimples,scurring" +2015,Acne,"skin_rash,pus_filled_pimples,blackheads" +2016,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2017,Acne,"skin_rash,pus_filled_pimples,blackheads" +2018,Acne,"skin_rash,pus_filled_pimples,scurring" +2019,Acne,"skin_rash,blackheads,scurring" +2020,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2021,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2022,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2023,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine" +2024,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +2025,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine" +2026,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2027,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +2028,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2029,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +2030,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2031,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2032,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2033,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2034,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2035,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails" +2036,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails" +2037,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails" +2038,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2039,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2040,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2041,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2042,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2043,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +2044,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +2045,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze" +2046,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze" +2047,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose" +2048,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2049,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +2050,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2051,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +2052,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +2053,Fungal infection,"itching,skin_rash,dischromic _patches" +2054,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +2055,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches" +2056,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches" +2057,Fungal infection,"itching,skin_rash,dischromic _patches" +2058,Fungal infection,"itching,skin_rash,nodal_skin_eruptions" +2059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2061,Allergy,"shivering,chills,watering_from_eyes" +2062,Allergy,"continuous_sneezing,chills,watering_from_eyes" +2063,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +2064,Allergy,"continuous_sneezing,shivering,chills" +2065,Allergy,"shivering,chills,watering_from_eyes" +2066,Allergy,"continuous_sneezing,chills,watering_from_eyes" +2067,Allergy,"continuous_sneezing,shivering,watering_from_eyes" +2068,Allergy,"continuous_sneezing,shivering,chills" +2069,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2070,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2071,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +2072,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +2073,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +2074,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain" +2075,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough" +2076,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2077,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain" +2078,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain" +2079,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain" +2080,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2081,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2082,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2083,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2084,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2085,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes" +2086,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +2087,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain" +2088,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2089,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2090,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2091,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +2092,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +2093,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +2094,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +2095,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2096,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination" +2097,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination" +2098,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination" +2099,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition" +2100,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2101,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +2102,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2103,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2104,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching" +2105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching" +2106,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching" +2107,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases" +2108,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2109,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2110,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2111,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +2112,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +2113,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts" +2114,AIDS,"muscle_wasting,patches_in_throat,high_fever" +2115,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2116,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2117,AIDS,"patches_in_throat,high_fever,extra_marital_contacts" +2118,AIDS,"muscle_wasting,high_fever,extra_marital_contacts" +2119,AIDS,"muscle_wasting,patches_in_throat,high_fever" +2120,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2121,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2122,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2123,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2124,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2125,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2126,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2127,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria" +2128,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria" +2129,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria" +2130,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2131,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2132,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +2133,Gastroenteritis,"vomiting,dehydration,diarrhoea" +2134,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +2135,Gastroenteritis,"vomiting,sunken_eyes,dehydration" +2136,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2137,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea" +2138,Gastroenteritis,"vomiting,dehydration,diarrhoea" +2139,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea" +2140,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2141,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +2142,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +2143,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum" +2144,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum" +2145,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum" +2146,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history" +2147,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2148,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum" +2149,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum" +2150,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2151,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2152,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +2153,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +2154,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration" +2155,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance" +2156,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2157,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2158,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration" +2159,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration" +2160,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2161,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2162,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2163,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2164,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2165,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances" +2166,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances" +2167,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances" +2168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances" +2169,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability" +2170,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2171,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2172,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2173,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +2174,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance" +2175,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance" +2176,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness" +2177,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2178,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2179,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance" +2180,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2181,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2182,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +2183,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +2184,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +2185,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side" +2186,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2187,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium" +2188,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium" +2189,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium" +2190,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2191,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2192,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2193,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2194,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2195,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2196,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain" +2197,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain" +2198,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain" +2199,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine" +2200,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +2201,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2202,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2203,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2204,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2205,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain" +2206,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain" +2207,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain" +2208,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain" +2209,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain" +2210,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2211,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2212,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2213,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2214,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2215,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2216,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2217,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2218,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body" +2219,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body" +2220,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body" +2221,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body" +2222,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain" +2223,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2224,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2225,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2226,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2227,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2228,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2229,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2230,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2231,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2232,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2233,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain" +2234,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain" +2235,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain" +2236,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)" +2237,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2238,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2239,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2240,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2241,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2242,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2243,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2244,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2245,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2246,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2247,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2248,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2249,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain" +2250,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2251,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2252,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2253,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2254,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2255,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2256,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2257,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2258,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +2261,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2262,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2263,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2264,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history" +2265,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history" +2266,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history" +2267,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes" +2268,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2269,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2270,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2271,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2272,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2273,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2274,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2275,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2276,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2277,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes" +2278,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes" +2279,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain" +2280,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding" +2281,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2282,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2283,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2284,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2285,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2286,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2288,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2289,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2290,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2291,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2292,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2293,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2294,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2295,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2296,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1" +2297,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1" +2298,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption" +2299,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2300,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2301,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2302,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2303,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2304,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2305,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2306,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2307,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2308,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2309,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2310,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2311,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2312,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2313,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2314,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2315,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2316,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2317,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2318,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2319,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2320,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum" +2321,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2322,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2323,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2324,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2325,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2326,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2327,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2328,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2329,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2330,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2331,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2332,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2333,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2334,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus" +2335,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus" +2336,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus" +2337,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool" +2338,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2339,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2340,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2341,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2342,Heart attack,"breathlessness,sweating,chest_pain" +2343,Heart attack,"vomiting,sweating,chest_pain" +2344,Heart attack,"vomiting,breathlessness,chest_pain" +2345,Heart attack,"vomiting,breathlessness,sweating" +2346,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2347,Heart attack,"breathlessness,sweating,chest_pain" +2348,Heart attack,"vomiting,sweating,chest_pain" +2349,Heart attack,"vomiting,breathlessness,chest_pain" +2350,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2352,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2353,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2354,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2355,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2356,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf" +2357,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +2358,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels" +2359,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf" +2360,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2361,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2362,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2363,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2364,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2365,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2366,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2367,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2368,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2369,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2370,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2371,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2372,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2373,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2374,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2375,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2376,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2377,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2379,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation" +2380,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations" +2381,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2382,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2383,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2384,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2385,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2386,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2387,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2388,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2389,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2390,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2391,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2392,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2393,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2394,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking" +2395,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking" +2396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking" +2397,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints" +2398,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2399,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2400,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2401,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2402,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2403,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking" +2404,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking" +2405,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking" +2406,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2407,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness" +2408,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2409,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2410,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2411,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2412,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2413,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness" +2414,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness" +2415,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +2416,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness" +2417,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance" +2418,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2419,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness" +2420,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2421,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2422,Acne,"pus_filled_pimples,blackheads,scurring" +2423,Acne,"skin_rash,blackheads,scurring" +2424,Acne,"skin_rash,pus_filled_pimples,scurring" +2425,Acne,"skin_rash,pus_filled_pimples,blackheads" +2426,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2427,Acne,"skin_rash,pus_filled_pimples,blackheads" +2428,Acne,"skin_rash,pus_filled_pimples,scurring" +2429,Acne,"skin_rash,blackheads,scurring" +2430,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2431,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2432,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2433,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine" +2434,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +2435,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine" +2436,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2437,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +2438,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2439,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine" +2440,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2441,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2442,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2443,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2444,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2445,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails" +2446,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails" +2447,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails" +2448,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2449,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2450,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2451,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2452,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2453,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +2454,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +2455,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze" +2456,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze" +2457,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose" +2458,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2459,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze" +2460,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2461,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2462,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2463,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2464,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2466,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2467,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2468,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2469,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2470,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2471,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2472,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2473,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2474,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2475,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2476,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2477,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2478,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2479,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2480,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2481,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2482,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2483,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2484,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2485,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2486,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2487,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2488,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2489,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2490,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2491,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2492,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2493,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2494,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2495,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2496,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2497,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2498,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2499,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2500,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2501,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2502,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2503,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2504,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2505,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2506,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2507,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2508,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2509,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2510,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2511,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2512,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2513,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2514,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2515,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2516,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2517,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2518,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2519,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2520,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2521,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2522,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2523,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2524,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2525,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2526,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2527,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2528,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2529,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2530,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2532,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2533,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2534,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2535,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2536,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2537,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2538,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2539,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2540,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2541,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2542,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2543,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2544,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2545,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2546,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2547,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2548,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2549,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2550,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2551,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2552,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2553,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2554,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2555,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2556,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2557,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2558,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2559,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2560,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2561,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2562,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2563,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2564,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2565,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2566,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2567,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2568,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2569,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2570,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2571,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2572,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2573,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2574,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2575,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2577,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2578,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2579,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2580,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2581,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2582,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2583,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2584,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2585,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2586,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2587,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2588,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2589,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2590,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2591,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2592,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2593,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2594,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2595,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2596,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2597,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2598,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2599,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2600,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2601,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2602,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2603,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2604,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2605,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2606,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2607,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2608,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2609,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2610,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2611,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2612,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2613,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2614,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2615,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2616,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2617,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2618,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2619,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2620,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2621,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2622,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2623,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2624,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2625,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2626,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2627,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2628,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2629,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2630,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2631,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2632,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2633,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2634,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2635,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2636,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2637,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2638,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2639,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2640,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2641,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2642,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2643,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2644,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2645,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2646,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2648,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2649,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2650,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2651,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2652,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2653,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2654,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2655,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2656,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2657,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2658,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2659,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2660,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2661,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2662,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2663,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2664,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2665,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2666,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2667,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2668,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2669,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2670,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2671,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2672,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2673,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2674,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2675,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2676,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2677,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2678,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2679,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2680,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2681,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2682,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2683,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2684,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2685,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2686,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2687,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2688,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2689,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2690,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2691,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2692,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2693,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2694,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2695,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2696,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2697,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2698,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2699,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2700,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2701,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2702,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2703,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2704,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2705,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2706,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2707,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2708,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2709,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2710,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2711,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2712,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2713,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2714,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2715,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2716,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2717,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2718,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2719,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2720,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2721,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2722,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2723,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2724,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2725,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2726,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2727,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2728,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2729,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2730,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2731,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2732,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2733,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2734,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2735,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2736,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2737,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2739,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2740,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2741,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2742,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2743,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2744,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2745,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2746,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2747,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2748,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2749,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2750,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2751,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2752,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2753,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2754,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2755,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2756,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2757,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2759,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2760,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2761,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2762,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2763,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2764,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2765,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2766,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2767,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2768,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2769,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2770,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2771,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2772,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2773,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2774,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2775,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2776,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2777,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2778,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2779,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2780,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2781,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2782,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2783,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2784,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2785,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2786,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2787,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2788,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2789,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2790,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2791,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2792,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2793,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2794,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2795,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2796,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2797,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2798,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2799,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2800,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2801,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2802,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2803,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2804,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2805,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2806,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2807,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2808,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2809,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2810,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2811,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2812,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2813,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2814,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2815,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2816,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2817,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2818,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2819,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2820,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2821,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2822,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2823,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2824,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2825,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2826,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2827,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2828,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2831,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2832,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2833,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2834,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2835,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2836,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2837,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2838,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2839,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2840,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2841,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2842,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2843,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2844,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2845,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2846,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2847,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2848,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2851,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2852,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2853,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2854,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2855,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2856,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2857,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2858,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2859,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2860,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2861,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2862,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2863,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2864,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2865,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2866,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2867,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2868,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2869,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2870,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2871,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2872,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2873,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2874,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2876,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2877,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2878,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2879,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2880,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2881,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2882,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2883,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2884,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2885,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2886,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2887,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2888,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2889,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2890,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2891,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2892,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2893,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2894,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2895,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2896,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2897,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2898,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2899,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2900,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2901,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2902,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2903,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2904,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2905,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2906,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2907,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2908,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2909,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2910,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2911,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2912,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2913,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2914,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2915,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2916,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2917,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2918,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2919,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2920,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2921,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2922,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2923,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2924,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2925,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2926,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2927,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2928,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2929,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2930,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2931,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2932,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2933,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2934,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2935,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2936,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2937,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2938,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2939,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2940,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2942,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2943,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2944,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2945,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2946,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2947,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2948,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2949,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2950,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2951,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2952,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2953,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2954,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2955,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2956,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2957,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2958,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +2959,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +2960,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +2961,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +2962,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +2963,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +2964,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +2965,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +2966,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +2967,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +2968,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +2969,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +2970,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +2971,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +2972,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +2973,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +2974,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2975,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +2976,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +2977,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +2978,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +2979,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +2980,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +2981,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +2982,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +2983,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +2984,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +2985,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +2986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +2987,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +2988,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +2989,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +2990,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +2991,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +2992,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +2993,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +2994,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +2995,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +2996,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +2997,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +2998,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +2999,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3000,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3001,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3002,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3003,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3004,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3005,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3006,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3007,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3008,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3009,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3010,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3011,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3012,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3013,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3014,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3015,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3016,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3017,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3018,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3019,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3020,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3021,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3022,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3023,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3024,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3025,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3026,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3027,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3028,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3029,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3030,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3031,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3032,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3033,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3034,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3035,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3036,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3037,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3038,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3039,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3040,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3041,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3042,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3043,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3044,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3045,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3046,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3047,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3048,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3049,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3050,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3051,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3052,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3053,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3054,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3055,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3056,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3058,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3059,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3060,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3061,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3062,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3063,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3064,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3065,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3066,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3067,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3068,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3069,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3070,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3071,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3072,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3073,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3074,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3075,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3076,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3077,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3078,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3079,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3080,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3081,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3082,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3083,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3084,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3085,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3086,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3087,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3088,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3089,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3090,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3091,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3092,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3093,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3094,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3095,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3096,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3097,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3098,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3099,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3100,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3101,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3102,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3103,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3104,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3105,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3106,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3107,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3108,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3109,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3110,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3111,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3112,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3113,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3114,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3115,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3116,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3117,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3118,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3119,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3120,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3121,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3122,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3123,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3124,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3125,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3126,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3127,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3128,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3129,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3130,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3131,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3132,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3133,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3134,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3135,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3136,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3137,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3138,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3139,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3140,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3141,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3142,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3143,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3144,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3145,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3146,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3147,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3149,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3150,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3151,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3152,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3153,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3154,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3155,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3156,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3157,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3158,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3159,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3160,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3161,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3162,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3163,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3164,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3165,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3166,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3167,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3169,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3170,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3171,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3172,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3173,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3174,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3175,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3176,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3177,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3178,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3179,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3180,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3181,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3182,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3183,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3184,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3185,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3186,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3187,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3188,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3189,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3190,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3191,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3192,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3193,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3194,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3195,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3196,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3197,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3198,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3199,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3200,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3201,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3202,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3203,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3204,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3205,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3206,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3207,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3208,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3209,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3210,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3211,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3212,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3213,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3214,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3215,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3216,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3217,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3218,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3221,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3222,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3223,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3224,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3225,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3226,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3227,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3228,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3229,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3230,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3231,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3232,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3233,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3234,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3235,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3236,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3237,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3238,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3241,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3242,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3243,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3244,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3245,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3246,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3247,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3248,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3249,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3250,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3251,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3252,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3253,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3254,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3255,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3256,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3257,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3258,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3261,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3262,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3263,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3264,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3265,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3266,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3267,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3268,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3269,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3270,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3271,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3272,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3273,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3274,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3275,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3276,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3277,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3278,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3279,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3280,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3281,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3282,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3283,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3284,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3286,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3287,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3288,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3289,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3290,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3291,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3292,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3293,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3294,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3295,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3296,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3297,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3298,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3299,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3300,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3301,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3302,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3303,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3304,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3305,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3306,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3307,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3308,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3309,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3310,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3312,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3313,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3314,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3315,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3316,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3317,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3318,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3319,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3320,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3321,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3322,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3323,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3324,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3325,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3326,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3327,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3328,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3329,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3330,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3331,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3332,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3333,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3334,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3335,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3336,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3337,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3338,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3339,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3340,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3341,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3342,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3343,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3344,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3345,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3346,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3347,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3348,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3349,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3350,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3352,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3353,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3354,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3355,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3357,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3358,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3359,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3360,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3361,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3362,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3363,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3364,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3365,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3366,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3367,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3368,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3369,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3370,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3371,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3372,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3373,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3374,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3375,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3376,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3377,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3378,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3379,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3380,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3381,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3382,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3383,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3384,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3385,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3386,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3387,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3388,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3389,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3390,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3391,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3392,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3393,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3394,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3395,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3397,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3398,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3399,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3400,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3401,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3402,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3403,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3404,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3405,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3406,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3407,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3408,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3409,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3410,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3411,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3412,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3413,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3414,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3415,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3416,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3417,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3418,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3419,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3420,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3421,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3422,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3423,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3424,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3425,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3426,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3427,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3428,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3429,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3430,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3431,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3432,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3433,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3434,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3435,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3436,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3437,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3438,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3439,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3440,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3441,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3442,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3443,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3444,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3445,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3446,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3448,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3449,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3450,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3451,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3452,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3453,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3454,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3455,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3456,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3457,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3458,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3459,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3460,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3461,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3462,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3463,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3464,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3465,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3466,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3468,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3469,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3470,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3471,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3472,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3473,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3474,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3475,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3476,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3477,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3478,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3479,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3480,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3481,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3482,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3483,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3484,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3485,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3486,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3487,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3488,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3489,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3490,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3491,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3492,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3493,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3494,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3495,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3496,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3497,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3498,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3499,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3500,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3501,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3502,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3503,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3504,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3505,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3506,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3507,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3508,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3509,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3510,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3511,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3512,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3513,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3514,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3515,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3516,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3517,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3518,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3519,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3520,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3521,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3522,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3523,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3524,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3525,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3526,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3527,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3528,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3529,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3530,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3531,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3532,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3533,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3534,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3535,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3536,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3537,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3538,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3539,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3540,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3541,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3542,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3543,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3544,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3545,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3546,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3547,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3548,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3549,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3550,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3551,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3552,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3553,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3554,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3555,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3556,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3557,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3559,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3560,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3561,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3562,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3563,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3564,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3565,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3566,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3567,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3568,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3569,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3570,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3571,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3572,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3573,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3574,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3575,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3576,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3577,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3578,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3579,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3580,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3581,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3582,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3583,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3584,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3585,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3586,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3587,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3588,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3589,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3590,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3591,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3592,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3593,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3594,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3595,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3596,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3597,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3598,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3599,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3600,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3601,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3602,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3603,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3604,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3605,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3606,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3607,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3608,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3609,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3610,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3611,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3612,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3613,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3614,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3615,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3616,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3617,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3618,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3619,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3620,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3621,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3622,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3623,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3624,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3625,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3626,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3627,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3628,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3631,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3632,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3633,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3634,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3635,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3636,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3637,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3638,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3639,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3640,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3641,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3642,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3643,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3644,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3645,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3646,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3647,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3648,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3651,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3652,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3653,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3654,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3655,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3656,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3657,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3658,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3659,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3660,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3661,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3662,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3663,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3664,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3665,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3666,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3667,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3668,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3669,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3670,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3671,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3672,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3673,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3674,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3675,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3676,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3677,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3678,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3679,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3680,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3681,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3682,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3683,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3684,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3685,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3686,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3687,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3688,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3689,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3690,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3691,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3692,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3693,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3694,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3696,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3697,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3698,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3699,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3700,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3701,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3702,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3703,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3704,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3705,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3706,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3707,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3708,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3709,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3710,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3711,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3712,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3713,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3714,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3715,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3716,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3717,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3718,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3719,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3720,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3722,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3723,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3724,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3725,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3726,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3727,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3728,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3729,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3730,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3731,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3732,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3733,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3734,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3735,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3736,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3737,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3738,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3739,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3740,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3741,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3742,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3743,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3744,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3745,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3746,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3747,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3748,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3749,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3750,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3751,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3752,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3753,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3754,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3755,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3756,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3757,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3758,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3759,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3760,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3761,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3762,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3763,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3764,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3765,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3767,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3768,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3769,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3770,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3771,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3772,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3773,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3774,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3775,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3776,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3777,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3778,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3779,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3780,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3781,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3782,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3783,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3784,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3785,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3786,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3787,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3788,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3789,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3790,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3791,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3792,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3793,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3794,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3795,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3796,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3797,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3798,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3799,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3800,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3801,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3802,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3803,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3804,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3805,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3806,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3807,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3808,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3809,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3810,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3811,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3812,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3813,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3814,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3815,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3816,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3817,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3818,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3819,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3820,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3821,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3822,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3823,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3824,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3825,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3826,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3827,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3828,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3829,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3830,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3831,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3832,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3833,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3834,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3835,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3836,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3837,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3838,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3839,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3840,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3841,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3842,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3843,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3844,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3845,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3846,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3847,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3848,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3849,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3850,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3851,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3852,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3853,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3854,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3855,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3856,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3858,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3859,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3860,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3861,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3862,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3863,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3864,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3865,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3866,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3867,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3868,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3869,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3870,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3871,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3872,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3873,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3874,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3875,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3876,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3878,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3879,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3880,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3881,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3882,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3883,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3884,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3885,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3886,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3887,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3888,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3889,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3890,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3891,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3892,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3893,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3894,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3895,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3896,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3897,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3898,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3899,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3900,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3901,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3902,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3903,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3904,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3905,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3906,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3907,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3908,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3909,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3910,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3911,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3912,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3913,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3914,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3915,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3916,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3917,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3918,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3919,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3920,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3921,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3922,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3923,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3924,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3925,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3926,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3927,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3928,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3929,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3930,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3931,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3932,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3933,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3934,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3935,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3936,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3937,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3938,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3939,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3940,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3941,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3942,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3943,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3944,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3945,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3946,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3947,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3948,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3949,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3950,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3951,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3952,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3953,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3954,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3955,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3956,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3957,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3958,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3959,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +3960,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +3961,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +3962,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +3963,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +3964,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +3965,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +3966,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +3967,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +3968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +3969,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +3970,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +3971,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +3972,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +3973,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +3974,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +3975,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +3976,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +3977,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +3978,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +3979,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +3980,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +3981,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +3982,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +3983,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +3984,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +3985,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +3986,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +3987,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +3988,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +3989,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +3990,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +3991,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +3992,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +3993,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +3994,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +3995,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +3996,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +3997,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +3998,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +3999,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4000,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4001,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4002,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4003,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4004,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4005,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4006,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4007,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4008,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4009,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4010,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4011,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4012,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4013,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4014,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4015,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4016,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4017,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4018,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4019,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4020,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4021,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4022,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4023,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4024,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4025,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4026,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4027,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4028,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4029,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4030,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4031,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4032,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4033,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4034,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4035,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4036,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4037,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4038,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4041,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4042,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4043,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4044,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4045,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4046,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4047,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4048,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4049,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4050,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4051,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4052,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4053,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4054,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4055,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4056,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4057,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4058,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4061,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4062,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4063,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4064,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4065,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4066,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4067,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4068,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4069,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4070,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4071,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4072,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4073,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4074,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4075,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4076,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4077,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4078,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4079,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4080,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4081,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4082,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4083,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4084,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4085,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4086,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4087,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4088,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4089,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4090,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4091,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4092,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4093,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4094,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4095,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4096,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4097,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4098,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4099,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4100,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4101,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4102,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4103,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4104,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4106,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4107,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4108,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4109,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4110,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4111,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4112,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4113,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4114,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4115,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4116,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4117,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4118,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4119,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4120,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4121,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4122,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4123,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4124,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4125,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4126,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4127,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4128,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4129,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4130,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4132,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4133,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4134,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4135,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4136,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4137,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4138,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4139,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4140,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4141,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4142,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4143,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4144,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4145,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4146,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4147,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4148,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4149,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4150,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4151,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4152,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4153,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4154,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4155,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4156,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4157,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4158,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4159,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4160,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4161,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4162,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4163,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4164,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4165,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4166,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4167,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4168,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4169,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4170,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4171,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4172,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4173,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4174,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4175,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4177,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4178,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4179,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4180,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4181,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4182,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4183,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4184,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4185,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4186,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4187,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4188,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4189,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4190,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4191,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4192,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4193,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4194,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4195,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4196,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4197,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4198,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4199,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4200,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4201,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4202,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4203,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4204,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4205,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4206,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4207,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4208,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4209,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4210,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4211,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4212,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4213,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4214,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4215,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4216,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4217,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4218,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4219,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4220,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4221,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4222,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4223,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4224,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4225,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4226,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4227,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4228,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4229,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4230,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4231,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4232,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4233,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4234,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4235,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4236,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4237,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4238,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4239,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4240,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4241,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4242,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4243,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4244,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4245,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4246,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4248,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4249,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4250,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4251,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4252,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4253,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4254,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4255,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4256,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4257,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4258,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4259,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4260,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4261,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4262,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4263,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4264,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4265,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4266,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4268,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4269,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4270,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4271,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4272,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4273,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4274,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4275,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4276,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4277,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4278,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4279,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4280,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4281,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4282,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4283,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4284,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4285,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4286,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4288,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4289,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4290,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4291,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4292,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4293,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4294,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4295,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4296,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4297,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4298,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4299,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4300,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4301,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4302,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4303,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4304,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4305,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4306,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4307,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4308,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4309,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4310,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4311,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4312,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4313,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4314,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4315,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4316,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4317,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4318,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4319,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4320,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4321,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4322,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4323,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4324,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4325,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4326,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4327,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4328,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4329,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4330,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4331,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4332,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4333,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4334,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4335,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4336,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4337,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4339,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4340,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4341,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4342,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4343,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4344,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4345,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4346,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4347,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4348,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4349,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4350,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4351,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4352,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4353,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4354,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4355,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4356,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4357,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4358,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4359,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4360,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4361,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4362,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4363,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4364,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4365,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4366,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4367,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4368,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4369,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4370,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4371,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4372,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4373,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4374,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4375,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4376,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4377,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4379,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4380,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4381,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4382,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4383,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4384,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4385,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4386,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4387,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4388,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4389,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4390,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4391,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4392,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4393,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4394,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4395,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4396,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4397,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4398,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4399,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4400,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4401,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4402,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4403,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4404,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4405,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4406,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4407,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4408,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4409,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4410,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4411,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4412,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4413,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4414,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4415,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4416,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4417,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4418,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4419,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4420,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4421,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4422,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4423,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4424,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4425,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4426,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4427,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4428,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4431,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4432,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4433,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4434,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4435,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4436,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4437,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4438,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4439,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4440,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4441,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4442,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4443,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4444,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4445,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4446,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4447,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4448,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4451,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4452,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4453,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4454,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4455,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4456,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4457,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4458,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4459,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4460,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4461,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4462,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4463,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4464,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4465,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4466,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4467,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4468,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4469,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4470,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4471,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4472,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4473,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4474,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4476,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4477,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4478,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4479,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4480,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4481,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4482,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4483,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4484,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4485,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4486,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4487,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4488,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4489,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4490,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4491,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4492,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4493,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4494,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4495,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4496,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4497,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4498,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4499,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4500,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4501,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4502,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4503,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4504,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4505,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4506,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4507,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4508,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4509,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4510,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4511,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4512,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4513,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4514,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4515,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4516,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4517,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4518,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4519,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4520,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4521,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4522,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4523,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4524,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4525,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4526,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4527,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4528,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4529,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4530,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4531,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4532,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4533,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4534,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4535,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4536,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4537,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4538,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4539,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4540,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4542,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4543,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4544,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4545,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4546,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4547,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4548,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4549,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4550,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4551,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4552,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4553,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4554,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4555,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4556,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4557,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4558,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4559,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4560,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4561,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4562,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4563,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4564,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4565,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4566,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4567,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4568,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4569,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4570,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4571,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4572,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4573,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4574,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4575,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4576,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4577,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4578,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4579,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4580,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4581,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4582,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4583,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4584,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4585,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4587,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4588,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4589,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4590,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4591,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4592,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4593,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4594,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4595,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4596,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4597,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4598,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4599,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4600,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4601,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4602,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4603,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4604,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4605,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4606,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4607,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4608,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4609,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4610,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4611,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4612,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4613,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4614,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4615,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4616,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4617,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4618,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4619,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4620,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4621,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4622,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4623,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4624,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4625,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4626,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4627,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4628,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4629,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4630,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4631,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4632,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4633,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4634,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4635,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4636,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4637,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4638,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4639,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4640,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4641,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4642,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4643,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4644,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4645,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4646,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4647,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4648,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4649,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4650,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4651,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4652,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4653,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4654,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4655,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4656,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4658,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4659,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4660,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4661,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4662,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4663,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4664,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4665,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4666,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4667,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4668,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4669,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4670,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4671,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4672,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4673,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4674,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4675,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4676,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4678,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4679,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4680,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4681,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4682,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4683,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4684,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4685,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4686,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4687,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4688,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4689,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4690,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4691,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4692,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4693,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4694,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4695,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4696,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4697,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4698,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4699,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4700,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4701,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4702,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4703,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4704,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4705,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4706,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4707,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4708,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4709,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4710,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4711,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4712,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4713,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4714,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4715,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4716,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4717,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4718,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4719,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4720,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4721,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4722,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4723,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4724,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4725,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4726,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4727,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4728,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4729,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4730,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4731,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4732,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4733,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4734,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4735,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4736,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4737,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4738,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4739,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4740,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4741,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4742,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4743,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4744,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4745,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4746,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4747,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4749,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4750,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4751,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4752,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4753,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4754,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4755,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4756,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4757,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4758,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4759,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4760,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4761,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4762,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4763,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4764,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4765,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4766,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4767,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4768,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4769,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4770,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4771,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4772,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4773,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4774,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4775,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4776,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4777,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4778,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4779,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4780,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4781,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4782,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4783,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4784,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4785,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4786,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4787,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4788,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4789,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4790,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4791,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4792,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4793,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4794,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4795,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4796,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4797,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4798,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4799,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4800,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4801,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4802,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4803,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4804,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4805,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4806,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4807,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4808,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4809,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4810,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4811,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4812,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4813,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4814,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4815,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4816,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4817,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4818,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4819,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4820,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4821,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4822,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4823,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4824,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4825,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4826,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4827,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4828,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4829,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4830,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4831,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4832,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4833,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4834,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4835,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4836,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4837,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4838,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4841,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4842,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4843,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4844,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4845,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4846,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4847,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4848,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4849,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4850,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4851,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4852,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4853,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4854,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4855,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4856,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4857,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4858,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4861,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4862,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4863,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4864,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4865,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4866,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4867,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4868,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4869,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4870,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4871,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4872,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4873,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4874,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4875,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4876,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4877,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4878,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" +4879,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches" +4880,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes" +4881,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain" +4882,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4883,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination" +4884,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching" +4885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts" +4886,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria" +4887,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea" +4888,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum" +4889,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration" +4890,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances" +4891,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance" +4892,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium" +4893,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain" +4894,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain" +4895,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body" +4896,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body" +4897,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain" +4898,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain" +4899,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections" +4900,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history" +4901,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes" +4902,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding" +4903,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1" +4904,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum" +4905,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain" +4906,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum" +4907,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus" +4908,Heart attack,"vomiting,breathlessness,sweating,chest_pain" +4909,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf" +4910,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation" +4911,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation" +4912,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations" +4913,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking" +4914,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking" +4915,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness" +4916,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring" +4917,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine" +4918,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails" +4919,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze" diff --git a/LLMs/final_dataset_llms.csv b/LLMs/final_dataset_llms.csv new file mode 100644 index 0000000000000000000000000000000000000000..ccf9b4f13c83b2e1c57266388340c68c3ee52ddd --- /dev/null +++ b/LLMs/final_dataset_llms.csv @@ -0,0 +1,6121 @@ +,label,text,cleaned_text +0,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +3,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +4,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +5,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +6,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +7,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +8,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +9,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +10,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +11,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +12,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +13,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +14,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +15,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +16,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +17,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +18,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +19,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +20,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +21,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +22,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +23,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +24,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +25,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +26,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +27,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +28,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +29,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +30,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +31,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +32,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +33,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +34,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +35,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +36,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +37,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +38,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +39,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +40,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +41,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +42,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +43,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +44,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +45,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +46,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +47,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +48,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +49,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +50,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +51,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +52,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +53,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +54,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +55,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +56,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +57,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +58,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +59,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +60,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +61,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +62,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +63,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +64,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +65,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +66,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +67,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +68,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +69,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +70,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +71,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +72,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +73,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +74,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +75,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +76,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +77,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +78,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +79,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +80,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +81,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +82,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +83,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +84,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +85,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +86,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +87,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +88,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +89,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +90,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +91,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +92,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +93,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +94,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +95,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +96,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +97,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +98,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +99,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +100,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +101,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +102,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +103,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +104,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +105,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +106,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +107,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +108,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +109,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +110,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +111,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +112,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +113,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +114,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +115,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +116,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +117,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +118,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +119,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +120,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +121,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +122,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +123,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +124,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +125,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +126,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +127,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +128,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +129,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +130,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +131,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +132,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +133,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +134,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +135,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +136,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +137,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +138,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +139,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +140,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +141,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +142,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +143,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +144,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +145,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +146,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +147,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +148,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +149,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +150,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +151,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +152,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +153,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +154,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +155,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +156,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +157,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +158,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +159,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +160,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +161,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +162,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +163,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +164,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +165,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +166,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +167,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +168,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +169,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +170,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +171,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +172,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +173,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +174,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +175,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +176,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +177,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +178,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +179,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +180,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +181,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +182,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +183,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +184,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +185,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +186,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +187,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +188,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +189,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +190,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +191,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +192,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +193,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +194,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +195,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +196,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +197,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +198,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +199,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +200,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +201,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +202,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +203,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +204,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +205,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +206,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +207,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +208,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +209,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +210,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +211,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +212,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +213,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +214,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +215,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +216,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +217,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +218,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +221,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +222,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +223,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +224,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +225,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +226,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +227,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +228,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +229,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +230,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +231,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +232,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +233,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +234,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +235,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +236,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +237,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +238,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +239,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +240,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +241,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +242,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +243,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +244,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +245,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +246,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +248,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +249,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +250,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +251,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +252,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +253,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +254,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +255,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +256,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +257,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +258,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +259,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +260,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +261,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +262,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +263,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +264,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +265,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +266,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +267,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +268,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +269,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +270,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +271,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +272,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +273,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +274,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +275,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +276,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +277,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +278,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +279,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +280,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +281,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +282,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +283,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +284,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +285,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +286,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +287,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +288,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +289,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +290,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +291,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +292,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +293,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +294,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +295,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +296,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +297,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +298,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +299,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +300,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +301,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +302,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +303,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +304,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +305,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +306,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +307,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +308,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +309,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +310,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +312,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +313,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +314,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +315,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +316,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +317,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +318,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +319,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +320,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +321,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +322,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +323,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +324,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +325,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +326,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +327,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +328,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +329,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +330,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +331,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +332,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +333,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +334,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +335,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +336,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +337,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +339,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +340,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +341,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +342,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +343,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +344,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +345,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +346,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +347,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +348,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +349,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +350,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +351,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +352,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +353,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +354,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +355,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +357,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +358,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +359,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +360,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +361,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +362,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +363,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +364,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +365,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +366,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +367,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +368,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +369,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +370,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +371,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +372,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +373,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +374,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +375,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +376,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +377,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +378,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +379,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +380,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +381,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +382,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +383,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +384,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +385,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +386,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +387,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +388,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +389,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +390,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +391,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +392,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +393,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +394,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +395,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +396,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +397,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +398,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +399,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +400,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +401,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +402,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +403,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +404,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +405,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +406,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +407,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +408,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +409,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +410,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +411,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +412,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +413,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +414,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +415,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +416,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +417,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +418,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +419,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +420,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +421,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +422,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +423,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +424,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +425,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +426,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +427,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +428,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +431,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +432,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +433,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +434,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +435,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +436,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +437,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +438,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +439,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +440,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +441,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +442,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +443,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +444,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +445,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +446,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +448,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +449,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +450,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +451,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +452,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +453,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +454,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +455,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +456,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +457,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +458,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +459,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +460,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +461,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +462,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +463,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +464,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +466,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +467,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +468,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +469,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +470,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +471,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +472,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +473,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +474,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +476,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +477,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +478,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +479,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +480,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +481,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +482,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +483,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +484,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +485,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +486,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +487,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +488,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +489,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +490,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +491,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +492,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +493,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +494,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +495,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +496,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +497,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +498,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +499,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +500,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +501,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +502,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +503,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +504,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +505,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +506,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +507,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +508,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +509,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +510,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +511,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +512,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +513,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +514,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +515,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +516,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +517,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +518,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +519,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +520,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +521,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +522,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +523,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +524,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +525,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +526,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +527,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +528,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +529,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +530,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +531,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +532,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +533,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +534,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +535,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +536,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +537,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +538,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +539,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +540,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +541,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +542,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +543,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +544,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +545,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +546,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +547,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +548,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +549,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +550,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +551,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +552,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +553,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +554,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +555,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +556,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +557,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +558,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +559,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +560,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +561,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +562,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +563,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +564,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +565,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +566,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +567,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +568,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +569,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +570,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +571,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +572,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +573,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +574,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +575,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +576,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +577,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +578,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +579,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +580,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +581,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +582,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +583,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +584,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +585,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +586,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +587,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +588,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +589,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +590,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +591,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +592,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +593,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +594,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +595,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +596,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +597,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +598,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +599,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +600,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +601,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +602,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +603,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +604,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +605,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +606,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +607,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +608,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +609,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +610,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +611,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +612,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +613,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +614,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +615,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +616,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +617,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +618,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +619,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +620,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +621,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +622,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +623,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +624,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +625,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +626,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +627,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +628,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +631,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +632,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +633,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +634,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +635,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +636,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +637,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +638,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +639,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +640,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +641,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +642,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +643,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +644,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +645,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +646,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +648,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +649,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +650,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +651,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +652,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +653,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +654,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +655,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +656,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +658,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +659,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +660,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +661,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +662,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +663,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +664,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +665,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +666,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +667,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +668,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +669,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +670,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +671,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +672,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +673,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +674,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +675,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +676,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +677,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +678,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +679,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +680,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +681,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +682,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +683,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +684,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +685,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +686,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +687,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +688,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +689,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +690,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +691,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +692,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +693,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +694,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +695,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +696,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +697,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +698,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +699,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +700,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +701,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +702,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +703,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +704,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +705,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +706,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +707,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +708,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +709,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +710,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +711,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +712,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +713,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +714,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +715,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +716,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +717,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +718,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +719,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +720,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +722,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +723,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +724,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +725,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +726,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +727,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +728,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +729,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +730,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +731,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +732,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +733,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +734,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +735,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +736,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +737,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +739,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +740,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +741,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +742,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +743,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +744,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +745,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +746,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +747,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +749,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +750,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +751,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +752,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +753,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +754,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +755,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +756,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +757,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +758,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +759,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +760,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +761,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +762,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +763,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +764,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +765,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +767,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +768,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +769,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +770,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +771,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +772,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +773,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +774,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +775,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +776,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +777,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +778,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +779,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +780,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +781,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +782,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +783,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +784,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +785,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +786,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +787,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +788,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +789,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +790,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +791,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +792,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +793,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +794,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +795,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +796,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +797,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +798,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +799,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +800,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +801,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +802,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +803,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +804,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +805,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +806,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +807,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +808,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +809,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +810,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +811,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +812,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +813,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +814,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +815,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +816,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +817,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +818,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +819,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +820,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +821,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +822,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +823,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +824,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +825,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +826,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +827,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +828,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +831,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +832,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +833,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +834,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +835,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +836,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +837,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +838,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +841,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +842,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +843,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +844,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +845,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +846,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +847,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +848,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +849,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +850,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +851,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +852,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +853,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +854,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +855,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +856,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +858,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +859,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +860,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +861,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +862,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +863,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +864,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +865,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +866,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +867,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +868,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +869,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +870,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +871,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +872,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +873,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +874,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +876,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +877,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +878,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +879,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +880,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +881,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +882,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +883,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +884,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +886,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +887,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +888,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +889,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +890,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +891,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +892,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +893,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +894,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +895,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +896,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +897,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +898,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +899,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +900,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +901,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +902,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +903,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +904,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +905,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +906,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +907,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +908,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +909,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +910,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +911,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +912,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +913,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +914,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +915,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +916,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +917,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +918,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +919,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +920,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +921,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +922,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +923,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +924,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +925,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +926,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +927,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +928,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +929,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +930,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +931,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +932,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +933,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +934,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +935,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +936,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +937,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +938,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +939,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +940,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +941,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +942,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +943,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +944,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +945,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +946,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +947,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +948,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +949,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +950,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +951,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +952,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +953,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +954,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +955,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +956,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +957,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +958,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +959,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +960,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +961,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +962,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +963,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +964,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +965,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +966,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +967,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +968,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +969,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +970,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +971,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +972,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +973,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +974,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +975,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +976,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +977,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +978,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +979,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +980,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +981,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +982,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +983,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +984,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +985,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +986,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +987,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +988,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +989,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +990,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +991,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +992,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +993,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +994,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +995,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +996,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +997,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +998,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +999,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1000,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1001,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1002,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1003,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1004,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1005,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1006,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1007,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1008,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1009,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1010,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1011,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1012,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1013,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1014,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1015,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1016,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1017,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1018,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1019,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1020,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1021,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1022,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1023,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1024,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1025,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1026,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1027,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1028,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1029,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1030,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1031,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1032,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1033,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1034,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1035,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1036,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1037,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1038,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1041,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1042,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1043,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1044,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1045,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1046,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1047,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1048,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1049,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1050,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1051,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1052,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1053,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1054,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1055,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1056,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1058,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1059,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1060,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1061,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1062,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1063,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1064,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1065,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1066,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1067,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1068,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1069,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1070,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1071,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1072,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1073,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1074,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1075,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1076,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1077,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1078,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1079,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1080,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1081,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1082,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1083,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1084,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1085,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1086,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1087,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1088,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1089,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1090,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1091,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1092,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1093,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1094,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1095,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1096,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1097,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1098,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1099,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1100,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1101,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1102,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1103,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1104,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1105,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1106,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1107,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1108,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1109,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1110,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1111,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1112,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1113,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1114,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1115,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1116,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1117,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1118,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1119,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1120,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1121,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1122,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1123,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1124,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1125,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1126,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1127,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1128,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1129,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1130,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1132,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1133,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1134,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1135,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1136,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1137,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1138,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1139,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1140,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1141,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1142,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1143,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1144,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1145,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1146,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1147,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1149,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1150,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1151,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1152,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1153,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1154,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1155,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1156,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1157,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1158,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1159,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1160,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1161,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1162,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1163,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1164,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1165,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1166,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1167,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1168,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1169,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1170,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1171,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1172,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1173,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1174,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1175,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1177,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1178,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1179,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1180,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1181,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1182,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +1183,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +1184,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +1185,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1186,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +1187,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +1188,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1189,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1190,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1191,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1192,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +1193,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1194,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1195,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1196,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1197,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1198,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1199,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1200,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1201,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1202,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1203,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +1204,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1205,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +1206,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1207,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1208,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1209,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1210,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1211,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1212,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1213,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1214,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +1215,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +1216,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +1217,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +1218,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1219,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1220,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1221,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1222,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +1223,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1224,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1225,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +1226,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +1227,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +1228,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1229,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1230,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1231,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1232,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1233,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1234,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1235,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1236,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1237,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1238,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1241,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1242,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1243,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1244,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1245,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1246,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1247,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1248,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1249,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1250,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +1251,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1252,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1253,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1254,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +1255,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +1256,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +1257,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1258,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1259,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1260,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1261,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1262,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1263,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +1264,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +1265,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +1266,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +1267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +1268,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1269,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1270,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +1271,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1272,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1273,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1274,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1275,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +1276,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1277,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1278,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1279,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1280,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1281,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1282,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1283,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1284,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +1286,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +1287,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +1288,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1289,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1290,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1291,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1292,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1293,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +1294,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1295,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1296,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1297,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1298,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1299,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1300,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1301,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1302,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1303,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1304,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1305,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1306,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1307,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +1308,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +1309,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +1310,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1311,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1312,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1313,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1314,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1315,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +1316,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1317,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1318,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1319,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1320,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1321,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1322,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1323,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +1324,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +1325,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +1326,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +1327,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1328,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1329,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1330,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1331,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1332,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1333,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1334,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +1335,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +1336,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1337,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1338,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1339,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1340,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1341,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1342,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1343,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1344,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1345,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +1346,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +1347,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +1348,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +1349,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +1350,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1351,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1352,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1353,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1354,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +1355,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +1356,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +1357,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1358,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1359,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1360,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1361,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1362,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1363,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1364,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1365,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +1366,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1367,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1368,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1369,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1370,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1371,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1372,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1373,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1374,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1375,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +1376,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +1377,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +1378,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +1379,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +1380,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1381,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1382,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1383,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1384,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1385,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +1386,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +1387,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +1388,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +1389,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1390,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1391,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1392,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1393,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1394,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1395,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1396,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1397,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +1398,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +1399,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +1400,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +1401,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +1402,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +1403,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1404,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1405,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1406,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1407,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1408,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1409,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1410,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1411,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1412,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1413,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1414,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1415,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1416,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1417,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1418,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1419,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1420,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1421,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1422,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1423,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1424,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1425,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1426,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1427,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1428,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1429,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1430,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1431,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1432,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1433,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1434,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1435,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1436,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1437,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1438,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1439,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1440,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1441,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1442,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1443,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1444,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1445,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1446,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1447,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1448,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1451,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1452,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1453,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1454,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1455,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1456,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1457,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1458,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1459,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1460,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1461,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1462,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1463,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1464,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1465,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1466,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1468,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1469,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1470,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1471,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1472,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1473,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1474,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1475,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1476,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1477,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1478,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1479,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1480,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1481,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1482,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1483,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1484,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1485,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1486,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1487,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1488,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1489,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1490,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1491,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1492,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1493,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1494,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1495,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1496,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1497,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1498,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1499,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1500,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1501,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1502,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1503,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1504,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1505,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1506,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1507,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1508,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1509,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1510,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1511,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1512,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1513,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1514,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1515,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1516,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1517,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1518,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1519,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1520,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1521,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1522,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1523,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1524,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1525,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1526,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1527,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1528,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1529,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1530,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1532,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1533,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1534,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1535,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1536,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1537,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1538,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1539,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1540,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1542,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1543,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1544,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1545,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1546,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1547,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1548,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1549,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1550,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1551,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1552,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1553,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1554,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1555,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1556,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1557,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1559,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1560,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1561,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1562,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1563,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1564,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1565,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1566,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1567,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1568,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1569,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1570,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1571,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1572,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1573,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1574,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1575,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1577,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1578,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1579,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1580,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1581,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1582,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1583,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1584,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1585,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1587,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1588,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1589,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1590,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1591,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1592,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +1593,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +1594,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +1595,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1596,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +1597,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +1598,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1599,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1600,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1601,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1602,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +1603,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1604,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1605,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1606,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1607,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1608,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1609,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1610,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1611,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1612,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1613,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +1614,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1615,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +1616,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1617,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1618,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1619,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1620,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1621,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1622,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1623,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1624,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +1625,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +1626,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +1627,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +1628,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1629,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1630,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1631,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1632,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +1633,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1634,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1635,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +1636,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +1637,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +1638,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1639,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1640,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1641,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1642,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1643,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1644,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1645,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1646,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1647,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1648,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1651,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1652,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1653,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1654,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1655,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1656,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1657,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1658,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1659,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1660,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +1661,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1662,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1663,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1664,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +1665,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +1666,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +1667,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1668,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1669,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1670,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1671,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1672,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1673,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +1674,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +1675,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +1676,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +1677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +1678,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1679,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1680,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +1681,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1682,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1683,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1684,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1685,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +1686,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1687,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1688,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1689,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1690,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1691,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1692,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1693,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1694,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +1696,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +1697,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +1698,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1699,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1700,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1701,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1702,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1703,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +1704,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1705,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1706,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1707,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1708,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1709,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1710,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1711,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1712,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1713,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1714,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1715,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1716,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1717,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +1718,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +1719,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +1720,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1721,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1722,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1723,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1724,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1725,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +1726,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1727,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1728,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1729,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1730,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1731,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1732,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1733,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +1734,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +1735,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +1736,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +1737,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1738,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1739,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1740,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1741,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1742,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1743,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1744,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +1745,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +1746,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1747,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1748,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1749,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1750,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1751,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1752,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1753,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1754,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1755,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +1756,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +1757,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +1758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +1759,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +1760,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1761,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1762,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1763,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1764,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +1765,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +1766,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +1767,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1768,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1769,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1770,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1771,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1772,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1773,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1774,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1775,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +1776,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1777,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1778,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1779,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1780,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1781,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1782,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1783,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1784,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1785,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +1786,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +1787,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +1788,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +1789,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +1790,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1791,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1792,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1793,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1794,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1795,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +1796,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +1797,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +1798,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +1799,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1800,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1801,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1802,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1803,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1804,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1805,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1806,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1807,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +1808,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +1809,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +1810,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +1811,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +1812,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +1813,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1814,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1815,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1816,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1817,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1818,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1819,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1820,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1821,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1822,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1823,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1824,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1825,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1826,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1827,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1828,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1829,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1830,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1831,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1832,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1833,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1834,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1835,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1836,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1837,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1838,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1839,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1840,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1841,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1842,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1843,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1844,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1845,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1846,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1847,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1848,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1851,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1852,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1853,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1854,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1855,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1856,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1857,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1858,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1861,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1862,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1863,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1864,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1865,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1866,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1867,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1868,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1869,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1870,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1871,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1872,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1873,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1874,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1875,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1876,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1878,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1879,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1880,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1881,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1882,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1883,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1884,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1885,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1886,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1887,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1888,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1889,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1890,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1891,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1892,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1893,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1894,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1895,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1896,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1897,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1898,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1899,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1900,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1901,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1902,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1903,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1904,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1905,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1906,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1907,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1908,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1909,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1910,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1911,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1912,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1913,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1914,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1915,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1916,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1917,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1918,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1919,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1920,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1921,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1922,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1923,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1924,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1925,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1926,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1927,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1928,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1929,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1930,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1931,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1932,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1933,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1934,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1935,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1936,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1937,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1938,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1939,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1940,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1942,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1943,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1944,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1945,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1946,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1947,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1948,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1949,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1950,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1951,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1952,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1953,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1954,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1955,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1956,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1957,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1958,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1959,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1960,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1961,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1962,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1963,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1964,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1965,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1966,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1967,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1969,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1970,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1971,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1972,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1973,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1974,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1975,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1976,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1977,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1978,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1979,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1980,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1981,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1982,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1983,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1984,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1985,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1987,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1988,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1989,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1990,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1991,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1992,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1993,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1994,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1995,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1996,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1997,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1998,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1999,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2000,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2001,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2002,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +2003,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +2004,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +2005,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2006,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +2007,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +2008,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2009,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2010,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2011,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2012,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +2013,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2014,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2015,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2016,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2017,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2018,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2019,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2020,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2021,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2022,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2023,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +2024,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2025,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +2026,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2027,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2028,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2029,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2030,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2031,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2032,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2033,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2034,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +2035,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +2036,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +2037,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +2038,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2039,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2040,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2041,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2042,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +2043,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2044,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2045,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +2046,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +2047,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +2048,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2049,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2050,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2051,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2052,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +2053,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +2054,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +2055,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2056,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +2057,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +2058,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +2059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2061,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +2062,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +2063,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +2064,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +2065,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +2066,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +2067,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +2068,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +2069,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2070,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2071,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +2072,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +2073,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +2074,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +2075,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +2076,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +2077,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +2078,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +2079,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +2080,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2081,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2082,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2083,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +2084,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +2085,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +2086,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +2087,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +2088,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2089,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2090,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2091,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +2092,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +2093,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +2094,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +2095,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +2096,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +2097,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +2098,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +2099,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +2100,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +2101,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +2102,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2103,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +2104,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +2105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +2106,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +2107,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +2108,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2109,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2110,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2111,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +2112,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +2113,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +2114,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +2115,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2116,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2117,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +2118,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +2119,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +2120,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2121,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2122,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2123,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2124,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2125,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2126,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2127,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +2128,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +2129,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +2130,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2131,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2132,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +2133,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +2134,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +2135,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +2136,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2137,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +2138,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +2139,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +2140,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2141,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +2142,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +2143,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +2144,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +2145,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +2146,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +2147,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2148,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +2149,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +2150,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2151,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +2152,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +2153,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +2154,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +2155,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +2156,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2157,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +2158,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +2159,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +2160,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2161,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2162,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2163,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2164,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2165,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +2166,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +2167,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +2168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +2169,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +2170,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2171,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2172,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +2173,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +2174,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +2175,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +2176,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +2177,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2178,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +2179,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +2180,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2181,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2182,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +2183,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +2184,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +2185,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +2186,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2187,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +2188,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +2189,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +2190,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2191,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2192,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2193,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2194,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2195,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +2196,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +2197,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +2198,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +2199,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +2200,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +2201,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2202,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2203,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2204,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2205,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +2206,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +2207,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +2208,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +2209,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +2210,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2211,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2212,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2213,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2214,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2215,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2216,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2217,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +2218,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +2219,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +2220,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +2221,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +2222,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +2223,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2224,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2225,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2226,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2227,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2228,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2229,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2230,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2231,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2232,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2233,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +2234,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +2235,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +2236,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +2237,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2238,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2239,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2240,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2241,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2242,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2243,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2244,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2245,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2246,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2247,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2248,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +2249,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +2250,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2251,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2252,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2253,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2254,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2255,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2256,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2257,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2258,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +2261,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2262,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2263,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +2264,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +2265,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +2266,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +2267,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +2268,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2269,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2270,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2271,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2272,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2273,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2274,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2275,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2276,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +2277,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +2278,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +2279,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +2280,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +2281,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2282,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2283,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2284,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2285,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2286,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2288,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2289,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2290,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2291,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2292,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2293,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2294,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2295,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +2296,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +2297,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +2298,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +2299,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2300,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2301,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2302,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2303,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2304,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2305,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2306,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2307,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2308,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2309,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2310,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2311,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2312,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2313,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2314,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2315,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2316,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2317,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2318,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2319,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2320,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +2321,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2322,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2323,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2324,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2325,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2326,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2327,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2328,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2329,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +2330,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2331,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2332,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2333,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +2334,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +2335,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +2336,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +2337,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +2338,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2339,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2340,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2341,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2342,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +2343,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +2344,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +2345,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +2346,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2347,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +2348,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +2349,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +2350,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2352,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2353,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2354,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2355,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +2356,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +2357,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +2358,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +2359,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +2360,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2361,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2362,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2363,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2364,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2365,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2366,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2367,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2368,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2369,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2370,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2371,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2372,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2373,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2374,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2375,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2376,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2377,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2379,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +2380,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +2381,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2382,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2383,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2384,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2385,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2386,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2387,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2388,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2389,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2390,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2391,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2392,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2393,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +2394,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +2395,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +2396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +2397,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +2398,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2399,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2400,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2401,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2402,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +2403,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +2404,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +2405,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +2406,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2407,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +2408,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2409,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2410,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2411,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2412,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +2413,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +2414,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +2415,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2416,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +2417,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +2418,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2419,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2420,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2421,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2422,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +2423,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2424,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2425,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2426,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2427,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2428,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2429,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2430,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2431,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2432,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2433,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +2434,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2435,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +2436,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2437,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2438,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2439,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2440,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2441,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2442,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2443,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2444,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +2445,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +2446,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +2447,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +2448,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2449,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2450,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2451,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2452,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +2453,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2454,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2455,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +2456,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +2457,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +2458,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2459,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2460,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2461,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2462,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2463,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2464,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2466,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2467,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2468,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2469,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2470,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2471,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2472,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2473,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2474,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2475,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2476,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2477,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2478,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2479,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2480,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2481,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2482,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2483,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2484,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2485,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2486,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2487,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2488,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2489,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2490,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2491,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2492,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2493,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2494,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2495,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2496,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2497,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2498,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2499,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2500,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2501,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2502,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2503,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2504,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2505,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2506,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2507,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2508,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2509,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2510,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2511,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2512,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2513,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2514,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2515,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2516,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2517,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2518,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2519,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2520,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2521,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2522,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2523,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2524,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2525,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2526,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2527,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2528,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2529,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2530,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2532,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2533,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2534,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2535,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2536,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2537,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2538,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2539,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2540,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2541,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2542,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2543,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2544,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2545,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2546,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2547,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2548,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2549,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2550,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2551,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2552,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2553,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2554,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2555,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2556,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2557,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2558,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2559,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2560,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2561,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2562,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2563,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2564,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2565,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2566,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2567,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2568,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2569,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2570,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2571,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2572,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2573,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2574,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2575,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2577,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2578,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2579,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2580,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2581,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2582,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2583,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2584,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2585,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2586,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2587,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2588,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2589,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2590,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2591,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2592,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2593,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2594,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2595,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2596,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2597,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2598,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2599,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2600,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2601,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2602,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2603,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2604,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2605,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2606,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2607,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2608,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2609,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2610,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2611,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2612,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2613,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2614,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2615,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2616,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2617,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2618,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2619,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2620,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2621,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2622,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2623,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2624,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2625,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2626,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2627,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2628,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2629,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2630,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2631,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2632,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2633,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2634,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2635,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2636,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2637,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2638,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2639,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2640,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2641,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2642,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2643,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2644,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2645,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2646,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2648,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2649,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2650,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2651,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2652,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2653,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2654,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2655,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2656,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2657,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2658,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2659,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2660,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2661,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2662,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2663,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2664,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2665,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2666,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2667,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2668,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2669,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2670,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2671,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2672,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2673,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2674,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2675,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2676,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2677,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2678,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2679,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2680,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2681,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2682,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2683,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2684,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2685,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2686,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2687,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2688,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2689,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2690,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2691,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2692,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2693,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2694,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2695,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2696,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2697,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2698,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2699,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2700,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2701,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2702,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2703,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2704,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2705,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2706,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2707,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2708,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2709,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2710,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2711,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2712,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2713,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2714,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2715,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2716,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2717,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2718,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2719,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2720,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2721,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2722,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2723,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2724,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2725,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2726,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2727,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2728,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2729,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2730,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2731,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2732,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2733,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2734,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2735,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2736,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2737,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2739,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2740,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2741,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2742,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2743,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2744,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2745,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2746,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2747,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2748,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2749,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2750,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2751,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2752,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2753,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2754,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2755,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2756,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2757,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2759,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2760,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2761,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2762,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2763,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2764,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2765,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2766,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2767,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2768,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2769,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2770,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2771,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2772,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2773,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2774,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2775,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2776,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2777,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2778,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2779,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2780,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2781,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2782,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2783,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2784,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2785,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2786,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2787,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2788,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2789,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2790,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2791,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2792,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2793,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2794,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2795,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2796,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2797,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2798,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2799,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2800,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2801,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2802,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2803,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2804,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2805,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2806,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2807,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2808,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2809,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2810,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2811,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2812,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2813,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2814,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2815,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2816,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2817,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2818,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2819,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2820,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2821,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2822,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2823,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2824,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2825,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2826,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2827,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2828,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2831,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2832,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2833,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2834,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2835,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2836,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2837,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2838,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2839,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2840,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2841,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2842,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2843,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2844,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2845,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2846,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2847,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2848,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2851,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2852,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2853,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2854,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2855,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2856,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2857,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2858,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2859,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2860,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2861,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2862,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2863,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2864,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2865,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2866,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2867,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2868,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2869,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2870,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2871,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2872,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2873,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2874,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2876,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2877,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2878,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2879,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2880,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2881,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2882,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2883,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2884,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2885,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2886,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2887,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2888,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2889,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2890,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2891,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2892,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2893,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2894,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2895,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2896,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2897,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2898,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2899,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2900,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2901,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2902,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2903,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2904,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2905,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2906,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2907,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2908,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2909,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2910,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2911,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2912,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2913,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2914,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2915,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2916,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2917,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2918,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2919,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2920,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2921,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2922,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2923,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2924,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2925,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2926,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2927,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2928,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2929,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2930,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2931,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2932,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2933,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2934,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2935,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2936,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2937,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2938,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2939,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2940,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2942,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2943,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2944,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2945,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2946,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2947,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2948,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2949,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2950,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2951,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2952,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2953,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2954,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2955,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2956,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2957,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2958,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2959,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2960,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2961,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2962,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2963,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2964,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2965,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2966,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2967,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2968,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2969,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2970,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2971,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2972,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2973,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2974,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2975,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2976,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2977,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2978,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2979,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2980,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2981,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2982,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2983,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2984,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2985,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2987,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2988,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2989,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2990,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2991,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2992,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2993,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2994,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2995,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2996,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2997,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2998,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2999,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3000,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3001,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3002,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3003,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3004,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3005,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3006,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3007,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3008,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3009,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3010,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3011,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3012,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3013,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3014,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3015,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3016,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3017,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3018,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3019,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3020,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3021,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3022,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3023,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3024,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3025,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3026,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3027,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3028,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3029,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3030,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3031,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3032,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3033,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3034,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3035,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3036,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3037,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3038,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3039,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3040,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3041,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3042,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3043,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3044,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3045,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3046,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3047,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3048,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3049,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3050,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3051,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3052,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3053,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3054,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3055,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3056,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3058,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3059,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3060,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3061,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3062,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3063,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3064,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3065,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3066,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3067,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3068,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3069,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3070,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3071,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3072,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3073,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3074,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3075,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3076,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3077,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3078,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3079,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3080,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3081,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3082,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3083,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3084,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3085,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3086,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3087,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3088,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3089,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3090,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3091,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3092,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3093,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3094,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3095,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3096,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3097,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3098,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3099,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3100,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3101,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3102,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3103,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3104,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3105,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3106,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3107,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3108,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3109,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3110,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3111,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3112,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3113,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3114,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3115,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3116,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3117,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3118,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3119,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3120,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3121,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3122,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3123,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3124,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3125,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3126,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3127,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3128,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3129,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3130,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3131,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3132,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3133,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3134,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3135,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3136,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3137,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3138,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3139,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3140,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3141,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3142,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3143,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3144,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3145,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3146,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3147,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3149,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3150,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3151,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3152,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3153,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3154,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3155,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3156,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3157,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3158,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3159,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3160,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3161,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3162,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3163,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3164,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3165,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3166,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3167,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3169,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3170,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3171,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3172,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3173,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3174,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3175,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3176,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3177,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3178,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3179,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3180,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3181,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3182,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3183,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3184,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3185,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3186,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3187,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3188,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3189,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3190,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3191,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3192,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3193,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3194,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3195,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3196,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3197,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3198,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3199,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3200,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3201,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3202,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3203,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3204,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3205,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3206,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3207,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3208,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3209,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3210,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3211,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3212,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3213,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3214,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3215,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3216,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3217,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3218,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3221,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3222,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3223,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3224,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3225,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3226,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3227,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3228,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3229,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3230,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3231,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3232,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3233,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3234,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3235,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3236,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3237,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3238,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3241,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3242,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3243,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3244,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3245,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3246,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3247,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3248,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3249,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3250,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3251,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3252,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3253,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3254,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3255,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3256,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3257,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3258,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3261,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3262,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3263,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3264,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3265,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3266,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3267,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3268,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3269,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3270,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3271,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3272,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3273,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3274,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3275,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3276,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3277,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3278,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3279,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3280,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3281,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3282,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3283,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3284,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3286,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3287,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3288,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3289,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3290,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3291,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3292,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3293,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3294,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3295,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3296,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3297,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3298,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3299,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3300,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3301,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3302,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3303,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3304,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3305,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3306,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3307,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3308,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3309,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3310,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3312,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3313,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3314,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3315,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3316,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3317,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3318,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3319,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3320,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3321,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3322,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3323,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3324,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3325,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3326,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3327,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3328,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3329,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3330,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3331,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3332,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3333,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3334,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3335,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3336,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3337,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3338,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3339,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3340,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3341,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3342,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3343,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3344,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3345,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3346,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3347,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3348,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3349,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3350,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3352,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3353,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3354,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3355,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3357,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3358,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3359,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3360,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3361,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3362,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3363,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3364,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3365,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3366,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3367,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3368,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3369,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3370,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3371,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3372,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3373,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3374,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3375,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3376,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3377,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3378,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3379,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3380,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3381,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3382,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3383,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3384,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3385,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3386,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3387,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3388,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3389,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3390,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3391,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3392,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3393,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3394,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3395,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3397,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3398,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3399,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3400,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3401,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3402,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3403,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3404,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3405,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3406,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3407,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3408,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3409,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3410,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3411,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3412,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3413,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3414,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3415,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3416,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3417,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3418,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3419,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3420,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3421,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3422,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3423,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3424,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3425,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3426,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3427,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3428,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3429,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3430,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3431,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3432,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3433,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3434,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3435,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3436,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3437,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3438,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3439,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3440,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3441,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3442,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3443,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3444,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3445,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3446,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3448,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3449,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3450,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3451,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3452,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3453,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3454,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3455,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3456,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3457,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3458,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3459,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3460,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3461,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3462,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3463,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3464,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3465,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3466,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3468,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3469,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3470,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3471,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3472,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3473,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3474,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3475,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3476,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3477,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3478,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3479,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3480,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3481,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3482,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3483,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3484,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3485,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3486,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3487,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3488,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3489,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3490,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3491,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3492,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3493,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3494,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3495,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3496,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3497,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3498,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3499,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3500,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3501,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3502,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3503,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3504,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3505,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3506,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3507,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3508,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3509,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3510,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3511,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3512,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3513,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3514,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3515,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3516,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3517,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3518,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3519,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3520,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3521,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3522,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3523,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3524,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3525,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3526,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3527,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3528,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3529,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3530,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3531,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3532,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3533,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3534,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3535,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3536,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3537,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3538,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3539,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3540,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3541,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3542,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3543,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3544,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3545,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3546,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3547,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3548,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3549,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3550,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3551,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3552,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3553,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3554,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3555,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3556,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3557,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3559,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3560,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3561,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3562,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3563,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3564,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3565,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3566,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3567,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3568,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3569,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3570,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3571,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3572,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3573,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3574,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3575,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3576,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3577,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3578,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3579,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3580,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3581,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3582,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3583,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3584,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3585,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3586,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3587,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3588,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3589,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3590,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3591,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3592,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3593,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3594,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3595,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3596,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3597,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3598,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3599,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3600,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3601,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3602,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3603,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3604,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3605,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3606,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3607,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3608,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3609,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3610,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3611,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3612,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3613,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3614,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3615,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3616,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3617,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3618,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3619,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3620,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3621,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3622,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3623,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3624,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3625,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3626,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3627,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3628,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3631,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3632,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3633,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3634,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3635,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3636,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3637,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3638,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3639,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3640,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3641,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3642,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3643,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3644,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3645,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3646,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3647,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3648,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3651,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3652,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3653,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3654,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3655,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3656,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3657,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3658,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3659,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3660,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3661,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3662,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3663,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3664,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3665,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3666,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3667,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3668,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3669,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3670,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3671,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3672,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3673,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3674,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3675,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3676,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3677,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3678,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3679,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3680,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3681,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3682,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3683,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3684,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3685,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3686,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3687,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3688,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3689,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3690,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3691,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3692,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3693,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3694,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3696,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3697,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3698,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3699,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3700,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3701,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3702,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3703,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3704,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3705,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3706,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3707,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3708,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3709,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3710,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3711,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3712,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3713,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3714,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3715,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3716,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3717,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3718,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3719,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3720,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3722,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3723,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3724,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3725,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3726,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3727,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3728,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3729,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3730,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3731,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3732,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3733,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3734,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3735,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3736,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3737,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3738,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3739,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3740,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3741,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3742,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3743,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3744,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3745,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3746,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3747,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3748,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3749,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3750,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3751,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3752,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3753,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3754,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3755,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3756,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3757,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3758,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3759,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3760,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3761,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3762,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3763,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3764,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3765,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3767,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3768,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3769,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3770,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3771,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3772,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3773,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3774,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3775,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3776,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3777,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3778,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3779,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3780,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3781,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3782,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3783,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3784,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3785,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3786,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3787,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3788,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3789,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3790,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3791,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3792,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3793,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3794,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3795,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3796,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3797,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3798,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3799,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3800,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3801,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3802,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3803,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3804,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3805,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3806,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3807,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3808,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3809,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3810,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3811,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3812,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3813,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3814,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3815,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3816,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3817,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3818,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3819,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3820,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3821,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3822,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3823,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3824,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3825,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3826,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3827,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3828,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3829,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3830,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3831,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3832,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3833,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3834,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3835,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3836,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3837,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3838,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3839,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3840,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3841,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3842,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3843,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3844,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3845,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3846,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3847,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3848,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3849,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3850,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3851,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3852,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3853,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3854,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3855,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3856,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3858,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3859,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3860,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3861,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3862,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3863,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3864,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3865,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3866,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3867,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3868,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3869,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3870,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3871,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3872,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3873,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3874,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3875,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3876,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3878,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3879,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3880,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3881,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3882,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3883,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3884,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3885,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3886,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3887,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3888,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3889,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3890,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3891,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3892,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3893,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3894,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3895,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3896,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3897,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3898,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3899,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3900,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3901,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3902,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3903,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3904,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3905,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3906,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3907,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3908,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3909,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3910,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3911,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3912,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3913,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3914,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3915,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3916,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3917,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3918,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3919,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3920,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3921,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3922,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3923,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3924,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3925,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3926,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3927,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3928,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3929,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3930,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3931,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3932,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3933,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3934,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3935,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3936,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3937,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3938,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3939,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3940,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3941,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3942,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3943,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3944,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3945,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3946,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3947,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3948,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3949,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3950,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3951,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3952,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3953,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3954,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3955,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3956,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3957,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3958,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3959,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3960,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3961,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3962,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3963,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3964,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3965,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3966,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3967,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3969,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3970,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3971,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3972,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3973,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3974,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3975,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3976,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3977,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3978,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3979,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3980,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3981,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3982,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3983,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3984,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3985,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3986,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3987,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3988,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3989,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3990,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3991,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3992,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3993,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3994,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3995,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3996,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3997,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3998,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3999,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4000,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4001,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4002,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4003,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4004,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4005,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4006,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4007,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4008,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4009,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4010,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4011,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4012,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4013,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4014,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4015,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4016,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4017,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4018,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4019,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4020,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4021,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4022,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4023,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4024,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4025,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4026,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4027,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4028,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4029,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4030,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4031,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4032,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4033,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4034,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4035,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4036,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4037,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4038,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4041,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4042,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4043,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4044,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4045,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4046,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4047,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4048,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4049,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4050,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4051,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4052,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4053,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4054,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4055,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4056,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4057,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4058,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4061,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4062,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4063,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4064,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4065,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4066,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4067,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4068,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4069,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4070,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4071,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4072,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4073,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4074,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4075,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4076,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4077,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4078,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4079,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4080,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4081,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4082,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4083,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4084,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4085,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4086,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4087,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4088,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4089,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4090,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4091,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4092,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4093,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4094,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4095,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4096,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4097,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4098,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4099,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4100,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4101,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4102,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4103,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4104,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4106,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4107,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4108,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4109,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4110,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4111,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4112,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4113,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4114,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4115,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4116,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4117,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4118,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4119,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4120,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4121,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4122,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4123,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4124,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4125,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4126,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4127,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4128,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4129,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4130,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4132,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4133,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4134,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4135,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4136,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4137,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4138,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4139,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4140,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4141,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4142,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4143,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4144,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4145,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4146,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4147,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4148,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4149,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4150,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4151,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4152,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4153,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4154,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4155,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4156,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4157,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4158,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4159,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4160,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4161,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4162,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4163,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4164,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4165,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4166,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4167,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4168,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4169,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4170,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4171,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4172,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4173,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4174,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4175,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4177,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4178,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4179,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4180,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4181,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4182,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4183,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4184,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4185,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4186,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4187,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4188,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4189,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4190,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4191,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4192,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4193,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4194,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4195,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4196,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4197,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4198,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4199,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4200,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4201,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4202,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4203,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4204,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4205,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4206,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4207,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4208,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4209,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4210,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4211,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4212,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4213,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4214,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4215,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4216,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4217,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4218,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4219,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4220,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4221,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4222,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4223,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4224,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4225,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4226,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4227,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4228,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4229,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4230,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4231,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4232,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4233,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4234,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4235,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4236,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4237,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4238,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4239,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4240,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4241,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4242,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4243,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4244,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4245,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4246,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4248,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4249,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4250,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4251,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4252,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4253,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4254,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4255,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4256,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4257,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4258,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4259,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4260,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4261,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4262,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4263,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4264,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4265,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4266,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4268,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4269,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4270,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4271,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4272,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4273,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4274,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4275,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4276,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4277,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4278,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4279,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4280,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4281,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4282,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4283,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4284,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4285,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4286,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4288,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4289,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4290,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4291,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4292,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4293,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4294,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4295,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4296,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4297,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4298,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4299,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4300,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4301,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4302,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4303,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4304,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4305,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4306,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4307,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4308,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4309,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4310,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4311,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4312,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4313,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4314,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4315,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4316,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4317,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4318,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4319,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4320,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4321,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4322,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4323,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4324,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4325,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4326,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4327,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4328,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4329,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4330,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4331,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4332,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4333,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4334,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4335,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4336,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4337,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4339,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4340,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4341,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4342,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4343,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4344,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4345,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4346,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4347,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4348,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4349,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4350,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4351,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4352,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4353,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4354,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4355,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4356,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4357,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4358,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4359,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4360,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4361,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4362,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4363,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4364,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4365,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4366,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4367,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4368,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4369,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4370,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4371,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4372,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4373,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4374,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4375,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4376,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4377,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4379,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4380,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4381,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4382,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4383,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4384,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4385,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4386,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4387,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4388,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4389,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4390,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4391,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4392,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4393,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4394,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4395,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4396,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4397,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4398,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4399,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4400,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4401,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4402,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4403,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4404,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4405,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4406,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4407,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4408,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4409,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4410,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4411,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4412,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4413,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4414,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4415,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4416,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4417,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4418,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4419,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4420,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4421,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4422,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4423,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4424,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4425,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4426,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4427,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4428,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4431,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4432,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4433,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4434,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4435,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4436,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4437,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4438,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4439,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4440,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4441,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4442,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4443,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4444,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4445,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4446,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4447,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4448,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4451,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4452,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4453,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4454,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4455,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4456,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4457,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4458,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4459,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4460,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4461,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4462,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4463,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4464,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4465,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4466,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4467,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4468,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4469,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4470,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4471,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4472,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4473,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4474,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4476,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4477,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4478,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4479,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4480,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4481,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4482,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4483,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4484,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4485,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4486,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4487,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4488,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4489,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4490,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4491,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4492,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4493,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4494,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4495,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4496,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4497,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4498,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4499,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4500,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4501,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4502,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4503,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4504,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4505,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4506,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4507,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4508,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4509,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4510,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4511,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4512,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4513,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4514,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4515,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4516,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4517,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4518,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4519,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4520,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4521,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4522,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4523,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4524,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4525,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4526,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4527,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4528,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4529,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4530,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4531,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4532,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4533,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4534,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4535,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4536,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4537,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4538,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4539,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4540,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4542,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4543,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4544,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4545,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4546,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4547,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4548,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4549,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4550,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4551,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4552,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4553,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4554,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4555,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4556,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4557,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4558,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4559,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4560,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4561,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4562,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4563,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4564,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4565,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4566,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4567,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4568,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4569,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4570,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4571,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4572,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4573,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4574,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4575,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4576,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4577,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4578,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4579,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4580,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4581,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4582,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4583,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4584,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4585,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4587,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4588,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4589,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4590,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4591,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4592,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4593,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4594,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4595,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4596,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4597,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4598,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4599,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4600,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4601,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4602,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4603,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4604,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4605,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4606,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4607,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4608,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4609,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4610,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4611,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4612,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4613,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4614,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4615,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4616,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4617,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4618,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4619,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4620,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4621,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4622,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4623,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4624,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4625,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4626,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4627,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4628,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4629,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4630,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4631,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4632,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4633,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4634,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4635,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4636,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4637,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4638,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4639,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4640,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4641,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4642,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4643,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4644,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4645,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4646,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4647,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4648,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4649,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4650,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4651,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4652,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4653,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4654,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4655,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4656,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4658,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4659,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4660,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4661,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4662,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4663,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4664,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4665,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4666,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4667,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4668,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4669,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4670,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4671,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4672,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4673,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4674,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4675,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4676,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4678,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4679,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4680,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4681,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4682,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4683,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4684,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4685,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4686,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4687,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4688,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4689,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4690,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4691,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4692,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4693,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4694,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4695,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4696,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4697,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4698,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4699,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4700,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4701,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4702,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4703,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4704,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4705,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4706,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4707,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4708,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4709,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4710,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4711,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4712,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4713,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4714,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4715,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4716,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4717,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4718,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4719,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4720,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4721,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4722,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4723,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4724,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4725,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4726,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4727,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4728,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4729,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4730,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4731,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4732,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4733,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4734,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4735,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4736,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4737,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4738,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4739,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4740,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4741,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4742,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4743,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4744,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4745,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4746,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4747,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4749,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4750,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4751,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4752,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4753,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4754,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4755,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4756,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4757,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4758,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4759,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4760,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4761,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4762,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4763,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4764,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4765,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4766,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4767,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4768,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4769,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4770,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4771,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4772,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4773,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4774,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4775,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4776,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4777,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4778,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4779,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4780,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4781,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4782,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4783,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4784,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4785,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4786,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4787,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4788,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4789,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4790,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4791,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4792,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4793,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4794,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4795,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4796,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4797,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4798,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4799,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4800,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4801,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4802,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4803,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4804,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4805,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4806,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4807,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4808,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4809,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4810,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4811,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4812,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4813,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4814,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4815,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4816,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4817,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4818,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4819,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4820,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4821,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4822,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4823,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4824,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4825,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4826,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4827,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4828,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4829,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4830,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4831,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4832,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4833,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4834,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4835,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4836,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4837,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4838,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4841,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4842,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4843,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4844,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4845,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4846,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4847,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4848,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4849,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4850,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4851,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4852,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4853,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4854,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4855,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4856,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4857,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4858,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4861,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4862,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4863,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4864,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4865,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4866,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4867,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4868,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4869,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4870,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4871,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4872,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4873,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4874,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4875,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4876,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4877,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4878,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4879,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4880,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4881,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4882,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4883,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4884,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4886,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4887,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4888,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4889,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4890,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4891,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4892,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4893,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4894,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4895,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4896,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4897,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4898,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4899,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4900,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4901,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4902,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4903,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4904,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4905,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4906,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4907,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4908,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4909,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4910,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4911,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4912,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4913,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4914,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4915,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4916,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4917,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4918,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4919,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4920,Psoriasis,"I have been experiencing a skin rash on my arms, legs, and torso for the past few weeks. It is red, itchy, and covered in dry, scaly patches.","experiencing skin rash arms , legs , torso past weeks red , itchy , covered dry , scaly patches" +4921,Psoriasis,"My skin has been peeling, especially on my knees, elbows, and scalp. This peeling is often accompanied by a burning or stinging sensation.","skin peeling , especially knees , elbows , scalp peeling often accompanied burning stinging sensation" +4922,Psoriasis,"I have been experiencing joint pain in my fingers, wrists, and knees. The pain is often achy and throbbing, and it gets worse when I move my joints.","experiencing joint pain fingers , wrists , knees pain often achy throbbing , gets worse move joints" +4923,Psoriasis,"There is a silver like dusting on my skin, especially on my lower back and scalp. This dusting is made up of small scales that flake off easily when I scratch them.","silver like dusting skin , especially lower back scalp dusting made small scales flake easily scratch" +4924,Psoriasis,"My nails have small dents or pits in them, and they often feel inflammatory and tender to the touch. Even there are minor rashes on my arms.","nails small dents pits , often feel inflammatory tender touch even minor rashes arms" +4925,Psoriasis,The skin on my palms and soles is thickened and has deep cracks. These cracks are painful and bleed easily.,skin palms soles thickened deep cracks cracks painful bleed easily +4926,Psoriasis,"The skin around my mouth, nose, and eyes is red and inflamed. It is often itchy and uncomfortable. There is a noticeable inflammation in my nails.","skin around mouth , nose , eyes red inflamed often itchy uncomfortable noticeable inflammation nails" +4927,Psoriasis,My skin is very sensitive and reacts easily to changes in temperature or humidity. I often have to be careful about what products I use on my skin.,skin sensitive reacts easily changes temperature humidity often careful products use skin +4928,Psoriasis,"I have noticed a sudden peeling of skin at different parts of my body, mainly arms, legs and back. Also, I face severe joint pain and skin rashes.","noticed sudden peeling skin different parts body , mainly arms , legs back also , face severe joint pain skin rashes" +4929,Psoriasis,"The skin on my genitals is red and inflamed. It is often itchy, burning, and uncomfortable. There are rashes on different parts of the body too.","skin genitals red inflamed often itchy , burning , uncomfortable rashes different parts body" +4930,Psoriasis,"I have experienced fatigue and a general feeling of malaise. I often feel tired and have a lack of energy, even after a good night's sleep.","experienced fatigue general feeling malaise often feel tired lack energy , even good night sleep" +4931,Psoriasis,"The rash on my skin has spread to other parts of my body, including my chest and abdomen. It is itchy and uncomfortable, and it is often worse at night. I am also facing skin peeling.","rash skin spread parts body , including chest abdomen itchy uncomfortable , often worse night also facing skin peeling" +4932,Psoriasis,The rash on my skin is worse in the winter months when the air is dry. I find that I have to moisturize more frequently and use humidifiers to keep my skin hydrated.,rash skin worse winter months air dry find moisturize frequently use humidifiers keep skin hydrated +4933,Psoriasis,"I have experienced difficulty sleeping due to the itching and discomfort caused by the rash. There are small dents in my nails, which is really concerning.","experienced difficulty sleeping due itching discomfort caused rash small dents nails , really concerning" +4934,Psoriasis,"My skin is prone to infections due to dry, flaky patches. I am experiencing a strong pain in my joints. The skin on my knees and elbows is starting to peel off.","skin prone infections due dry , flaky patches experiencing strong pain joints skin knees elbows starting peel" +4935,Psoriasis,"I am starting to have rashes on my skin. The rash often bleeds when I scratch or rub it. Moreover, I have noticed small dents in my nails.","starting rashes skin rash often bleeds scratch rub moreover , noticed small dents nails" +4936,Psoriasis,"I have noticed that my skin has become more sensitive than it used to be. There is a silver like dusting on my skin, especially on my back and elbows.","noticed skin become sensitive used silver like dusting skin , especially back elbows" +4937,Psoriasis,"I am worried about the constant peeling of the skin on my palm, elbow and knee. I have developed rashes on my arms, which itch if I touch them. All of these are making my life quite discomforting and miserable.","worried constant peeling skin palm , elbow knee developed rashes arms , itch touch making life quite discomforting miserable" +4938,Psoriasis,"There is strange pain in my joints. Also, I have noticed strange peeling of skin in different parts of my body. I am afraid there is something wrong going on with my body.","strange pain joints also , noticed strange peeling skin different parts body afraid something wrong going body" +4939,Psoriasis,"My nails have small dents on them. Even my joints have started to pain severely. There is a silver like dusting on my skin, particularly in my back.","nails small dents even joints started pain severely silver like dusting skin , particularly back" +4940,Psoriasis,"The rashes on my skin are not healing. Moreover, I have noticed a sudden peeling of the skin, especially the skin on my elbows and knees. I am really worried about this.","rashes skin healing moreover , noticed sudden peeling skin , especially skin elbows knees really worried" +4941,Psoriasis,"For the past few weeks, I've had a skin rash on my arms, legs, and chest. It's red and irritating, with dry, scaly spots. I have a strange pain in my joints too.","past weeks , skin rash arms , legs , chest red irritating , dry , scaly spots strange pain joints" +4942,Psoriasis,"My skin is peeling, particularly on my knees, elbows, and scalp. This peeling is frequently accompanied by a stinging or burning feeling.","skin peeling , particularly knees , elbows , scalp peeling frequently accompanied stinging burning feeling" +4943,Psoriasis,"I'm having joint discomfort in my fingers, wrists, and knees. The pain is frequently aching and throbbing, and it worsens when I move my joints.","joint discomfort fingers , wrists , knees pain frequently aching throbbing , worsens move joints" +4944,Psoriasis,"My skin has a silvery film, particularly on my back, arms and scalp. This dusting is composed of tiny scales that easily peel off when scratched.","skin silvery film , particularly back , arms scalp dusting composed tiny scales easily peel scratched" +4945,Psoriasis,"I have red and inflammatory skin around my mouth, nose, and eyes. It is frequently irritating and unpleasant. Recently, it has got very painful.","red inflammatory skin around mouth , nose , eyes frequently irritating unpleasant recently , got painful" +4946,Psoriasis,My skin is extremely sensitive and quickly irritated by changes in temperature or humidity. My nails have developed dents on them. I am worried about this sudden change.,skin extremely sensitive quickly irritated changes temperature humidity nails developed dents worried sudden change +4947,Psoriasis,"I've seen a sudden peeling of skin on various regions of my body, mostly my arms, legs, and back. In addition, I have significant joint pain and skin rashes. The rash is spreading to different parts of my body.","seen sudden peeling skin various regions body , mostly arms , legs , back addition , significant joint pain skin rashes rash spreading different parts body" +4948,Psoriasis,"My genital skin is red and irritated. It is frequently irritating, burning, and unpleasant. There are also rashes in various places of the body. Also, I have a strange pain in my joints.","genital skin red irritated frequently irritating , burning , unpleasant also rashes various places body also , strange pain joints" +4949,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. There is a noticeable inflammation in my nails.","trouble sleeping itching pain produced rash nails little dents , really alarming noticeable inflammation nails" +4950,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in excruciating agony. The skin on my knees and elbows is beginning to flake.","dry , flaky areas skin , prone infections joints excruciating agony skin knees elbows beginning flake" +4951,Psoriasis,"My skin is breaking out in rashes. When I scratch or rub the rash, it frequently bleeds. In addition, I've observed little dents in my nails. There is a noticeable inflammation in my nails.","skin breaking rashes scratch rub rash , frequently bleeds addition , observed little dents nails noticeable inflammation nails" +4952,Psoriasis,"I've observed that my skin is more sensitive now than it used to be. My skin has a silvery film, especially on my back and elbows.","observed skin sensitive used skin silvery film , especially back elbows" +4953,Psoriasis,"My palms and soles have grown and developed severe fissures. These cracks are unpleasant and frequently bleed. Also, the skin is starting to peel off.","palms soles grown developed severe fissures cracks unpleasant frequently bleed also , skin starting peel" +4954,Psoriasis,"My nails are starting to have small pits on them. I am worried and don't know what is causing it. Also, my joints pain and there are rashes on my arms and back.","nails starting small pits worried know causing also , joints pain rashes arms back" +4955,Psoriasis,"There is a silver like dusting on my skin. Moreover, the skin on my arms and back are starting to peel off. This is strange and really concerning me.","silver like dusting skin moreover , skin arms back starting peel strange really concerning" +4956,Psoriasis,"My skin rash has extended to other areas of my body, including my chest and belly. It is irritating and unpleasant, and it is frequently worst at night. I'm also experiencing skin flaking.","skin rash extended areas body , including chest belly irritating unpleasant , frequently worst night also experiencing skin flaking" +4957,Psoriasis,"My skin rash gets worse in the winter when the air is dry. To keep my skin moisturized, I have to moisturize more regularly and use humidifiers. I am also facing joint pain.","skin rash gets worse winter air dry keep skin moisturized , moisturize regularly use humidifiers also facing joint pain" +4958,Psoriasis,I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents. I am also experiencing skin peeling in different parts of my body.,trouble sleeping itching pain produced rash nails little dents also experiencing skin peeling different parts body +4959,Psoriasis,"My skin is peeling in places, especially on my knees, elbows, and arms. This peeling is often accompanied by a painful or burning sensation. I am also developing small dents on my nails, which is really concerning.","skin peeling places , especially knees , elbows , arms peeling often accompanied painful burning sensation also developing small dents nails , really concerning" +4960,Psoriasis,"My skin has a silvery layer over it, especially on my back and arms. This dusting is made up of small scales that peel off readily when rubbed. Also, there are rashes all over my body.","skin silvery layer , especially back arms dusting made small scales peel readily rubbed also , rashes body" +4961,Psoriasis,"My arms, face and back are all red and irritated. It is frequently irritating and unpleasant. My nails have a strange inflammation and have developed small dents. I have never seen anything like this.","arms , face back red irritated frequently irritating unpleasant nails strange inflammation developed small dents never seen anything like" +4962,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. Moreover, my joints pain everyday and I have no idea what is causing it.","trouble sleeping itching pain produced rash nails little dents , really alarming moreover , joints pain everyday idea causing" +4963,Psoriasis,My fingers and soles have pretty thick skin that is cracked severely. These fractures hurt and bleed frequently. The fractures are itchy and covered with scales.,fingers soles pretty thick skin cracked severely fractures hurt bleed frequently fractures itchy covered scales +4964,Psoriasis,"My skin has changed from being less sensitive to being more sensitive. My skin has a silvery coating, especially on my back, elbows and knees.","skin changed less sensitive sensitive skin silvery coating , especially back , elbows knees" +4965,Psoriasis,"My nails are slightly dented. Even my joints are now experiencing excruciating discomfort. My skin has a silver-like powder, especially on my back and elbows. ","nails slightly dented even joints experiencing excruciating discomfort skin silver like powder , especially back elbows" +4966,Psoriasis,"I've had trouble falling asleep because of the rash's pain and itching. The skin on my fingers are starting to peel off. My nails have a few tiny cracks, which is really worrying. ","trouble falling asleep rash pain itching skin fingers starting peel nails tiny cracks , really worrying" +4967,Psoriasis,"My joints are experiencing an unusual discomfort. Additionally, I've experienced weird skin peeling in various places on my body. I'm concerned that something is wrong with my body. ","joints experiencing unusual discomfort additionally , experienced weird skin peeling various places body concerned something wrong body" +4968,Psoriasis,"I am starting to have rashes on my arms and neck. The rash often bleeds and hurts when I scratch it. I have also developed small dents in my nails, which is very strange.","starting rashes arms neck rash often bleeds hurts scratch also developed small dents nails , strange" +4969,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in extreme pain . My knees and elbows' skin are starting to peel off.","dry , flaky areas skin , prone infections joints extreme pain knees elbows skin starting peel" +4970,Varicose Veins,"I have a rash on my legs that is causing a lot of discomforts. It seems there is a cramp and I can see prominent veins on the calf. Also, I have been feeling very tired and fatigued in the past couple of days.","rash legs causing lot discomforts seems cramp see prominent veins calf also , feeling tired fatigued past couple days" +4971,Varicose Veins,"My calves have been cramping up when I walk or stand for long periods of time. There are bruise marks on my calves, which is making me worried. I feel tired very soon.","calves cramping walk stand long periods time bruise marks calves , making worried feel tired soon" +4972,Varicose Veins,"There is bruising on my legs that I cannot explain. I can see strange blood vessels below the skin. Also, I am slightly obese and I am really worried.","bruising legs explain see strange blood vessels skin also , slightly obese really worried" +4973,Varicose Veins,I am overweight and have noticed that my legs are swollen and the blood vessels are visible. My legs have swollen and I can see a stream of swollen veins on my calves.,overweight noticed legs swollen blood vessels visible legs swollen see stream swollen veins calves +4974,Varicose Veins,"The veins on my calves have become very prominent and causing discomfort. I can't stand for long periods of time, as it causes pain in my legs, similar to cramps.","veins calves become prominent causing discomfort stand long periods time , causes pain legs , similar cramps" +4975,Varicose Veins,The skin around the veins on my legs is red and inflamed. I believe I can see some of the swollen blood vessels. I am really worried about it.,skin around veins legs red inflamed believe see swollen blood vessels really worried +4976,Varicose Veins,Standing or walking for long periods of time causes a lot of pain in my legs. I get cramps upon doing physical activities. There are bruise marks on my legs too.,standing walking long periods time causes lot pain legs get cramps upon physical activities bruise marks legs +4977,Varicose Veins,The cramps in my calves are making it difficult for me to walk. I feel fatigued after working for some time. I believe obesity is the reason behind this.,cramps calves making difficult walk feel fatigued working time believe obesity reason behind +4978,Varicose Veins,"The swelling in my legs has gotten worse over the past few weeks. Now, a large number of veins are noticeable on my calves, which is making me worried.","swelling legs gotten worse past weeks , large number veins noticeable calves , making worried" +4979,Varicose Veins,The veins on my legs are very noticeable and cause me discomfort. It seems like there is a major bruise and I get cramps when I run.,veins legs noticeable cause discomfort seems like major bruise get cramps run +4980,Varicose Veins,The skin on my calves has become inflamed and red. My legs hurt if I try to run or do any physical activities.,skin calves become inflamed red legs hurt try run physical activities +4981,Varicose Veins,"Recently, the pain in my calves has been constant and becomes worse when I stand or walk for long periods of time. My legs have started to swell and also some blood vessels are quite noticeable.","recently , pain calves constant becomes worse stand walk long periods time legs started swell also blood vessels quite noticeable" +4982,Varicose Veins,The veins in my legs are causing discomfort and difficulty sleeping at night. I have no idea why it is happening. I get cramps when I sprint.,veins legs causing discomfort difficulty sleeping night idea happening get cramps sprint +4983,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes. I can't sprint or stand for long periods of time. I can see some swollen blood vessels.,swelling legs causing difficulty fitting shoes sprint stand long periods time see swollen blood vessels +4984,Varicose Veins,I have noticed cramps in my calves are becoming more frequent and intense. It is causing me a lot of discomforts. I am also overweight and my legs have started to swell.,noticed cramps calves becoming frequent intense causing lot discomforts also overweight legs started swell +4985,Varicose Veins,The veins on my legs cause a lot of discomforts when I sit for long periods of time.,veins legs cause lot discomforts sit long periods time +4986,Varicose Veins,The rash on my legs is spreading and becoming more severe. It has become very difficult for me to run.,rash legs spreading becoming severe become difficult run +4987,Varicose Veins,My legs are causing a lot of discomforts when I exercise. I get frequent cramps and the blood vessels have become quite noticeable.,legs causing lot discomforts exercise get frequent cramps blood vessels become quite noticeable +4988,Varicose Veins,The prominent blood vessels on my calves are causing self-consciousness and embarrassment. I believe the problem is because of my overweight.,prominent blood vessels calves causing self consciousness embarrassment believe problem overweight +4989,Varicose Veins,The skin around the veins on my legs is dry and flaky. It seems there is a major bruise and my legs have started to swell.,skin around veins legs dry flaky seems major bruise legs started swell +4990,Varicose Veins,I have been experiencing a rash on my legs that is causing a lot of irritation and discomfort. It is red and inflamed and appears to be spreading.,experiencing rash legs causing lot irritation discomfort red inflamed appears spreading +4991,Varicose Veins,"Recently, my calves have been cramping up frequently, especially when I am walking or standing for long periods of time. Also, the veins are very noticeable.","recently , calves cramping frequently , especially walking standing long periods time also , veins noticeable" +4992,Varicose Veins,I have noticed that there are bruises on my legs that I cannot explain. They are not painful but are concerning to me.,noticed bruises legs explain painful concerning +4993,Varicose Veins,"As I am overweight, I have noticed that my legs are swollen and the blood vessels are more visible than usual. The swelling seems to be getting worse over time.","overweight , noticed legs swollen blood vessels visible usual swelling seems getting worse time" +4994,Varicose Veins,The veins on my calves are very prominent and are causing me a lot of discomforts. They are swollen and protrude from my skin.,veins calves prominent causing lot discomforts swollen protrude skin +4995,Varicose Veins,"The skin around the veins on my legs is red, inflamed, and itchy. It is causing a lot of discomforts and I am starting to get regular cramps.","skin around veins legs red , inflamed , itchy causing lot discomforts starting get regular cramps" +4996,Varicose Veins,Standing or walking for long periods of time has been causing a lot of pain in my legs. It feels like a cramp and becomes worse the longer I am on my feet.,standing walking long periods time causing lot pain legs feels like cramp becomes worse longer feet +4997,Varicose Veins,The cramps in my calves have been making it difficult for me to walk and do my daily activities. They come on suddenly and last for several minutes.,cramps calves making difficult walk daily activities come suddenly last several minutes +4998,Varicose Veins,The swelling in my legs has gotten worse over the past few weeks and is causing me difficulty fitting into my shoes. It is also causing discomfort when I sit for long periods of time.,swelling legs gotten worse past weeks causing difficulty fitting shoes also causing discomfort sit long periods time +4999,Varicose Veins,"The veins on my legs are very noticeable and are causing me a lot of discomforts. They are swollen and protrude from my skin, making them visible through my clothing.","veins legs noticeable causing lot discomforts swollen protrude skin , making visible clothing" +5000,Varicose Veins,"The skin on my calves is itchy and inflamed, causing a lot of discomfort and difficulty sleeping at night. The blood vessels have started to protrude out, which is concerning.","skin calves itchy inflamed , causing lot discomfort difficulty sleeping night blood vessels started protrude , concerning" +5001,Varicose Veins,The pain in my calves is constant and becomes worse when I stand or walk for long periods of time. I am getting constant cramps and can't run for longer periods of time.,pain calves constant becomes worse stand walk long periods time getting constant cramps run longer periods time +5002,Varicose Veins,"The veins in my legs are causing discomfort and difficulty sleeping at night. They are swollen and protruding from my skin, making them noticeable and painful.","veins legs causing discomfort difficulty sleeping night swollen protruding skin , making noticeable painful" +5003,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes and is causing discomfort when I sit for long periods of time.,swelling legs causing difficulty fitting shoes causing discomfort sit long periods time +5004,Varicose Veins,"The cramps in my calves are becoming more frequent and intense, making it difficult for me to walk and do my daily activities.","cramps calves becoming frequent intense , making difficult walk daily activities" +5005,Varicose Veins,"The veins on my legs are causing a lot of discomforts when I sit for long periods of time. They are swollen and protruding from my skin, making them painful and noticeable.","veins legs causing lot discomforts sit long periods time swollen protruding skin , making painful noticeable" +5006,Varicose Veins,"The rash on my legs is spreading and becoming more severe. It is red, inflamed, and itchy, causing a lot of discomfort and difficulty sleeping at night.","rash legs spreading becoming severe red , inflamed , itchy , causing lot discomfort difficulty sleeping night" +5007,Varicose Veins,"My legs have been causing a lot of discomforts when I exercise. They feel heavy and swollen, and the veins are prominent and painful. I feel fatigued all the time.","legs causing lot discomforts exercise feel heavy swollen , veins prominent painful feel fatigued time" +5008,Varicose Veins,"The prominent veins on my calves are causing self-consciousness and embarrassment. They are swollen and protrude from my skin, making them very noticeable.","prominent veins calves causing self consciousness embarrassment swollen protrude skin , making noticeable" +5009,Varicose Veins,"The skin around the veins on my legs is dry and flaky, causing discomfort and irritation. I am also starting to get frequent cramps.","skin around veins legs dry flaky , causing discomfort irritation also starting get frequent cramps" +5010,Varicose Veins,"I have a rash on my legs that is giving me a lot of pain. There appears to be a cramp, and I can see visible veins on the calf.","rash legs giving lot pain appears cramp , see visible veins calf" +5011,Varicose Veins,My veins of legs have become more visible and swollen than normal. They are visible through my skin and it hurts when I move.,veins legs become visible swollen normal visible skin hurts move +5012,Varicose Veins,"Walking is tough for me because of cramps in my calves. Obesity, I believe, is the cause of this. After a while of working, I'm exhausted.","walking tough cramps calves obesity , believe , cause working , exhausted" +5013,Varicose Veins,The blood vessels on my legs are quite visible and give me a lot of pain. They're large and protrude from my skin. It is unusual and I am worried about it.,blood vessels legs quite visible give lot pain large protrude skin unusual worried +5014,Varicose Veins,"I have noticed that the blood vessels in my legs are getting more noticeable than usual. It is a little concerning to me. Moreover, I am experiencing cramps every day.","noticed blood vessels legs getting noticeable usual little concerning moreover , experiencing cramps every day" +5015,Varicose Veins,My legs' swelling has become worse over the last couple of days. I can see the blood vessels protruding out of the skin. This is quite unusual.,legs swelling become worse last couple days see blood vessels protruding skin quite unusual +5016,Varicose Veins,Long durations of standing or walking have caused severe discomfort in my legs. It's a burning ache that gets worse the longer I'm on my feet.,long durations standing walking caused severe discomfort legs burning ache gets worse longer feet +5017,Varicose Veins,"My legs' skin around the veins is unusual. There appears to be a large bruise. Nowadays, I get frequent cramps when I sprint or run.","legs skin around veins unusual appears large bruise nowadays , get frequent cramps sprint run" +5018,Varicose Veins,"I am experiencing too many cramps in the last couple of days. I think something is not right. I believe there is a small bruise on my calves, but I am not sure about it.","experiencing many cramps last couple days think something right believe small bruise calves , sure" +5019,Varicose Veins,"The veins in my calves are protruding out quite unusually. I am worried about it. Also, I am overweight and I believe this is the reason behind all of this.","veins calves protruding quite unusually worried also , overweight believe reason behind" +5020,Typhoid,"I have constipation and belly pain, and it's been really uncomfortable. The belly pain has been getting worse and is starting to affect my daily life. Moreover, I get chills every night, followed by a mild fever.","constipation belly pain , really uncomfortable belly pain getting worse starting affect daily life moreover , get chills every night , followed mild fever" +5021,Typhoid,"I've also had some diarrhea, which has been really unpleasant. It's been coming and going, and it's been accompanied by abdominal cramps and bloating.","also diarrhea , really unpleasant coming going , accompanied abdominal cramps bloating" +5022,Typhoid,"I have been experiencing chills and fever, along with severe abdominal pain. I've been feeling really miserable overall, and I just can't seem to shake these symptoms.","experiencing chills fever , along severe abdominal pain feeling really miserable overall , seem shake symptoms" +5023,Typhoid,I've been having a lot of trouble keeping hydrated because of the vomiting and diarrhea. There is a mild fever along with constipation and headache.,lot trouble keeping hydrated vomiting diarrhea mild fever along constipation headache +5024,Typhoid,"I've lost a lot of weight in the past week because I haven't been able to eat much due to nausea and vomiting. This is followed by mild fever, headache and belly pain. I'm really concerned about my health.","lost lot weight past week able eat much due nausea vomiting followed mild fever , headache belly pain really concerned health" +5025,Typhoid,"The fatigue has been really uncomfortable, and I've had a lot of difficulties doing my usual activities. I've also been feeling really depressed and irritable. There is mild pain in the abdominal part too.","fatigue really uncomfortable , lot difficulties usual activities also feeling really depressed irritable mild pain abdominal part" +5026,Typhoid,"I've had a persistent headache for the past week, and it's been getting worse. It's been accompanied by belly aches, constipation and diarrhea.","persistent headache past week , getting worse accompanied belly aches , constipation diarrhea" +5027,Typhoid,"I've been experiencing high fever, especially at night. It's been really uncomfortable. There is a mild headache along with constipation and diarrhea.","experiencing high fever , especially night really uncomfortable mild headache along constipation diarrhea" +5028,Typhoid,"I've been having a lot of difficulty breathing, and I feel like I'm constantly nauseous. I also have mild belly pain. It's been terrifying at times.","lot difficulty breathing , feel like constantly nauseous also mild belly pain terrifying times" +5029,Typhoid,"Diarrhea has been really watery and foul-smelling, and it's been accompanied by abdominal pain. I feel like vomiting most of the time.","diarrhea really watery foul smelling , accompanied abdominal pain feel like vomiting time" +5030,Typhoid,"I've been having a lot of trouble sleeping because of the high fever, headache and chills. I wake up every day having a terrible pain in my belly area.","lot trouble sleeping high fever , headache chills wake every day terrible pain belly area" +5031,Typhoid,"I've also been experiencing some diarrhea and constipation, which has been really worrying. It feels like a sharp, stabbing pain in my belly area. I feel tired all the time.","also experiencing diarrhea constipation , really worrying feels like sharp , stabbing pain belly area feel tired time" +5032,Typhoid,"I have had some constipation and belly pain, which has been really uncomfortable. The pain has been getting worse and it's really affecting my daily life.","constipation belly pain , really uncomfortable pain getting worse really affecting daily life" +5033,Typhoid,"I am experiencing a lot of belly pain and constipation, which has been really annoying. Sometimes, I feel a strong urge to vomit, and because of all of these, I am feeling very weak.","experiencing lot belly pain constipation , really annoying sometimes , feel strong urge vomit , , feeling weak" +5034,Typhoid,"The abdominal pain has been coming and going, and it's been really unpleasant. It's been accompanied by constipation and vomiting. I feel really concerned about my health.","abdominal pain coming going , really unpleasant accompanied constipation vomiting feel really concerned health" +5035,Typhoid,"I have been experiencing a lot of bloating and constipation, and it's been really uncomfortable. It feels like there's a lot of pressure and pain in my belly area.","experiencing lot bloating constipation , really uncomfortable feels like lot pressure pain belly area" +5036,Typhoid,"I am experiencing extreme belly pain and constipation. Every night, I have a severe fever along with chills and headaches. The last couple of days has been really uncomfortable.","experiencing extreme belly pain constipation every night , severe fever along chills headaches last couple days really uncomfortable" +5037,Typhoid,"I've been feeling exhausted and weak, and I can't seem to get rid of it. Because of the vomiting and nausea, I've entirely lost my appetite. My belly pains which are causing me concern.","feeling exhausted weak , seem get rid vomiting nausea , entirely lost appetite belly pains causing concern" +5038,Typhoid,"I am experiencing constipation and stomach ache, which has been really difficult. The discomfort has gotten worse, and it is seriously interfering with my everyday life.","experiencing constipation stomach ache , really difficult discomfort gotten worse , seriously interfering everyday life" +5039,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. I have a high fever, as well as constipation and headache.","vomiting diarrhea , lot difficulties staying hydrated high fever , well constipation headache" +5040,Typhoid,The abdominal pain has been frequent and really painful. Constipation and vomiting have also occurred. I'm quite worried about my health.,abdominal pain frequent really painful constipation vomiting also occurred quite worried health +5041,Typhoid,"I'm having severe stomach pain and constipation. Every night, I get a headache and chills. The last few days have been really painful.","severe stomach pain constipation every night , get headache chills last days really painful" +5042,Typhoid,There is a distinct pain in my abdominal part. I am not sure what it is. I am also going through constant vomiting and feel nauseous.,distinct pain abdominal part sure also going constant vomiting feel nauseous +5043,Typhoid,"The diarrhea has been quite fluid and smelly, and it has been accompanied by severe abdominal pain and headache. Most of the time, I feel like vomiting.","diarrhea quite fluid smelly , accompanied severe abdominal pain headache time , feel like vomiting" +5044,Typhoid,"I have had a fever for the last couple of days. Now, I am starting to experience a severe pain in my stomach area and suffering from constipation.","fever last couple days , starting experience severe pain stomach area suffering constipation" +5045,Typhoid,"I am experiencing a lot of nausea and vomiting, and it's been quite difficult for me to eat anything. I've entirely lost my appetite, and as a result, I have become quite weak.","experiencing lot nausea vomiting , quite difficult eat anything entirely lost appetite , result , become quite weak" +5046,Typhoid,"I am having a lot of trouble sleeping because of the high fever and the headache. Moreover, I have constant belly pain, because of which I can't go to work.","lot trouble sleeping high fever headache moreover , constant belly pain , go work" +5047,Typhoid,"I have been feeling really fatigued and weak, and I can't seem to get rid of it. I have a mild fever and a strange pain in my abdominal area. I can't understand what is happening.","feeling really fatigued weak , seem get rid mild fever strange pain abdominal area understand happening" +5048,Typhoid,"I've been suffering from constipation and stomach discomfort, which has been really uncomfortable. Last night, I had a mild fever too.","suffering constipation stomach discomfort , really uncomfortable last night , mild fever" +5049,Typhoid,"I've also been suffering from diarrhea, which has been really uncomfortable. It comes and goes, and it's accompanied by stomach aches and vomiting.","also suffering diarrhea , really uncomfortable comes goes , accompanied stomach aches vomiting" +5050,Typhoid,"I've been experiencing chills, fever, and extreme stomach discomfort. I've been generally unhappy, and I can't seem to get rid of these symptoms.","experiencing chills , fever , extreme stomach discomfort generally unhappy , seem get rid symptoms" +5051,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. There is a mild fever, too, as well as stomach pain.","vomiting diarrhea , lot difficulties staying hydrated mild fever , , well stomach pain" +5052,Typhoid,"I have developed diarrhea. It is accompanied by severe pain in my belly area. I don't feel like eating anything, and most of the time, I have a mild headache.","developed diarrhea accompanied severe pain belly area feel like eating anything , time , mild headache" +5053,Typhoid,"I've had a lot of bloating and constipation, which has been really painful. There is a lot of pressure and pain in my stomach area. I get a high fever and chills every night.","lot bloating constipation , really painful lot pressure pain stomach area get high fever chills every night" +5054,Typhoid,"I've had a persistent stomach pain for the past week, and it is not healing even with medication. I feel like vomiting and can't eat anything, and because of which I have become extremely weak.","persistent stomach pain past week , healing even medication feel like vomiting eat anything , become extremely weak" +5055,Typhoid,I am having severe stomach discomfort and diarrhoea. I have a high fever along with a headache. The previous several days have been really unpleasant.,severe stomach discomfort diarrhoea high fever along headache previous several days really unpleasant +5056,Typhoid,"I am having a terrible pain in my abdominal part, and I've been feeling really nauseated. I'm also experiencing a mild fever. I am really worried.","terrible pain abdominal part , feeling really nauseated also experiencing mild fever really worried" +5057,Typhoid,"I am experiencing constipation and stomach ache. The discomfort has gotten worse, and it is seriously interfering with my everyday life. I feel like I have lost my appetite to eat anything.","experiencing constipation stomach ache discomfort gotten worse , seriously interfering everyday life feel like lost appetite eat anything" +5058,Typhoid,"Most of the time I feel fatigued. I don't want to eat anything. I get a high fever and chills every night. Moreover, I have been vomiting since yesterday.","time feel fatigued want eat anything get high fever chills every night moreover , vomiting since yesterday" +5059,Typhoid,"I have lost my appetite and have noticed a significant weight loss. I have abdominal pain, especially in the area of my stomach and intestines. I am concerned about my health.","lost appetite noticed significant weight loss abdominal pain , especially area stomach intestines concerned health" +5060,Typhoid,The stomach discomfort has been severe and frequent. Vomiting and constipation have also happened. I'm concerned about my health.,stomach discomfort severe frequent vomiting constipation also happened concerned health +5061,Typhoid,"I have been experiencing diarrhea and have had loose, watery stools several times a day. I have lost my appetite and feel nauseated all the time. I am starting to get a mild fever too.","experiencing diarrhea loose , watery stools several times day lost appetite feel nauseated time starting get mild fever" +5062,Typhoid,"I am feeling quite weak. I'm having a lot of stomach discomfort and constipation, which is really bothering me. I have a strong urge to vomit at times, and as a result, I can't eat anything.","feeling quite weak lot stomach discomfort constipation , really bothering strong urge vomit times , result , eat anything" +5063,Typhoid,"There is strange pain in my stomach area. I don't know what the reason behind this is. Moreover, I am starting to get a mild fever along with chills and headaches.","strange pain stomach area know reason behind moreover , starting get mild fever along chills headaches" +5064,Typhoid,"I've had a high fever, particularly at night. It's been quite unpleasant. There is a little headache, as well as constipation and diarrhea. I don't feel like eating anything.","high fever , particularly night quite unpleasant little headache , well constipation diarrhea feel like eating anything" +5065,Typhoid,"I've been having a lot of trouble staying hydrated because of the vomiting and diarrhea. I have a high fever, constipation, and a headache. I am also starting to get a strange pain in my stomach area and I can't do anything physical.","lot trouble staying hydrated vomiting diarrhea high fever , constipation , headache also starting get strange pain stomach area anything physical" +5066,Typhoid,"I have been getting a headache for the past week that has been growing worse. It has been accompanied by stomach pains, constipation, and diarrhea. I don't know what is happening and I am really worried about it.","getting headache past week growing worse accompanied stomach pains , constipation , diarrhea know happening really worried" +5067,Typhoid,"I've lost a lot of weight in the last week because I couldn't eat much due to nausea and vomiting. This is followed by a high fever, headache, and stomach pain.","lost lot weight last week eat much due nausea vomiting followed high fever , headache , stomach pain" +5068,Typhoid,"I am having some diarrhea and constipation, which has been quite concerning. In my stomach, there is a severe, painful ache. I'm constantly exhausted and don't feel like eating anything.","diarrhea constipation , quite concerning stomach , severe , painful ache constantly exhausted feel like eating anything" +5069,Typhoid,"I've been having diarrhoea and loose, watery stools many times a day. I've lost my appetite and am always sick. I'm also developing a mild fever. Also, my abdominal part pains a lot. I don't know what the reason behind all of these is.","diarrhoea loose , watery stools many times day lost appetite always sick also developing mild fever also , abdominal part pains lot know reason behind" +5070,Chicken pox,"I've been experiencing intense itching all over my skin, and it's driving me crazy. I also have a rash that's red and inflamed.","experiencing intense itching skin , driving crazy also rash red inflamed" +5071,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself.","feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate" +5072,Chicken pox,"I've had a high fever for the past few days. I don't know what's causing it. Also, I noticed rashes on my skin and it's hard for me to resist scratching.","high fever past days know causing also , noticed rashes skin hard resist scratching" +5073,Chicken pox,I've lost my appetite and can't seem to eat anything. I'm worried about my health.,lost appetite seem eat anything worried health +5074,Chicken pox,There are small red spots all over my body that I can't explain. It's worrying me. I feel extremely tired and experience a mild fever every night.,small red spots body explain worrying feel extremely tired experience mild fever every night +5075,Chicken pox,"My lymph nodes are swollen, causing discomfort in my neck and armpits. I don't know what's causing it.","lymph nodes swollen , causing discomfort neck armpits know causing" +5076,Chicken pox,"I'm feeling really sick and uncomfortable like something is wrong inside. I don't know what it could be. I noticed small red spots on my arms, which itches if I touch them.","feeling really sick uncomfortable like something wrong inside know could noticed small red spots arms , itches touch" +5077,Chicken pox,The itching is making it hard for me to sleep at night. I can't get any rest. I have also lost my appetite and feel lethargic.,itching making hard sleep night get rest also lost appetite feel lethargic +5078,Chicken pox,"I'm worried about this rash on my skin. It's spreading rapidly and causing a lot of discomforts. I can hardly sleep at night because of the itching,","worried rash skin spreading rapidly causing lot discomforts hardly sleep night itching ," +5079,Chicken pox,I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong.,energy lost appetite feeling really sick know wrong +5080,Chicken pox,"I have a skin rash that's red and inflamed, and it's spreading all over my body. I've been experiencing intense itching, especially on my arms and legs.","skin rash red inflamed , spreading body experiencing intense itching , especially arms legs" +5081,Chicken pox,"I've had a high fever for the past few days, and it's starting to worry me. I don't know what's causing it. Also, I have red spots all over my arms and legs, some of which are swollen.","high fever past days , starting worry know causing also , red spots arms legs , swollen" +5082,Chicken pox,"I have a skin rash that's red and swollen, and it's spreading all over my body. I have a mild fever and it is causing me a lot of discomforts.","skin rash red swollen , spreading body mild fever causing lot discomforts" +5083,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself.","feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate" +5084,Chicken pox,There are small red spots all over my body that I can't explain. The bumps are itchy and uncomfortable and seem to spread rapidly. It's worrying me.,small red spots body explain bumps itchy uncomfortable seem spread rapidly worrying +5085,Chicken pox,The itching is making it hard for me to sleep at night. I can't seem to get any rest because the rash is so itchy and uncomfortable. I'm feeling really tired and exhausted.,itching making hard sleep night seem get rest rash itchy uncomfortable feeling really tired exhausted +5086,Chicken pox,I have no energy and have lost my appetite. I have a high fever and severe headache and don't know what's wrong.,energy lost appetite high fever severe headache know wrong +5087,Chicken pox,The high fever and swollen lymph nodes are causing me much discomfort. I have a headache and feel weak and fatigued. It's hard for me to concentrate because of the fever.,high fever swollen lymph nodes causing much discomfort headache feel weak fatigued hard concentrate fever +5088,Chicken pox,"The rash on my skin is causing a lot of discomforts. It's red and inflamed, spreading all over my body. The rash is accompanied by intense itching, especially on my arms and legs.","rash skin causing lot discomforts red inflamed , spreading body rash accompanied intense itching , especially arms legs" +5089,Chicken pox,"There are red spots all over my body that I can't explain. The spots are itchy and starting to swell, and they are spreading rapidly.","red spots body explain spots itchy starting swell , spreading rapidly" +5090,Chicken pox,I have small lymph nodes on my arms and face. The itching is making my day very uncomfortable.,small lymph nodes arms face itching making day uncomfortable +5091,Chicken pox,"I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. Also, there are small red spots starting to show on my skin.","energy lost appetite feeling really sick know wrong also , small red spots starting show skin" +5092,Chicken pox,"I've had a mild fever for the past few days, and it's starting to worry me. The fever has been accompanied by a severe headache. I feel weak and lethargic.","mild fever past days , starting worry fever accompanied severe headache feel weak lethargic" +5093,Chicken pox,"I have swollen lymph nodes and red spots all over my body, and they are causing discomfort. I also have a mild fever and feel tired most of the time.","swollen lymph nodes red spots body , causing discomfort also mild fever feel tired time" +5094,Chicken pox,"I've been suffering from severe itching all over my body, and it's driving me insane. I also have a red and irritating rash.","suffering severe itching body , driving insane also red irritating rash" +5095,Chicken pox,"I have seen rashes on my skin, and it's difficult for me not to scratch. Also, I've had a high fever for several days. I'm not sure what's causing it.","seen rashes skin , difficult scratch also , high fever several days sure causing" +5096,Chicken pox,"I have little red spots all over my body that I don't understand. It worries me. I have lost my appetite and every night, I am exhausted and have a severe headache.","little red spots body understand worries lost appetite every night , exhausted severe headache" +5097,Chicken pox,"I'm feeling really sick and lost my appetite. I've seen little red patches on my arms, neck and face that itch when I touch them.","feeling really sick lost appetite seen little red patches arms , neck face itch touch" +5098,Chicken pox,I have red spots on my arms and legs and itching them makes it difficult for me to sleep at night. I also have severe headaches and a mild fever.,red spots arms legs itching makes difficult sleep night also severe headaches mild fever +5099,Chicken pox,Enlarged lymph nodes are giving me a great deal of pain. I have rashes all over my body and because of which I cannot sleep all night.,enlarged lymph nodes giving great deal pain rashes body sleep night +5100,Chicken pox,"My skin rash is giving me a lot of pain and discomfort. It's red and swollen, and it's spreading throughout my body.","skin rash giving lot pain discomfort red swollen , spreading throughout body" +5101,Chicken pox,I have a high fever and a mild headache. I'm tired most of the time and completely lost my appetite.,high fever mild headache tired time completely lost appetite +5102,Chicken pox,"My arms and face have small lymph nodes, which are starting to swell. My day has been made really miserable by the constant itching and pain.","arms face small lymph nodes , starting swell day made really miserable constant itching pain" +5103,Chicken pox,"My arms and neck have large lymph nodes, which itch when I touch them. The itching has made my day extremely uncomfortable.","arms neck large lymph nodes , itch touch itching made day extremely uncomfortable" +5104,Chicken pox,"My skin rash is causing me a great deal of pain. There are also small red spots developing near my neck. Since yesterday, I have had a severe fever, headache and fatigue.","skin rash causing great deal pain also small red spots developing near neck since yesterday , severe fever , headache fatigue" +5105,Chicken pox,"I am starting to develop tiny red spots all over my face and neck area, and it itches when I touch them. The itching is making my day very uncomfortable.","starting develop tiny red spots face neck area , itches touch itching making day uncomfortable" +5106,Chicken pox,"I have lost my appetite completely and can't seem to eat anything. I feel like vomiting and feel exhausted. I noticed rashes on my skin, which is really concerning me.","lost appetite completely seem eat anything feel like vomiting feel exhausted noticed rashes skin , really concerning" +5107,Chicken pox,I have a high fever and a severe headache. I can't seem to eat anything and feel like vomiting. There are also some red spots developing on my arms. I am really worried.,high fever severe headache seem eat anything feel like vomiting also red spots developing arms really worried +5108,Chicken pox,I'm worried about these red spots on my skin. It's spreading rapidly and causing a lot of problems. I also developed a mild fever and headache every night.,worried red spots skin spreading rapidly causing lot problems also developed mild fever headache every night +5109,Chicken pox,I'm feeling really nauseous and uneasy. I'm not sure what it might be. I've seen rashes on my arms and legs. I have lost my appetite and feel exhausted every day.,feeling really nauseous uneasy sure might seen rashes arms legs lost appetite feel exhausted every day +5110,Chicken pox,I have swollen red lymph nodes on my arms and legs that itch when I touch them. I'm also suffering from a terrible headache and a mild fever. I don't feel like eating anything and have lost my appetite.,swollen red lymph nodes arms legs itch touch also suffering terrible headache mild fever feel like eating anything lost appetite +5111,Chicken pox,I'm really exhausted and lacking in energy. I can hardly keep my eyes open during the day. I have a mild fever and don't feel like eating anything. I think I have lost my appetite.,really exhausted lacking energy hardly keep eyes open day mild fever feel like eating anything think lost appetite +5112,Chicken pox,"I am exhausted and have lost my appetite. I feel vomiting and can't eat anything. In addition, little red spots are beginning to appear on my skin and near the neck. I am really worried about my health.","exhausted lost appetite feel vomiting eat anything addition , little red spots beginning appear skin near neck really worried health" +5113,Chicken pox,There are small red spots all over my body. The spots are itchy and uncomfortable. I also have a mild fever and headache.,small red spots body spots itchy uncomfortable also mild fever headache +5114,Chicken pox,"I've been suffering from severe itching all over my body, along with a fever and headache. The red spots are starting to swell and it is getting really uncomfortable every day.","suffering severe itching body , along fever headache red spots starting swell getting really uncomfortable every day" +5115,Chicken pox,I feel tired every day. There are red spots all over my arms and back and it itches if I touch them. I am really worried and not sure what to do.,feel tired every day red spots arms back itches touch really worried sure +5116,Chicken pox,"The high fever, swollen lymph nodes and headache are causing me a lot of trouble. I don't feel like eating anything and feel weak and fatigued. It's hard for me to concentrate on my daily life.","high fever , swollen lymph nodes headache causing lot trouble feel like eating anything feel weak fatigued hard concentrate daily life" +5117,Chicken pox,"I have a high fever and red spots and rashes all over my body. I feel exhausted and have completely lost my appetite, which has made me weak and lethargic. I am really worried.","high fever red spots rashes body feel exhausted completely lost appetite , made weak lethargic really worried" +5118,Chicken pox,I have seen rashes on my arms and neck and it itches if I scratch them. I've also had a high fever for a few days. I have no idea what is causing it. The itching is causing me a lot of discomforts.,seen rashes arms neck itches scratch also high fever days idea causing itching causing lot discomforts +5119,Chicken pox,"There are red swollen spots all over my body. It itches if I touch them. Moreover, I also have a high fever and headache and always feel exhausted.","red swollen spots body itches touch moreover , also high fever headache always feel exhausted" +5120,Impetigo,I have developed a skin rash on my face and neck. The rash is made up of red sores that are blistering. I am worried about my health.,developed skin rash face neck rash made red sores blistering worried health +5121,Impetigo,"I have developed skin rashes made up of blistering sores. The blistering sores are raised, fluid-filled lesions and they are painful to touch. I am also suffering from a high fever.","developed skin rashes made blistering sores blistering sores raised , fluid filled lesions painful touch also suffering high fever" +5122,Impetigo,I have a high fever. There are red sores developing near my nose. The sores are painful and have yellow rust-colored ooze coming out from them.,high fever red sores developing near nose sores painful yellow rust colored ooze coming +5123,Impetigo,"There are rashes around my nose, with large red sores. I noticed that the rash was spreading to other parts of my body. Also, I have a high fever every night.","rashes around nose , large red sores noticed rash spreading parts body also , high fever every night" +5124,Impetigo,I have been suffering from a high fever for the last couple of days. Sores are developing near my nose. The sores are painful and I am feeling very uncomfortable these days.,suffering high fever last couple days sores developing near nose sores painful feeling uncomfortable days +5125,Impetigo,"My skin has developed rashes, mainly near the nose. The rash is spreading to other parts of my body. I am really about worried about this.","skin developed rashes , mainly near nose rash spreading parts body really worried" +5126,Impetigo,I have been experiencing extreme fatigue and a high fever. There are rashes near my nose and mouth. The rash is itchy and makes it very difficult for me to sleep.,experiencing extreme fatigue high fever rashes near nose mouth rash itchy makes difficult sleep +5127,Impetigo,"I am suffering from extreme fever and weakness. I have developed sores on my face. The sores itchy and uncomfortable. Often, a yellow colored ooze comes out of the sores.","suffering extreme fever weakness developed sores face sores itchy uncomfortable often , yellow colored ooze comes sores" +5128,Impetigo,I have noticed that the sores are taking longer to heal and are more prone to infection. The sores on my face are swollen and tender to the touch and very uncomfortable to handle.,noticed sores taking longer heal prone infection sores face swollen tender touch uncomfortable handle +5129,Impetigo,There are red sores on my face and near my nose. I have noticed that the rash is spreading more quickly on my neck and chest.,red sores face near nose noticed rash spreading quickly neck chest +5130,Impetigo,The sores around my nose have become crusted over and are difficult to touch. A yellow-rust coloured ooze used to come out of the sores. It is taking much more time to handle.,sores around nose become crusted difficult touch yellow rust coloured ooze used come sores taking much time handle +5131,Impetigo,"I developed a minor rash near my nose a few days ago. Now, the rash is accompanied by a burning sensation and redness of the skin. I feel it is some kind of an infection.","developed minor rash near nose days ago , rash accompanied burning sensation redness skin feel kind infection" +5132,Impetigo,"Initially, I developed small red sores near my nose and neck. Now, I am having a high fever and the sores have become more painful and inflamed over the past few days.","initially , developed small red sores near nose neck , high fever sores become painful inflamed past days" +5133,Impetigo,"I noticed a skin rash on my face. It was made up of a blistering sore. Today I observed a yellow colored fluid coming out of the sores, I am not sure what it is.","noticed skin rash face made blistering sore today observed yellow colored fluid coming sores , sure" +5134,Impetigo,"The sores on my face are beginning to weep clear fluid. Also, every night I get a high fever and chills, because of which I cannot sleep all night.","sores face beginning weep clear fluid also , every night get high fever chills , sleep night" +5135,Impetigo,I initially had rashes on my face and near my nose. But now the rash is spreading down my arms and legs.,initially rashes face near nose rash spreading arms legs +5136,Impetigo,"I have a high fever every night and developed sores on my face, particularly near my nose. I have noticed that the sores are taking longer to heal and are more prone to infection.","high fever every night developed sores face , particularly near nose noticed sores taking longer heal prone infection" +5137,Impetigo,"The sores around my nose are now surrounded by red, inflamed skin. The rash has caused my skin to become dry and flaky, with a visible yellow colored fluid coming out of the sores.","sores around nose surrounded red , inflamed skin rash caused skin become dry flaky , visible yellow colored fluid coming sores" +5138,Impetigo,"I have also been experiencing flu-like symptoms, such as fever and body pain. I have noticed red rashes and blistering sores near my nose and lips. It's itchy and uncomfortable.","also experiencing flu like symptoms , fever body pain noticed red rashes blistering sores near nose lips itchy uncomfortable" +5139,Impetigo,I am suffering from mild fever and headache. There are small sores near my nose and rashes on my neck. I am going through a very tough time right now.,suffering mild fever headache small sores near nose rashes neck going tough time right +5140,Impetigo,"There is a rash particularly bad around my nose, with large red sores that are painful and have yellow rust-colored ooze coming from them.","rash particularly bad around nose , large red sores painful yellow rust colored ooze coming" +5141,Impetigo,"There are sores on my face and mostly near my nose and lips. The sores are causing discomfort or pain, and there is a discharge of yellow or rust-colored fluid from them.","sores face mostly near nose lips sores causing discomfort pain , discharge yellow rust colored fluid" +5142,Impetigo,"I have been developing sores on my face and nose area. I am not sure what is causing this. The sores on my face are swollen and tender to the touch, and I have a burning sensation and redness of the skin.","developing sores face nose area sure causing sores face swollen tender touch , burning sensation redness skin" +5143,Impetigo,"The rash on my face has become more painful and inflamed over the past few days, and the sores are beginning to weep clear fluid. It is getting extremely painful with each day.","rash face become painful inflamed past days , sores beginning weep clear fluid getting extremely painful day" +5144,Impetigo,I have rashes on my face. I am starting to have small sores around my nose and often a yellow fluid comes out of the sores. The sores are becoming extremely painful.,rashes face starting small sores around nose often yellow fluid comes sores sores becoming extremely painful +5145,Impetigo,"I am feeling really sick. I have a high fever and headache. I noticed rashes on my arms and face. I am extremely worried about this. Today, I observed red sores near my nose.","feeling really sick high fever headache noticed rashes arms face extremely worried today , observed red sores near nose" +5146,Impetigo,"I've been suffering from a high fever for the past few days. Sores are forming around my nose and there are rashes on different parts of my body. The sores are severe, and I'm feeling really uneasy these days.","suffering high fever past days sores forming around nose rashes different parts body sores severe , feeling really uneasy days" +5147,Impetigo,I have a high fever and am really weak. My face has gotten sores. The blisters are itchy and painful. A yellow ooze frequently leaks from the wounds.,high fever really weak face gotten sores blisters itchy painful yellow ooze frequently leaks wounds +5148,Impetigo,"I am experiencing skin rashes with burning sores. The blistering sores are fluid-filled, elevated, red colored lesions that are unpleasant to touch. I also have a high fever.","experiencing skin rashes burning sores blistering sores fluid filled , elevated , red colored lesions unpleasant touch also high fever" +5149,Impetigo,"I believe I have some skin disease. There are rashes on my face and small sores near my nose. The sores have become red, and painful and some kind of a yellow ooze discharges from them.","believe skin disease rashes face small sores near nose sores become red , painful kind yellow ooze discharges" +5150,Impetigo,"I have noticed that the sores on my face are healing more slowly and are more likely to become infected. My cheek sores are large, painful to the touch, and extremely difficult to handle. I can't seem to get rid of these sores.","noticed sores face healing slowly likely become infected cheek sores large , painful touch , extremely difficult handle seem get rid sores" +5151,Impetigo,"I am having a high fever. I've had a skin rash on my face, neck and arms. The rash is made up of burning red lesions. I'm concerned about my health.","high fever skin rash face , neck arms rash made burning red lesions concerned health" +5152,Impetigo,"I've acquired skin rashes with blistering sores. The blistering sores are fluid-filled, elevated lesions that are unpleasant to touch. I'm also running a high fever.","acquired skin rashes blistering sores blistering sores fluid filled , elevated lesions unpleasant touch also running high fever" +5153,Impetigo,"I'm running a high temperature. Near my nose, red sores are forming. The lesions are painful, and yellow rust-colored fluid is oozing from them.","running high temperature near nose , red sores forming lesions painful , yellow rust colored fluid oozing" +5154,Impetigo,"I have rashes around my nose, as well as huge red sores. The rash is spreading to other places on my body, as I've seen. In addition, I have a high temperature every night.","rashes around nose , well huge red sores rash spreading places body , seen addition , high temperature every night" +5155,Impetigo,My cheeks and nose are covered with red sores. I've observed that the rash on my neck and chest is spreading faster. I am also developing a mild fever.,cheeks nose covered red sores observed rash neck chest spreading faster also developing mild fever +5156,Impetigo,My nasal sores have crusted up and become difficult to touch. The wounds used to leak a yellow-rust coloured fluid. It is taking a lot longer to deal with using medication.,nasal sores crusted become difficult touch wounds used leak yellow rust coloured fluid taking lot longer deal using medication +5157,Impetigo,"A few days ago, I experienced a tiny rash around my nose. The rash is now accompanied by a burning feeling and skin redness and discharge of fluid. I believe it is some sort of infection.","days ago , experienced tiny rash around nose rash accompanied burning feeling skin redness discharge fluid believe sort infection" +5158,Impetigo,"Small red sores appeared near my nose and neck at first. I now have a high temperature, and the sores have gotten more painful and inflamed in recent days.","small red sores appeared near nose neck first high temperature , sores gotten painful inflamed recent days" +5159,Impetigo,"A rash has developed around my nose and lips, with huge red lesions that are painful and emit a yellow rust-colored fluid.","rash developed around nose lips , huge red lesions painful emit yellow rust colored fluid" +5160,Impetigo,"My face is covered in sores. Most of them are near my nose and lips. The lesions are causing discomfort or suffering, and a yellow or rust-colored fluid is oozing from them.","face covered sores near nose lips lesions causing discomfort suffering , yellow rust colored fluid oozing" +5161,Impetigo,"I've started getting sores on my face and nose. I have no idea what is causing this. My cheek sores are large and irritating to the touch, and I have a burning feeling and skin redness.","started getting sores face nose idea causing cheek sores large irritating touch , burning feeling skin redness" +5162,Impetigo,"Over the last two days, the rash on my face has gotten more severe and inflamed, and the blisters have begun to bleed clear pus. It is really painful to deal with.","last two days , rash face gotten severe inflamed , blisters begun bleed clear pus really painful deal" +5163,Impetigo,"I feel I have a skin condition. My face has rashes and little blisters around my nose. The wounds have turned red and painful, and a yellow liquid is oozing from them.","feel skin condition face rashes little blisters around nose wounds turned red painful , yellow liquid oozing" +5164,Impetigo,"I've observed that the lesions on my face are healing slower and are more prone to infection. The lesions on my cheeks are huge, unpleasant to the touch, and incredibly difficult to treat. I can't seem to get these sores to go away.","observed lesions face healing slower prone infection lesions cheeks huge , unpleasant touch , incredibly difficult treat seem get sores go away" +5165,Impetigo,"I'm running a high temperature. I've developed a rash on my face, neck, and arms. The rash consists of painful red lesions. My health is a concern for me.","running high temperature developed rash face , neck , arms rash consists painful red lesions health concern" +5166,Impetigo,"Over the last week, the rash on my face has gotten more severe and painful, and the sores have begun to discharge a yellow colored fluid. It's becoming increasingly painful by the day.","last week , rash face gotten severe painful , sores begun discharge yellow colored fluid becoming increasingly painful day" +5167,Impetigo,"I've had rashes on my face. I'm developing little sores around my nose, and a yellow ooze is frequently oozing from them. The lesions have become even more painful.","rashes face developing little sores around nose , yellow ooze frequently oozing lesions become even painful" +5168,Impetigo,I'm feeling quite ill. I have a high fever and a headache. Rashes appeared on my arms and face. I'm quite concerned about this. I saw red sores around my nose and lips today.,feeling quite ill high fever headache rashes appeared arms face quite concerned saw red sores around nose lips today +5169,Impetigo,"The rashes on my face are not healing. I tried some medications but it is not helping much. Recently, I noticed small sores near my nose. They are painful and very difficult to handle.","rashes face healing tried medications helping much recently , noticed small sores near nose painful difficult handle" +5170,Dengue,I am facing severe joint pain and vomitting. I have developed a skin rash that covers my entire body and is accompanied by intense itching. ,facing severe joint pain vomitting developed skin rash covers entire body accompanied intense itching +5171,Dengue,"I have been experiencing chills and shivering, despite being in a warm environment. My back pains all the time and there are red spots on my arms.","experiencing chills shivering , despite warm environment back pains time red spots arms" +5172,Dengue,"I have been experiencing severe joint pain that makes it difficult for me to move and perform my daily activities. Also, I have lost my apetite because of which I feel weak.","experiencing severe joint pain makes difficult move perform daily activities also , lost apetite feel weak" +5173,Dengue,I have been vomiting frequently and have lost my appetite as a result. My joints and back pain all the time.,vomiting frequently lost appetite result joints back pain time +5174,Dengue,I have a high fever accompanied with severe headache and body pain. I experince chills every night. There is a distinct pain behind my eyes too.,high fever accompanied severe headache body pain experince chills every night distinct pain behind eyes +5175,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. I have developed rashes on my neck, which itch upon touching. ","feeling extremely tired fatigued , energy anything developed rashes neck , itch upon touching" +5176,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I have lost my apetite and experience chills every night. ,experiencing severe headache accompanied pain behind eyes lost apetite experience chills every night +5177,Dengue,I have been feeling nauseous and have a constant urge to vomit. There is a strong pain behind my eyes and there are small red spots all over my arms.,feeling nauseous constant urge vomit strong pain behind eyes small red spots arms +5178,Dengue,I have developed red spots on my body that are itchy and inflamed. I am also experiencing high fever along with chills and shivering. ,developed red spots body itchy inflamed also experiencing high fever along chills shivering +5179,Dengue,I have been experiencing muscle pain that makes it difficult for me to move around. I have lost my apetite and feel vomiting. My legs and back pain a lot. ,experiencing muscle pain makes difficult move around lost apetite feel vomiting legs back pain lot +5180,Dengue,"I have been experiencing back pain that is worse when I sit or stand for a long time. Also, there are rashes all over my body. There is a pain behind my eyes too.","experiencing back pain worse sit stand long time also , rashes body pain behind eyes" +5181,Dengue,The skin rash I have developed is accompanied by redness and swelling. I don’t feel well as I have severe fever accompanied with body pain.,skin rash developed accompanied redness swelling feel well severe fever accompanied body pain +5182,Dengue,The chills and shivering I have been experiencing are accompanied by a feeling of coldness and high fever. I have also developed rashes on my arms and red spots on my neck.,chills shivering experiencing accompanied feeling coldness high fever also developed rashes arms red spots neck +5183,Dengue,"The joint pain I have been experiencing is severe and feels like a constant ache. My head aches most of the time and I am starting to develope mild fever, accompanied with chills. ","joint pain experiencing severe feels like constant ache head aches time starting develope mild fever , accompanied chills" +5184,Dengue,The vomiting I have been experiencing is accompanied by stomach cramps and dizziness. I have lost my apetite and feel weak as a result. There is a pain behind my eyes too.,vomiting experiencing accompanied stomach cramps dizziness lost apetite feel weak result pain behind eyes +5185,Dengue,The high fever I have been experiencing is accompanied by sweating and weakness. My muscles pain as a result I cannot work all day. ,high fever experiencing accompanied sweating weakness muscles pain result work day +5186,Dengue,"The fatigue I have been feeling is extreme and makes it difficult for me to perform even basic tasks. I feel vomitting and developed rashes on my arms, neck and legs. ","fatigue feeling extreme makes difficult perform even basic tasks feel vomitting developed rashes arms , neck legs" +5187,Dengue,The headache I have been experiencing is severe and is accompanied by a feeling of pressure in my head. I have mild fever along with headache. There are small red spots on my back.,headache experiencing severe accompanied feeling pressure head mild fever along headache small red spots back +5188,Dengue,The nausea I have been feeling is accompanied by a loss of appetite and feeling of unease. There is a distinct pain in my back and muscles pain too. ,nausea feeling accompanied loss appetite feeling unease distinct pain back muscles pain +5189,Dengue,The muscle pain I have been experiencing is severe and feels like a constant ache. There are red spots all over my body and the itching is causing me a lot of discomfort.,muscle pain experiencing severe feels like constant ache red spots body itching causing lot discomfort +5190,Dengue,"I have developed a skin rash that covers my entire body and is accompanied by intense itching. My body pains and I have a mild fever, acompanied with headache and chills.","developed skin rash covers entire body accompanied intense itching body pains mild fever , acompanied headache chills" +5191,Dengue,"I'm experiencing extreme body pain, headache and vomiting. I've developed red spots that covers my entire body and causes severe itching.","experiencing extreme body pain , headache vomiting developed red spots covers entire body causes severe itching" +5192,Dengue,"My back hurts all the time, and my arms and neck have rashes. The back of eyes pain a lot. I also have fever and it is making we worried about my health.","back hurts time , arms neck rashes back eyes pain lot also fever making worried health" +5193,Dengue,"I've been suffering from significant joint pain, which makes it difficult for me to walk and carry out my everyday tasks. I've also lost my appetite, which makes me feel weak and feel like vomitting.","suffering significant joint pain , makes difficult walk carry everyday tasks also lost appetite , makes feel weak feel like vomitting" +5194,Dengue,There is a constant behind my eyes. I have developed red spots on my neck and face and rashes on my arms. My arms and legs pain a lot. . The spots are itchy and uncomfortable and it is worrying me.,constant behind eyes developed red spots neck face rashes arms arms legs pain lot spots itchy uncomfortable worrying +5195,Dengue,"I've been feeling sick and feel a strong need to vomit. There is a sharp ache behind my eyes, and swollen red dots all over my back.","feeling sick feel strong need vomit sharp ache behind eyes , swollen red dots back" +5196,Dengue,My shivers and shivering have been accompanied with a sensation of coldness and a very high fever. Rashes on my arms and red patches on my neck have also appeared. ,shivers shivering accompanied sensation coldness high fever rashes arms red patches neck also appeared +5197,Dengue,"I have been suffering from severe joint ache. I feel vomiting most of the time, and I am developing a moderate fever with chills. The fever that doesn't seem to come down even with medication.","suffering severe joint ache feel vomiting time , developing moderate fever chills fever seem come even medication" +5198,Dengue,"The vomiting I've been having has been followed by stomach pains and dizziness. I've lost my appetite and as a result feel weak. My arms, back, neck pain most of the time.","vomiting followed stomach pains dizziness lost appetite result feel weak arms , back , neck pain time" +5199,Dengue,I have developed red spots on my arms and legs that are itchy and inflamed. I have been feeling nauseaus and have a constant urge to vomit. This is accomapanied by mild fever.,developed red spots arms legs itchy inflamed feeling nauseaus constant urge vomit accomapanied mild fever +5200,Dengue,"I have developed a skin rash that covers my entire body. The rash is red and swollen, and is worse in certain areas such as my arms and legs. I have also lost my appetite. ","developed skin rash covers entire body rash red swollen , worse certain areas arms legs also lost appetite" +5201,Dengue,I have been experiencing chills and shivering. There is a strong pain in my back and also behind my eyes. I have also noticed small red spots on my back and neck. ,experiencing chills shivering strong pain back also behind eyes also noticed small red spots back neck +5202,Dengue,I have been experiencing severe joint pain that is making my day very difficult. I feel like vomiting all the time and have a mild headache too.,experiencing severe joint pain making day difficult feel like vomiting time mild headache +5203,Dengue,"I have been vomiting frequently and have lost my appetite as a result. There are rashes on my skin and my eyes pain, because of which I cannot sleep properly.","vomiting frequently lost appetite result rashes skin eyes pain , sleep properly" +5204,Dengue,I have a high fever along with a severe headache. The fever is accompanied by extreme body pain and chills. I am worried about my health and don’t know what to do.,high fever along severe headache fever accompanied extreme body pain chills worried health know +5205,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. The fatigue is so severe that I struggle to get out of bed. I have noticed small red spots on my arms and legs. ","feeling extremely tired fatigued , energy anything fatigue severe struggle get bed noticed small red spots arms legs" +5206,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I feel tired and fatigued because of which I cannot work all day. I am worried about my health.,experiencing severe headache accompanied pain behind eyes feel tired fatigued work day worried health +5207,Dengue,"I have been feeling nauseous and have a constant urge to vomit, which is accompanied with mild fever and headache. ","feeling nauseous constant urge vomit , accompanied mild fever headache" +5208,Dengue,I have developed rashes on my body that are itchy and. I have lost my appetite and feel very tired all day. I feel something is wrong with my body.,developed rashes body itchy lost appetite feel tired day feel something wrong body +5209,Dengue,"I have been experiencing muscle pain and headache. The muscle pain feels like a constant ache and is worse when I try to use the affected muscles. There are small red spots developing on my face, neck and arms.","experiencing muscle pain headache muscle pain feels like constant ache worse try use affected muscles small red spots developing face , neck arms" +5210,Dengue,"My back hurts, and I have rashes on my arms and armpits. The back of my eyeballs hurt a lot. I also have a mild fever, which is making us concerned about my health. ","back hurts , rashes arms armpits back eyeballs hurt lot also mild fever , making us concerned health" +5211,Dengue,"I am experiencing very high fever and chills every night. It is really concerning me. Moreover, I don’t feel like eating anything and my back, arms, legs pain a lot. There is a strange pain behing my eyes. I can’t do any physical activities. ","experiencing high fever chills every night really concerning moreover , feel like eating anything back , arms , legs pain lot strange pain behing eyes physical activities" +5212,Dengue,"As a result of my regular vomiting, I've lost my appetite. My muscles, joints and back constantly hurt. I am starting to have fever too. I am really worried and not sure what to do.","result regular vomiting , lost appetite muscles , joints back constantly hurt starting fever really worried sure" +5213,Dengue,I have been experiencing a severe fever that is accompanied by pain behind my eyes and headache. I feel tired and exhasuted because of which I cannot do any work.,experiencing severe fever accompanied pain behind eyes headache feel tired exhasuted work +5214,Dengue,"My whole body is paining a lot and I don’t feel like eating anything. I have mild fever and get chills every night. Also, there are some red spots developing on my back and neck.","whole body paining lot feel like eating anything mild fever get chills every night also , red spots developing back neck" +5215,Dengue,"My joints and back pain everyday. I feel like vomitting and this has made me very weak. Because of my body pain, I am not able to focus on my work and don’t feel like doing anything.","joints back pain everyday feel like vomitting made weak body pain , able focus work feel like anything" +5216,Dengue,The body pain I have been feeling is extreme. I has lost my appetite and developed rashes on my arms and face. The back of my eyes pain a lot.,body pain feeling extreme lost appetite developed rashes arms face back eyes pain lot +5217,Dengue,I have developed rashes on my body. I am also experiencing high fever along with chills and headache. My joints and back hurt and there is a strange pain in the back of my eyes.,developed rashes body also experiencing high fever along chills headache joints back hurt strange pain back eyes +5218,Dengue,"I have been feeling nauseous and have a constant urge to vomit. I get high fever and chills every night and feel terrible because of this. Also, I feel I have lost my appetite.","feeling nauseous constant urge vomit get high fever chills every night feel terrible also , feel lost appetite" +5219,Dengue,"There are rashes on my skin, which itch if I touch them. I don’t feel good as my joints pain whole day. At night, I have mild fever and get chills, because of which I can’t sleep too.","rashes skin , itch touch feel good joints pain whole day night , mild fever get chills , sleep" +5220,Fungal infection,"I have raised lumps, a rash that looks red and inflamed, discoloured areas of skin that are different colours from the rest of my skin, and itching on my skin.","raised lumps , rash looks red inflamed , discoloured areas skin different colours rest skin , itching skin" +5221,Fungal infection,"All over my body, there has been a severe itching that has been followed by a red, bumpy rash. My skin also has a few darkened spots and a few tiny, nodular breakouts. It has been happening for several days and is becoming worse.","body , severe itching followed red , bumpy rash skin also darkened spots tiny , nodular breakouts happening several days becoming worse" +5222,Fungal infection,"I've had a rash on my skin that looks like dischromic patches, and I also have a lot of nodular eruptions and really bad itching. During the previous week, it has become worse.","rash skin looks like dischromic patches , also lot nodular eruptions really bad itching previous week , become worse" +5223,Fungal infection,"I've had a rash that won't go away and a bothersome itching on my skin. In addition, I've seen some color-different areas and bumps that resemble knots or lumps on my skin.","rash go away bothersome itching skin addition , seen color different areas bumps resemble knots lumps skin" +5224,Fungal infection,"I have a rash all over my body, and I can't stop scratching because my skin is itchy. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples.","rash body , stop scratching skin itchy skin also spots hue altered lumps knot like pimples" +5225,Fungal infection,"Recently, my skin has been quite itchy, and I have a rash all over my body. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples.","recently , skin quite itchy , rash body skin also spots hue altered lumps knot like pimples" +5226,Fungal infection,"My skin has been itching a lot and developing a rash. Additionally, I have a few areas of my skin that are a different hue than the rest of it. Additionally, I have a few firm pimples or breakouts on my skin.","skin itching lot developing rash additionally , areas skin different hue rest additionally , firm pimples breakouts skin" +5227,Fungal infection,"All over my body has been itching like crazy, and now there are red areas all over. Additionally, some of the patches have a different tone than my natural skin. And on my skin, there are these lumps or pimples that have developed.","body itching like crazy , red areas additionally , patches different tone natural skin skin , lumps pimples developed" +5228,Fungal infection,"My skin has been acting up recently, becoming extremely itchy and rashes-prone. Additionally, there are certain spots that deviate from my natural skin tone in terms of hue. And now my skin has these lumps or bumps that weren't there before.","skin acting recently , becoming extremely itchy rashes prone additionally , certain spots deviate natural skin tone terms hue skin lumps bumps" +5229,Fungal infection,"On my arms and legs, I have a lot of red pimples and itchy skin. My skin also has a few odd-looking lesions. And occasionally there are bumps that are somewhat uncomfortable.","arms legs , lot red pimples itchy skin skin also odd looking lesions occasionally bumps somewhat uncomfortable" +5230,Fungal infection,I have an itchy skin and lots of red bumps on my arms and legs. There are some weird looking spots on my skin too. And sometimes there are bumps that feel kind of hard.,itchy skin lots red bumps arms legs weird looking spots skin sometimes bumps feel kind hard +5231,Fungal infection,"Doctor, I have a really itchy rash on my skin and there are some weird spots that are a different color. There are also some bumps on my skin that look like little knots","doctor , really itchy rash skin weird spots different color also bumps skin look like little knots" +5232,Fungal infection,"Doctor, My skin is covered in a very uncomfortable rash, along with some odd patches of a different hue. My skin also has a few pimples that resemble little knots","doctor , skin covered uncomfortable rash , along odd patches different hue skin also pimples resemble little knots" +5233,Fungal infection,"I have lots of itchy spots on my skin, and sometimes they turn red or bumpy. There are also some weird patches that are different colors than the rest of my skin, and sometimes I get these weird bumps that look like little balls.","lots itchy spots skin , sometimes turn red bumpy also weird patches different colors rest skin , sometimes get weird bumps look like little balls" +5234,Fungal infection,"My skin frequently develops itchy bumps that can occasionally turn red or rough. Aside from that, my skin occasionally develops strange pimples that resemble small balls and some odd spots that are a different hue from the rest of my skin.","skin frequently develops itchy bumps occasionally turn red rough aside , skin occasionally develops strange pimples resemble small balls odd spots different hue rest skin" +5235,Fungal infection,"Doctor, I have these red rashes that keep popping up and my skin is continuously itching. In addition, I've observed some odd color-different spots on my skin, as well as some little nodules on my skin that appear to be expanding.","doctor , red rashes keep popping skin continuously itching addition , observed odd color different spots skin , well little nodules skin appear expanding" +5236,Fungal infection,"I have been experiencing some really intense itching all over my body, along with redness and bumps on my skin. There are also these weird patches that are different colors than the rest of my skin, and sometimes I get these nodules that look like small bumps.","experiencing really intense itching body , along redness bumps skin also weird patches different colors rest skin , sometimes get nodules look like small bumps" +5237,Fungal infection,"All over my body, I've been scratching so much that my skin has become red and developed pimples. Additionally, I occasionally get these nodules that resemble little pimples, as well as these strange patches that are a different hue from the rest of my skin.","body , scratching much skin become red developed pimples additionally , occasionally get nodules resemble little pimples , well strange patches different hue rest skin" +5238,Fungal infection,"I've been experiencing a lot of itching, which has been accompanied with a rash that appears to be growing worse over time. There are also certain areas of skin that are different colours from the rest, and I've spotted several lumps that resemble little nodes.","experiencing lot itching , accompanied rash appears growing worse time also certain areas skin different colours rest , spotted several lumps resemble little nodes" +5239,Fungal infection,"I've been having a lot of problems with itching, and it's been accompanied by a rash that seems to be getting worse over time. There are also some patches of skin that are different colors than the rest, and I've noticed some bumps that look like little nodes.","lot problems itching , accompanied rash seems getting worse time also patches skin different colors rest , noticed bumps look like little nodes" +5240,Fungal infection,"Doctor, My skin is covered in an uncomfortable rash and has a few odd patches of skin that are a different colour. There are a few pimples on my skin that resemble little knots.","doctor , skin covered uncomfortable rash odd patches skin different colour pimples skin resemble little knots" +5241,Fungal infection,"I've been itching a lot, and it's been accompanied with a rash that looks to be getting worse over time. There are also some patches of skin that are different colours from the rest of the skin, as well as some lumps that resemble little nodes.","itching lot , accompanied rash looks getting worse time also patches skin different colours rest skin , well lumps resemble little nodes" +5242,Fungal infection,"My skin has been acting up lately, becoming exceedingly itchy and prone to rashes. Furthermore, several patches differ from my normal skin tone in terms of colour. And now I have lumps or bumps on my skin that weren't there before.","skin acting lately , becoming exceedingly itchy prone rashes furthermore , several patches differ normal skin tone terms colour lumps bumps skin" +5243,Fungal infection,"A rash that appears to be developing throughout my skin has been accompanying my recent bouts of intense itching and discomfort. On my skin, I also have some dischromic spots and little lumps that seem to be appearing everywhere.","rash appears developing throughout skin accompanying recent bouts intense itching discomfort skin , also dischromic spots little lumps seem appearing everywhere" +5244,Fungal infection,"My skin always itches, and occasionally it becomes quite rough and red. In addition, I occasionally get little pimples that resemble tiny balls and certain spots that are a different colour from the rest of my skin. It severely irritates me and itches.","skin always itches , occasionally becomes quite rough red addition , occasionally get little pimples resemble tiny balls certain spots different colour rest skin severely irritates itches" +5245,Fungal infection,"I have a lot of itching all over my skin, and sometimes it gets really red and bumpy. There are also some patches that are different colors than the rest of my skin, and sometimes I get these little bumps that look like little balls. It's really annoying and itchy.","lot itching skin , sometimes gets really red bumpy also patches different colors rest skin , sometimes get little bumps look like little balls really annoying itchy" +5246,Fungal infection,"I have a pretty irritating itch all over my body, and my skin also has a few red, bumpy areas. I've also had some pimples that resemble small balls and other spots that are a different colour than the rest of my skin. ","pretty irritating itch body , skin also red , bumpy areas also pimples resemble small balls spots different colour rest skin" +5247,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my skin that are a different hue than the rest of it, and I've had some pimples that resemble little balls.","pretty uncomfortable itch body , well red bumpy areas skin also certain patches skin different hue rest , pimples resemble little balls" +5248,Fungal infection,"I've been having this really annoying itch all over my body, and I have red and bumpy spots on my skin too. There are also some areas that are a different color than the rest of my skin, and I've had some bumps that look like little balls.","really annoying itch body , red bumpy spots skin also areas different color rest skin , bumps look like little balls" +5249,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my epidermis with a distinct shade than the rest of it, and I've had some pimples that resemble little balls.","pretty uncomfortable itch body , well red bumpy areas skin also certain patches epidermis distinct shade rest , pimples resemble little balls" +5250,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that look different in shade than the rest of my skin, and I've had some bumps that are kind of hard.","really itchy lately rashy spots skin also areas look different shade rest skin , bumps kind hard" +5251,Fungal infection,"I've been quite itchy recently, and I have rashy patches all over my skin. There are also certain regions that are darker in colour than the rest of my skin, and I've got some firm lumps.","quite itchy recently , rashy patches skin also certain regions darker colour rest skin , got firm lumps" +5252,Fungal infection,"I've been rather itchy recently, and I have rashy blotches all over my skin. There are also certain regions that are more dark in color than the rest of my skin, and I've got some painful lumps.","rather itchy recently , rashy blotches skin also certain regions dark color rest skin , got painful lumps" +5253,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. Additionally, I've had a few pimples that are rather firm, and there are certain spots on my body that have a different shade of brown than the rest of my skin.","recently , scratching lot , skin covered rashy places additionally , pimples rather firm , certain spots body different shade brown rest skin" +5254,Fungal infection,"My skin has been really itchy and there are these rashy spots all over. There are also some patches that look different in color than the rest of my skin, and I've had some bumps that are kind of hard.","skin really itchy rashy spots also patches look different color rest skin , bumps kind hard" +5255,Fungal infection,"My skin has been really scratchy, and there are rashes all over my body. I have some bumps that are quite firm, as well as some areas that are a darker shade from the rest of my skin. It's extremely unpleasant.","skin really scratchy , rashes body bumps quite firm , well areas darker shade rest skin extremely unpleasant" +5256,Fungal infection,"There are rashy areas all over my skin, which has been really irritating. Additionally, I have some bumps that are fairly firm and some patches that are a different colour from the rest of my skin.","rashy areas skin , really irritating additionally , bumps fairly firm patches different colour rest skin" +5257,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. In addition, there are a few spots where my skin doesn't appear to be its usual shade, and I've experienced a few lumps that are quite painful.","recently , scratching lot , skin covered rashy places addition , spots skin appear usual shade , experienced lumps quite painful" +5258,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that don't look like the normal color of my skin, and I've had some bumps that are kind of hard","really itchy lately rashy spots skin also areas look like normal color skin , bumps kind hard" +5259,Fungal infection,"I've been quite itchy recently, and I have rashy places all over my body. There are also some regions that don't appear to be the typical hue of my skin, and I've experienced some firm lumps.","quite itchy recently , rashy places body also regions appear typical hue skin , experienced firm lumps" +5260,Fungal infection,"I've been itching and have rashy patches all over my skin recently. There are also some regions that don't appear to be the regular tone of my skin, and I've experienced some painful bumps.","itching rashy patches skin recently also regions appear regular tone skin , experienced painful bumps" +5261,Fungal infection,"Recently, I've been itching myself a lot, and my skin is covered with rashy patches. Furthermore, there are a few regions where my skin doesn't appear to be its usual tone, and I've experienced a few lumps that are exceptionally painful.","recently , itching lot , skin covered rashy patches furthermore , regions skin appear usual tone , experienced lumps exceptionally painful" +5262,Fungal infection,"I've been having this constant itch and there are these red and bumpy spots on my skin. There are also some patches that are a different color than the rest of my skin, and I've had some bumps that are kind of like little lumps.","constant itch red bumpy spots skin also patches different color rest skin , bumps kind like little lumps" +5263,Fungal infection,"There are red, bumpy areas on my skin, and I've been scratching myself nonstop. Additionally, I have some bumps that resemble little lumps and some spots that are a different shade of skin than the rest of my body.","red , bumpy areas skin , scratching nonstop additionally , bumps resemble little lumps spots different shade skin rest body" +5264,Fungal infection,"I've had a lot of itching on my skin, which occasionally turns into a rash. There are also some odd patches of skin that are a different hue than the rest of me, and I occasionally get little pimples that resemble nodules.","lot itching skin , occasionally turns rash also odd patches skin different hue rest , occasionally get little pimples resemble nodules" +5265,Fungal infection,"I've had a tendency of itching on my skin, that frequently turns into a rash. There are also some strange patches of skin that are a different tone than the rest of my skin, and I regularly get little lumps that mimic nodules.","tendency itching skin , frequently turns rash also strange patches skin different tone rest skin , regularly get little lumps mimic nodules" +5266,Fungal infection,"I've been experiencing a lot of itching on my skin, and sometimes it turns into a rash. There are also some strange patches of skin that are a different color than the rest of me, and sometimes I get little bumps that look like nodules.","experiencing lot itching skin , sometimes turns rash also strange patches skin different color rest , sometimes get little bumps look like nodules" +5267,Fungal infection,"My body has been itching terribly all over, and there are now red spots everywhere. Some of the patches also differ in tone from my natural complexion. And there are these lumps or pimples that have appeared on my skin.","body itching terribly , red spots everywhere patches also differ tone natural complexion lumps pimples appeared skin" +5268,Fungal infection,"My skin has been really itchy lately, and it occasionally erupts into a rash. In addition, I have a few odd areas of skin that are a different coloration from the rest of me, and occasionally I develop little bumps that look  like nodules.","skin really itchy lately , occasionally erupts rash addition , odd areas skin different coloration rest , occasionally develop little bumps look like nodules" +5269,Fungal infection,There are now red blotches all over my body where I have been itching horribly all over. A few of the patches also differ in complexion from my natural skin. And these lumps or bumps have developed on my skin.,red blotches body itching horribly patches also differ complexion natural skin lumps bumps developed skin +5270,Common Cold,"I can't stop sneezing and my nose is really runny. I'm also really cold and tired all the time, and I've been coughing a lot. My fever is really high too, like way above normal.","stop sneezing nose really runny also really cold tired time , coughing lot fever really high , like way normal" +5271,Common Cold,"My nose is extremely runny, and I can't seem to stop sneezing. In addition, I constantly feel cold, exhausted, and I've been coughing a lot. My fever is also really high far above normal.","nose extremely runny , seem stop sneezing addition , constantly feel cold , exhausted , coughing lot fever also really high far normal" +5272,Common Cold,"I've been sneezing nonstop and I can't seem to shake this chill. I'm feeling really weak and tired, and my cough won't go away. My fever is really high","sneezing nonstop seem shake chill feeling really weak tired , cough go away fever really high" +5273,Common Cold,"I've been sneezing incessantly and I just can't get this chill to go away. I feel so weak and exhausted, and my cough won't stop. My temperature is really high.","sneezing incessantly get chill go away feel weak exhausted , cough stop temperature really high" +5274,Common Cold,I'm constantly sneezing and my body is shaking from being cold. I'm so tired I can barely move and my head is killing me. My fever is through the roof,constantly sneezing body shaking cold tired barely move head killing fever roof +5275,Common Cold,"I'm constantly sneezing, and the cold is making my body tremble. I'm so exhausted that I can hardly move, and my head hurts. My fever is quite high.","constantly sneezing , cold making body tremble exhausted hardly move , head hurts fever quite high" +5276,Common Cold,"I've been quite exhausted and ill. I'm sneezing nonstop and am quite cold. My head is throbbing, and I lack energy. Additionally, I have a very high fever and feel like I am on fire.","quite exhausted ill sneezing nonstop quite cold head throbbing , lack energy additionally , high fever feel like fire" +5277,Common Cold,"I've been feeling really tired and sick. I've been sneezing a lot and I can't seem to get warm. I'm so tired and my head is killing me. And my fever is really high, like I'm boiling.","feeling really tired sick sneezing lot seem get warm tired head killing fever really high , like boiling" +5278,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak" +5279,Common Cold,"I've been quite exhausted and ill. I have been sneezing a lot and am having trouble warming up. I'm so exhausted, and my head hurts. And I feel like I am boiling over with my high temperature.","quite exhausted ill sneezing lot trouble warming exhausted , head hurts feel like boiling high temperature" +5280,Common Cold,I can't stop sneezing and I feel really tired and crummy. My throat is really sore and I have a lot of gunky stuff in my nose and throat. My neck feels swollen and puffy too.,stop sneezing feel really tired crummy throat really sore lot gunky stuff nose throat neck feels swollen puffy +5281,Common Cold,"I can't stop sneezing, and I'm exhausted and sick. My throat is really uncomfortable, and there is a lot of junk in my nose and throat. My neck is also swollen and puffy.","stop sneezing , exhausted sick throat really uncomfortable , lot junk nose throat neck also swollen puffy" +5282,Common Cold,"I keep sneezing, and I'm miserable and exhausted. I have a lot of gunky things in my nose and throat, and my throat is really hurting. My neck also feels puffy and swollen.","keep sneezing , miserable exhausted lot gunky things nose throat , throat really hurting neck also feels puffy swollen" +5283,Common Cold,I've been feeling really exhausted and sick to my stomach. I've had a really bad cough and my throat has hurt a lot. I've experienced substantial sinus pressure and a congested nose. I'm really unpleasant and worn out.,feeling really exhausted sick stomach really bad cough throat hurt lot experienced substantial sinus pressure congested nose really unpleasant worn +5284,Common Cold,I've been sneezing a lot and feeling really tired and sick. There's also a lot of gross stuff coming out of my nose and my throat feels really scratchy. And my neck feels swollen too.,sneezing lot feeling really tired sick also lot gross stuff coming nose throat feels really scratchy neck feels swollen +5285,Common Cold,"I've been wheezing a lot and am generally feeling sick and exhausted. My throat feels really scratchy, and a lot of gross stuff is flowing out of my nose. My neck also feels bloated.","wheezing lot generally feeling sick exhausted throat feels really scratchy , lot gross stuff flowing nose neck also feels bloated" +5286,Common Cold,"My sinuses feel incredibly congested, and my eyes are continuously red. I just constantly feel drained and exhausted. In addition, I have a lot of uncomfortable phlegm in my throat. My lymph nodes feel bloated, and breathing has been challenging.","sinuses feel incredibly congested , eyes continuously red constantly feel drained exhausted addition , lot uncomfortable phlegm throat lymph nodes feel bloated , breathing challenging" +5287,Common Cold,My eyes have been really red and my sinuses feel congested. I just don't have any energy and my throat has been really itchy. I've also noticed my lymph nodes are swollen and I've been coughing up a lot of phlegm.,eyes really red sinuses feel congested energy throat really itchy also noticed lymph nodes swollen coughing lot phlegm +5288,Common Cold,"My sinuses feel stuffy, and my eyes have been quite red. I simply lack energy, and my throat has been really scratchy. Along with the swelling in my lymph nodes, I've also been coughing up a lot of phlegm.","sinuses feel stuffy , eyes quite red simply lack energy , throat really scratchy along swelling lymph nodes , also coughing lot phlegm" +5289,Common Cold,"My eyes are always red and itchy, and my nose feels all stuffy and congested. I just feel kind of sick and tired all the time, and I keep coughing up all this gunk. My throat feels sore and scratchy, and I've noticed that the bumps on my neck are bigger than usual","eyes always red itchy , nose feels stuffy congested feel kind sick tired time , keep coughing gunk throat feels sore scratchy , noticed bumps neck bigger usual" +5290,Common Cold,"My nose always feels stuffy and congested, and my eyes are always red and itching. I have a feeling of being unwell and fatigued, and I keep hacking up this gunk. I have a scratchy, irritated throat, and I've seen that my neck's bumps are larger than usual.","nose always feels stuffy congested , eyes always red itching feeling unwell fatigued , keep hacking gunk scratchy , irritated throat , seen neck bumps larger usual" +5291,Common Cold,"I keep sneezing, and my eyes don't quit dripping. It's incredibly difficult for me to breathe because it feels like there is something trapped in my throat. I often feel exhausted, and lately, I've had a lot of phlegm. Moreover, my lymph nodes are enlarged.","keep sneezing , eyes quit dripping incredibly difficult breathe feels like something trapped throat often feel exhausted , lately , lot phlegm moreover , lymph nodes enlarged" +5292,Common Cold,My eyes are red and watery all the time. I've also had this pressure in my sinuses that won't go away. I'm always feeling tired and I've been having a lot of trouble breathing. I've also had a lot of gunk in my throat and my lymph nodes are swollen.,eyes red watery time also pressure sinuses go away always feeling tired lot trouble breathing also lot gunk throat lymph nodes swollen +5293,Common Cold,"My eyes are constantly red and runny. A persistent tightness in my sinuses has also been bothering me. I've been having a lot of difficulties breathing and constantly feel fatigued. In addition, I have a lot of throat mucus and inflamed lymph nodes.","eyes constantly red runny persistent tightness sinuses also bothering lot difficulties breathing constantly feel fatigued addition , lot throat mucus inflamed lymph nodes" +5294,Common Cold,"My nose feels quite clogged, and my eyes are constantly very red and runny. In addition, my chest hurts and I've been having a lot of breathing problems. In addition, my muscles feel quite painful, and I can't smell anything.","nose feels quite clogged , eyes constantly red runny addition , chest hurts lot breathing problems addition , muscles feel quite painful , smell anything" +5295,Common Cold,"My eyes are usually red and runny, and my nose is always stuffy. I've also been having difficulty breathing and my chest hurts. In addition, I can't smell anything and my muscles are quite painful.","eyes usually red runny , nose always stuffy also difficulty breathing chest hurts addition , smell anything muscles quite painful" +5296,Common Cold,"My eyes are usually red and inflamed, and I have the impression that something is clogging my sinuses. I've been coughing up a lot of gunk, and my chest hurts. I can't smell anything, and my muscles are aching.","eyes usually red inflamed , impression something clogging sinuses coughing lot gunk , chest hurts smell anything , muscles aching" +5297,Common Cold,"My eyes are always red and swollen, and I feel like there's something blocking my sinuses. I've been coughing up a lot of goo and my chest feels really heavy. I can't smell anything and my muscles are really sore","eyes always red swollen , feel like something blocking sinuses coughing lot goo chest feels really heavy smell anything muscles really sore" +5298,Common Cold,"I've been coughing a lot and feeling chilly and shivery. My nose has been quite clogged, and I am experiencing facial pressure. I also have a lot of phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching.","coughing lot feeling chilly shivery nose quite clogged , experiencing facial pressure also lot phlegm , coughing pains chest smell anything , muscles aching" +5299,Common Cold,"For days, I've had a nasty cough and cold. My sinuses are clogged, and I have facial pressure. I've also been creating phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching.","days , nasty cough cold sinuses clogged , facial pressure also creating phlegm , coughing pains chest smell anything , muscles aching" +5300,Common Cold,"I've had a nasty cough and cold for days. My sinuses are congested, and I have facial pressure. I've also been coughing up mucus, and it pains my chest. I can't smell anything and my muscles are aching.","nasty cough cold days sinuses congested , facial pressure also coughing mucus , pains chest smell anything muscles aching" +5301,Common Cold,"My cough and cold have been awful for days. My sinuses are congested, and my face is under strain. Additionally, I've been coughing up phlegm, and it hurts in my chest. I have no sense of smell, and my muscles hurt a lot.","cough cold awful days sinuses congested , face strain additionally , coughing phlegm , hurts chest sense smell , muscles hurt lot" +5302,Common Cold,"I'm coughing nonstop and I'm shivering terribly. I have a stuffy nose and my face is under strain. In addition, my throat is coughing up some nasty gunk, and my chest hurts. My muscles hurt a lot, and I can't smell anything.","coughing nonstop shivering terribly stuffy nose face strain addition , throat coughing nasty gunk , chest hurts muscles hurt lot , smell anything" +5303,Common Cold,I can't stop coughing and I feel really cold. My sinuses are all blocked and I have a lot of mucus. My chest hurts and I can't smell anything. My muscles are also really sore.,stop coughing feel really cold sinuses blocked lot mucus chest hurts smell anything muscles also really sore +5304,Common Cold,"I'm coughing nonstop and am really chilly. My mucus production is excessive, and my sinuses are fully clogged. I can't smell anything, and my chest hurts. My muscles are quite painful as well.","coughing nonstop really chilly mucus production excessive , sinuses fully clogged smell anything , chest hurts muscles quite painful well" +5305,Common Cold,"I can't stop coughing and I'm freezing. My sinuses are completely blocked, and I'm inundated with mucous. My chest hurts, and I'm unable to smell anything. My muscles are also really achy.","stop coughing freezing sinuses completely blocked , inundated mucous chest hurts , unable smell anything muscles also really achy" +5306,Common Cold,"I've been coughing a lot and finding it difficult to breathe. My throat hurts and I feel like I have a lot of phlegm trapped in my chest. My nose has been running a lot, and I've been feeling really congested.","coughing lot finding difficult breathe throat hurts feel like lot phlegm trapped chest nose running lot , feeling really congested" +5307,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak" +5308,Common Cold,"I've been experiencing severe weariness and a sickly sensation. My throat has been really painful and I've had a fairly severe cough. My nose has been quite stuffy, and I've had significant sinus pressure. I'm really miserable and extremely exhausted.","experiencing severe weariness sickly sensation throat really painful fairly severe cough nose quite stuffy , significant sinus pressure really miserable extremely exhausted" +5309,Common Cold,I've been feeling really sick and I've had a lot of fatigue. I've had a really bad cough and my throat has been really sore. I've had a lot of sinus pressure and my nose has been really congested. I just feel really run down and miserable.,feeling really sick lot fatigue really bad cough throat really sore lot sinus pressure nose really congested feel really run miserable +5310,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Simply put, I feel really run down and feeble.","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature simply put , feel really run feeble" +5311,Common Cold,I've been really weary and ill. I've been suffering from a severe cough and sore throat. I've got a lot of chills and a pretty high temperature. I simply feel tired and run down.,really weary ill suffering severe cough sore throat got lot chills pretty high temperature simply feel tired run +5312,Common Cold,"I can't quit sneezing, and my nose is running. I'm also constantly chilly and exhausted, and I've been coughing a lot. My fever is also really high, well above usual.","quit sneezing , nose running also constantly chilly exhausted , coughing lot fever also really high , well usual" +5313,Common Cold,"I've been feeling awful, with a lot of congestion and a runny nose. I've been coughing a lot and having a lot of chest pain. My fever has been really high, and I've been experiencing severe muscular discomfort.","feeling awful , lot congestion runny nose coughing lot lot chest pain fever really high , experiencing severe muscular discomfort" +5314,Common Cold,"My neck is swollen, and I'm exhausted. My throat is scratchy, and my eyes are burning red. My nose is really clogged, and I am experiencing facial pressure. My chest hurts, and I'm unable to smell anything.","neck swollen , exhausted throat scratchy , eyes burning red nose really clogged , experiencing facial pressure chest hurts , unable smell anything" +5315,Common Cold,"I lack energy and feel like my neck is bloated. My eyes are red, and my throat feels scratchy. I have severe congestion in my nostrils, and my face is under pressure. I can't smell anything, and my chest hurts.","lack energy feel like neck bloated eyes red , throat feels scratchy severe congestion nostrils , face pressure smell anything , chest hurts" +5316,Common Cold,"I feel quite weak, and my lymph nodes are enlarged. My eyes are burning, and my throat hurts. My sinuses are under strain, and my nose is stuffy. I can't smell anything, and my chest hurts.","feel quite weak , lymph nodes enlarged eyes burning , throat hurts sinuses strain , nose stuffy smell anything , chest hurts" +5317,Common Cold,"I've had a terrible cough and cold for days. My face is tired and my sinuses are blocked. In addition, my chest hurts from the phlegm I've been coughing up. I can't smell, and my muscles are in terrible pain.","terrible cough cold days face tired sinuses blocked addition , chest hurts phlegm coughing smell , muscles terrible pain" +5318,Common Cold,"I have red, watery eyes all the time. My sinuses have also been bothered by a constant tightness. My breathing has been quite tough, and I've been feeling worn out all the time. My lymph nodes are irritated, and I also have a lot of throat mucous.","red , watery eyes time sinuses also bothered constant tightness breathing quite tough , feeling worn time lymph nodes irritated , also lot throat mucous" +5319,Common Cold,"I always get hot, puffy eyes and the feeling that something is obstructing my sinuses. My chest feels quite heavy, and I've been coughing up a lot of gunk. I have no sense of smell, and my muscles hurt a lot.","always get hot , puffy eyes feeling something obstructing sinuses chest feels quite heavy , coughing lot gunk sense smell , muscles hurt lot" +5320,Pneumonia,"I've been feeling really cold and tired lately, and I've been coughing a lot with chest pain. My heart is beating really fast too, and when I cough, the phlegm is kind of a rusty color.","feeling really cold tired lately , coughing lot chest pain heart beating really fast , cough , phlegm kind rusty color" +5321,Pneumonia,"I've been coughing a lot recently with chest pain and feeling incredibly chilly and exhausted. Additionally, my heart is thumping rapidly, and the phlegm I cough up has a reddish hue.","coughing lot recently chest pain feeling incredibly chilly exhausted additionally , heart thumping rapidly , phlegm cough reddish hue" +5322,Pneumonia,"I've been feeling really drained and cold, and I can't stop coughing. It hurts in my chest when I do, and my heart feels like it's racing. The mucus I'm coughing up is a gross brownish color.","feeling really drained cold , stop coughing hurts chest , heart feels like racing mucus coughing gross brownish color" +5323,Pneumonia,"I've been exhausted and chilly, and I can't stop coughing. When I do, it pains in my chest and makes my heart race. My coughing mucous has a disgusting brownish hue.","exhausted chilly , stop coughing , pains chest makes heart race coughing mucous disgusting brownish hue" +5324,Pneumonia,"I've been having chills and feeling exhausted, and I can't seem to shake this cough. My chest hurts when I cough, and my heart feels like it's going a million miles an hour. The phlegm I'm coughing up is a dirty rust color.","chills feeling exhausted , seem shake cough chest hurts cough , heart feels like going million miles hour phlegm coughing dirty rust color" +5325,Pneumonia,"I've been experiencing chills, feeling worn out, and I can't seem to get rid of this cough. When I cough, my chest aches and my heart feels as like it is beating a million miles per hour. I'm coughing up a nasty rust-colored phlegm.","experiencing chills , feeling worn , seem get rid cough cough , chest aches heart feels like beating million miles per hour coughing nasty rust colored phlegm" +5326,Pneumonia,"I've been feeling really weak and cold lately, and this cough won't go away. It hurts in my chest when I cough, and my heart is pounding. The mucus I'm bringing up is a rusty brown color.","feeling really weak cold lately , cough go away hurts chest cough , heart pounding mucus bringing rusty brown color" +5327,Pneumonia,"I've been having chills and feeling really worn out, and this cough won't go away. My chest hurts when I cough, and my heart is racing. The mucus I'm bringing up is a gross brownish color.","chills feeling really worn , cough go away chest hurts cough , heart racing mucus bringing gross brownish color" +5328,Pneumonia,"I've been experiencing chills, feel really exhausted, and my cough just won't go away. When I cough, my chest aches and my heart is pounding. It's a disgusting brownish hue, the mucous I'm coming up.","experiencing chills , feel really exhausted , cough go away cough , chest aches heart pounding disgusting brownish hue , mucous coming" +5329,Pneumonia,"I have a really high fever, and I'm having trouble breathing. I'm sweating a lot and feeling really cold and tired. My heart is beating really fast, and I have some brownish sputum","really high fever , trouble breathing sweating lot feeling really cold tired heart beating really fast , brownish sputum" +5330,Pneumonia,"I'm having problems breathing and have a very high fever. I'm perspiring a lot and experiencing extreme fatigue and chilly. My heart is racing, and I'm coughing up some brownish mucus.","problems breathing high fever perspiring lot experiencing extreme fatigue chilly heart racing , coughing brownish mucus" +5331,Pneumonia,"My temperature is very high, and I'm having a hard time breathing. I'm sweating profusely, and I'm shaking with chills. I'm really tired, and my heart is beating really fast. I also have some brownish phlegm coming up","temperature high , hard time breathing sweating profusely , shaking chills really tired , heart beating really fast also brownish phlegm coming" +5332,Pneumonia,"I'm having trouble breathing, and my fever is really high. I'm drenched in sweat and shivering from the chill. My heart is thumping rapidly, and I'm quite exhausted. Additionally, I'm about to have some brownish phlegm.","trouble breathing , fever really high drenched sweat shivering chill heart thumping rapidly , quite exhausted additionally , brownish phlegm" +5333,Pneumonia,"My fever is really high, and I'm having trouble catching my breath. I'm sweating a lot, feeling cold and tired, and my heart is beating really fast. I also have some brownish phlegm coming up.","fever really high , trouble catching breath sweating lot , feeling cold tired , heart beating really fast also brownish phlegm coming" +5334,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm.","really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm" +5335,Pneumonia,"I've been feeling really sick with a high fever, shortness of breath, sweating, chills, and extreme fatigue. My heart rate is rapid, and I've been coughing up a lot of brownish sputum.","feeling really sick high fever , shortness breath , sweating , chills , extreme fatigue heart rate rapid , coughing lot brownish sputum" +5336,Pneumonia,"With a high temperature, shortness of breath, sweating, chills, and intense exhaustion, I've been feeling quite poorly. I've been coughing up a lot of brownish phlegm and my pulse rate is racing.","high temperature , shortness breath , sweating , chills , intense exhaustion , feeling quite poorly coughing lot brownish phlegm pulse rate racing" +5337,Pneumonia,I'm having a really hard time catching my breath and I'm sweating a lot. I feel really sick and have a lot of mucus in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is dark and looks like rust.,really hard time catching breath sweating lot feel really sick lot mucus throat chest hurts heart racing mucus coughing dark looks like rust +5338,Pneumonia,"I'm sweating profusely and finding it difficult to catch my breath. I feel quite ill, and my throat is very mucous. My heart is pounding, and my chest aches. I'm coughing up thick mucous that resembles rust.","sweating profusely finding difficult catch breath feel quite ill , throat mucous heart pounding , chest aches coughing thick mucous resembles rust" +5339,Pneumonia,"I'm having a lot of trouble breathing and am really uneasy. I'm feeling unwell and am perspiring a lot. My chest hurts and I have a lot of mucus in my throat. My heart is racing, and the hue of the mucus I'm coughing up is off.","lot trouble breathing really uneasy feeling unwell perspiring lot chest hurts lot mucus throat heart racing , hue mucus coughing" +5340,Pneumonia,I can't seem to get enough air and I'm sweating a lot. I don't feel well and there's a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is reddish in color.,seem get enough air sweating lot feel well lot phlegm throat chest hurts heart racing mucus coughing reddish color +5341,Pneumonia,"I'm sweating profusely and can't seem to get enough air. My throat is filled with a lot of mucus, and I don't feel good. My heart is pounding, and my chest aches. I'm coughing up reddish-colored mucous.","sweating profusely seem get enough air throat filled lot mucus , feel good heart pounding , chest aches coughing reddish colored mucous" +5342,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is yellowish.,seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing yellowish +5343,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up brownish mucous.","dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing brownish mucous" +5344,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish.,hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish +5345,Pneumonia,"I'm having trouble breathing and am quite uneasy. My throat is filled with a lot of phlegm, and I'm perspiring a lot. My heart is racing, and my chest aches. I'm coughing up reddish mucous.","trouble breathing quite uneasy throat filled lot phlegm , perspiring lot heart racing , chest aches coughing reddish mucous" +5346,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is brownish and stringy.,seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing brownish stringy +5347,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up a stringy, brownish mucous.","dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing stringy , brownish mucous" +5348,Pneumonia,"I'm drenched with sweat and struggling to breathe. I don't feel well and have a lot of mucous in my throat. My chest aches, and my heart is racing. I'm coughing up mucus that is crimson in colour.","drenched sweat struggling breathe feel well lot mucous throat chest aches , heart racing coughing mucus crimson colour" +5349,Pneumonia,"I've been feeling very lousy, with a high temperature, shortness of breath, sweating, chills, and extreme weariness. My heart is beating, and I've been coughing up a lot of brownish phlegm.","feeling lousy , high temperature , shortness breath , sweating , chills , extreme weariness heart beating , coughing lot brownish phlegm" +5350,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm.","really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm" +5351,Pneumonia,"My fever is really high, and I'm having difficulty breathing. I'm drenched in sweat and shivering with chills. I'm quite fatigued, and my heart is racing. I'm also expecting some brownish phlegm.","fever really high , difficulty breathing drenched sweat shivering chills quite fatigued , heart racing also expecting brownish phlegm" +5352,Pneumonia,"I've been getting chills, feeling tired, and I can't seem to shake this cough. My chest aches and my heart feels like it's racing at a million miles per hour when I cough. I'm coughing out a foul rusty phlegm.","getting chills , feeling tired , seem shake cough chest aches heart feels like racing million miles per hour cough coughing foul rusty phlegm" +5353,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish.,hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish +5354,Pneumonia,"I'm having trouble breathing and am really uncomfortable. I'm sweating profusely and have a lot of mucus in my throat. My chest aches, and my heart is racing. I'm coughing up dark mucous.","trouble breathing really uncomfortable sweating profusely lot mucus throat chest aches , heart racing coughing dark mucous" +5355,Pneumonia,"I've got a high fever and can't seem to catch my breath. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm. My chest aches, and my heart has been racing rapidly.","got high fever seem catch breath sweating profusely generally feeling ill weak also quite thick black phlegm chest aches , heart racing rapidly" +5356,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark.","lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark" +5357,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm.","recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick black phlegm" +5358,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark.","lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark" +5359,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and red phlegm.","recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick red phlegm" +5360,Pneumonia,"I've had chills, lethargy, a cough, a high temperature, and difficulties breathing lately. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm.","chills , lethargy , cough , high temperature , difficulties breathing lately sweating profusely generally feeling ill weak also quite thick black phlegm" +5361,Pneumonia,"I've been having a lot of respiratory issues lately along with chills, exhaustion, a cough, and a high temperature. I've been sweating profusely and generally feeling ill and weak. My chest aches, and my heart has been racing rapidly.","lot respiratory issues lately along chills , exhaustion , cough , high temperature sweating profusely generally feeling ill weak chest aches , heart racing rapidly" +5362,Pneumonia,"I've been suffering with chills, tiredness, and a cough recently. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My chest aches, and my heart has been racing.","suffering chills , tiredness , cough recently sweating tremendously feeling overall unwell weak also thick , black phlegm chest aches , heart racing" +5363,Pneumonia,"I'm running a temperature and can't seem to catch my breath. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My heart has been beating frantically, and my chest hurts.","running temperature seem catch breath sweating tremendously feeling overall unwell weak also thick , black phlegm heart beating frantically , chest hurts" +5364,Pneumonia,"I'm drenched with sweat and can't seem to catch my breath. My throat is clogged with mucus, and I'm miserable. My heart is racing, and my chest aches. I'm coughing up a brownish stringy mucus.","drenched sweat seem catch breath throat clogged mucus , miserable heart racing , chest aches coughing brownish stringy mucus" +5365,Pneumonia,"I'm saturated with sweat and struggling to breathe. My throat is blocked with mucous, and I'm uncomfortable. My heart is racing, and my chest aches. I'm coughing up a darkish stringy mucous.","saturated sweat struggling breathe throat blocked mucous , uncomfortable heart racing , chest aches coughing darkish stringy mucous" +5366,Pneumonia,"I'm having a lot of problems breathing. I'm not feeling good, and I'm sweating a lot. I have a lot of mucous in my throat and my chest hurts. My breathing is laboured, and the phlegm I'm coughing up has an odd tint.","lot problems breathing feeling good , sweating lot lot mucous throat chest hurts breathing laboured , phlegm coughing odd tint" +5367,Pneumonia,"I have a lot of difficulty breathing. I don't feel well, and I'm perspiring a lot. My chest hurts, and I have a lot of mucus in my throat. I'm having trouble breathing, and the phlegm I'm coughing up has a strange hue.","lot difficulty breathing feel well , perspiring lot chest hurts , lot mucus throat trouble breathing , phlegm coughing strange hue" +5368,Pneumonia,"I've been coughing a lot and feeling incredibly chilly and exhausted. I have a pretty high fever, and it's difficult for me to breathe. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm.","coughing lot feeling incredibly chilly exhausted pretty high fever , difficult breathe perspiring lot generally feeling weak ill quite thick black phlegm" +5369,Pneumonia,"I've recently had chills, exhaustion, a cough, a high temperature, and breathing issues. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm. My heart has been racing quite quickly.","recently chills , exhaustion , cough , high temperature , breathing issues perspiring lot generally feeling weak ill quite thick black phlegm heart racing quite quickly" +5370,Dimorphic Hemorrhoids,"Constipation, discomfort with bowel motions, and anus pain have all recently been bothering me. My anus has been quite inflamed, and my stool has been extremely bloody.","constipation , discomfort bowel motions , anus pain recently bothering anus quite inflamed , stool extremely bloody" +5371,Dimorphic Hemorrhoids,"Lately I've been experiencing constipation, pain during bowel movements, and pain in my anus. My stool has also been really bloody and my anus has been really irritated.","lately experiencing constipation , pain bowel movements , pain anus stool also really bloody anus really irritated" +5372,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. My bowel movements have been extremely uncomfortable and difficult for me to have.  My anus has been quite inflamed, and my stool has been extremely bloody.","recently , lot difficulty using restroom bowel movements extremely uncomfortable difficult anus quite inflamed , stool extremely bloody" +5373,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately. It's really painful when I do, and there's been some blood in my stool. I've also been having some pain and irritation around my anus.","lot trouble going bathroom lately really painful , blood stool also pain irritation around anus" +5374,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. When I do, it hurts a lot, and I've noticed some blood in my stool. Around my anus, I've also been experiencing some discomfort and itching.","recently , lot difficulty using restroom , hurts lot , noticed blood stool around anus , also experiencing discomfort itching" +5375,Dimorphic Hemorrhoids,"Lately I've been really constipated, and it's been really painful when I do go to the bathroom. I've also noticed some blood in my stool, and my anus has been really irritated.","lately really constipated , really painful go bathroom also noticed blood stool , anus really irritated" +5376,Dimorphic Hemorrhoids,"I've been suffering from severe constipation lately, and whenever I do go to the restroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool.","suffering severe constipation lately , whenever go restroom , hurts lot aside , anus really itchy , observed blood stool" +5377,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately, and it's been really painful. I've also noticed that my stool has been bloody and my anus has been really irritated.","lot trouble going bathroom lately , really painful also noticed stool bloody anus really irritated" +5378,Dimorphic Hemorrhoids,"Recently, I've been having a lot of discomfort and difficulty using the restroom. Additionally, I've noticed that my anus has been quite sore and that my stool has been bloody.","recently , lot discomfort difficulty using restroom additionally , noticed anus quite sore stool bloody" +5379,Dimorphic Hemorrhoids,"I've been terribly constipated lately, and when I do go to the bathroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool.","terribly constipated lately , go bathroom , hurts lot aside , anus really itchy , observed blood stool" +5380,Dimorphic Hemorrhoids,"I've been quite constipated lately, and going to the restroom has been excruciatingly uncomfortable. I've also observed blood in my stool, and my anus has been aggravated.","quite constipated lately , going restroom excruciatingly uncomfortable also observed blood stool , anus aggravated" +5381,Dimorphic Hemorrhoids,I've been having a lot of trouble going to the bathroom lately. It's been really painful and I've been experiencing pain in my anus. My stool has also been bloody and my anus has been really irritated.,lot trouble going bathroom lately really painful experiencing pain anus stool also bloody anus really irritated +5382,Dimorphic Hemorrhoids,"I've been having a lot of problems using the restroom recently. It's been excruciatingly uncomfortable, and I've been feeling agony in my anus. My stool has been bloody as well, and my anus has been really inflamed.","lot problems using restroom recently excruciatingly uncomfortable , feeling agony anus stool bloody well , anus really inflamed" +5383,Dimorphic Hemorrhoids,"I've been having trouble going to the restroom recently. When I try to go, it's really uncomfortable, and my anus hurts a lot. I've also had some blood in my stool, and my anus has been really uncomfortable.","trouble going restroom recently try go , really uncomfortable , anus hurts lot also blood stool , anus really uncomfortable" +5384,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful when I try to go and my anus hurts a lot. There's also been some blood in my stool and my anus has been really itchy.,really hard time going bathroom lately really painful try go anus hurts lot also blood stool anus really itchy +5385,Dimorphic Hemorrhoids,"I've been experiencing problems using the restroom recently. It's quite difficult for me to go, and it hurts when I do. I've also been experiencing buttock soreness and bloody stools. My anus has also been quite itching and sensitive.","experiencing problems using restroom recently quite difficult go , hurts also experiencing buttock soreness bloody stools anus also quite itching sensitive" +5386,Dimorphic Hemorrhoids,"Recently, I've been having problems using the restroom. Going is incredibly difficult, and doing so hurts. In addition, I've been experiencing some butt soreness, and my stools have been bloody. My anus has also been quite itching and aggravated.","recently , problems using restroom going incredibly difficult , hurts addition , experiencing butt soreness , stools bloody anus also quite itching aggravated" +5387,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5388,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt.","since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt" +5389,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5390,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt.","since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt" +5391,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5392,Dimorphic Hemorrhoids,"Constipation has made it quite difficult for me to use the restroom. My stool has been bloody when I do go, and it hurts. In addition, my anus has been quite itchy and inflamed, and I've been experiencing some butt soreness.","constipation made quite difficult use restroom stool bloody go , hurts addition , anus quite itchy inflamed , experiencing butt soreness" +5393,Dimorphic Hemorrhoids,"It's incredibly difficult for me to use the restroom, and when I do, it hurts a lot. My stools have been bloody, and my butt has been hurting. My anus has also been quite itching and aggravated.","incredibly difficult use restroom , , hurts lot stools bloody , butt hurting anus also quite itching aggravated" +5394,Dimorphic Hemorrhoids,I'm having a lot of trouble going to the bathroom and it's really painful when I do. My stool has been bloody and I've had some pain in my butt. My anus has been really itchy and irritated too.,lot trouble going bathroom really painful stool bloody pain butt anus really itchy irritated +5395,Dimorphic Hemorrhoids,I've been having trouble going to the bathroom. It's been really hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,trouble going bathroom really hard go hurts anus really sore bleeding go really painful really uncomfortable +5396,Dimorphic Hemorrhoids,"I've been finding it challenging to use the restroom. Going has been quite difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","finding challenging use restroom going quite difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5397,Dimorphic Hemorrhoids,"I've been having difficulty using the restroom. It's been difficult to go, and it aches when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","difficulty using restroom difficult go , aches anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5398,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable +5399,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5400,Dimorphic Hemorrhoids,"Constipation and soreness with bowel motions have been bothering me lately. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","constipation soreness bowel motions bothering lately go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5401,Dimorphic Hemorrhoids,I've been having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5402,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5403,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5404,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5405,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5406,Dimorphic Hemorrhoids,"My bowel motions are giving me a lot of problems right now. Going is difficult, and going hurts when I do it. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions giving lot problems right going difficult , going hurts go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5407,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable +5408,Dimorphic Hemorrhoids,"I've been having constipation and bowel motions that hurt recently. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","constipation bowel motions hurt recently go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5409,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5410,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5411,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5412,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5413,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5414,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's really painful and I'm really uncomfortable.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go really painful really uncomfortable" +5415,Dimorphic Hemorrhoids,"I've been getting a lot of bowel issues recently. It's difficult for me to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","getting lot bowel issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5416,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful and I'm only able to go every few days. There's also a lot of pain in my anus and around that area. My stool has been really bloody and my anus feels really irritated.,really hard time going bathroom lately really painful able go every days also lot pain anus around area stool really bloody anus feels really irritated +5417,Dimorphic Hemorrhoids,"I've been finding it incredibly difficult recently to use the restroom. I can only go sporadically because it hurts so much. My anus and the surrounding region are also quite painful. My anus feels really aggravated, and my stool has been extremely bloody.","finding incredibly difficult recently use restroom go sporadically hurts much anus surrounding region also quite painful anus feels really aggravated , stool extremely bloody" +5418,Dimorphic Hemorrhoids,I'm having a lot of trouble with constipation and pain while trying to go to the bathroom. It hurts a lot in my anus and the area around it. My stool has been bloody and my anus is really irritated.,lot trouble constipation pain trying go bathroom hurts lot anus area around stool bloody anus really irritated +5419,Dimorphic Hemorrhoids,"Constipation and bowel movement discomfort have been very common for me lately. The region surrounding my anus and I both ache a lot. My anus is really itchy, and my stool has been bloody.","constipation bowel movement discomfort common lately region surrounding anus ache lot anus really itchy , stool bloody" +5420,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I've been experiencing a lot of stiffness when I walk about and my joints have been swollen. Walking has also been really uncomfortable.","muscles feeling really weak , neck extremely tight experiencing lot stiffness walk joints swollen walking also really uncomfortable" +5421,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and I've been having a lot of stiffness when I move around. It's also been really painful to walk.,feeling really weak muscles neck really stiff joints swelling lot stiffness move around also really painful walk +5422,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen and I've been experiencing a lot of stiffness when I move around. Walking has also been excruciatingly uncomfortable.","muscles quite weak , neck really stiff joints swollen experiencing lot stiffness move around walking also excruciatingly uncomfortable" +5423,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's been hard to move around. Walking has been really painful.,feeling really weak muscles neck really stiff joints swelling hard move around walking really painful +5424,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult to move about. Walking has been excruciatingly uncomfortable.","muscles really weak , neck extremely stiff joints swollen , making difficult move walking excruciatingly uncomfortable" +5425,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. It has been difficult to move about since my joints have swollen. It has been really uncomfortable to walk.","experiencing severe muscular weakness , neck really stiff difficult move since joints swollen really uncomfortable walk" +5426,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. My joints have swollen, making it difficult for me to move. It has hurt a lot to walk.","muscles feeling really weak , neck extremely tight joints swollen , making difficult move hurt lot walk" +5427,Arthritis,"My neck has been so tense, and I've been feeling like my muscles are incredibly weak. I have trouble moving since my joints have enlarged. To walk has been quite painful.","neck tense , feeling like muscles incredibly weak trouble moving since joints enlarged walk quite painful" +5428,Arthritis,"My neck has been really stiff, and I've had terrible muscle weakness. Due to the swelling in my joints, it has been challenging to move about. Walking has been quite unpleasant.","neck really stiff , terrible muscle weakness due swelling joints , challenging move walking quite unpleasant" +5429,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles lately neck really stiff joints swelling hard move around without feeling stiff walking really painful +5430,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","recently , muscles felt quite weak , neck really tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5431,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable.","experiencing muscular weakness stiffness neck recently joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable" +5432,Arthritis,"Recently, I've been suffering neck muscle weakness and stiffness. My joints have enlarged and it is difficult for me to walk without feeling stiff. Walking has also been excruciatingly uncomfortable.","recently , suffering neck muscle weakness stiffness joints enlarged difficult walk without feeling stiff walking also excruciatingly uncomfortable" +5433,Arthritis,"Lately, my neck has been tight and my muscles have been weakened. I have swelling joints that make it difficult for me to move about without getting stiff. It has also been agonisingly painful to walk.","lately , neck tight muscles weakened swelling joints make difficult move without getting stiff also agonisingly painful walk" +5434,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5435,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5436,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable.","muscles quite weak , neck really stiff joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable" +5437,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable.","muscles really weak , neck extremely stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable" +5438,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to move without becoming stiff. Walking has been quite uncomfortable as well.","muscles quite weak , neck really stiff joints swollen , making difficult move without becoming stiff walking quite uncomfortable well" +5439,Arthritis,"My neck has been really tight, and my muscles have been rather weak. I have swelling joints that make it hard for me to move without getting stiff. Additionally, walking has been quite unpleasant.","neck really tight , muscles rather weak swelling joints make hard move without getting stiff additionally , walking quite unpleasant" +5440,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5441,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5442,Arthritis,My neck has been extremely tight and my muscles have been feeling extremely weak. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable.,neck extremely tight muscles feeling extremely weak difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable +5443,Arthritis,"My neck has been extremely stiff and my muscles have been extremely weak. As a result of swelling in my joints, I find it difficult to move around without feeling stiff. Additionally, walking has been extremely uneasy.","neck extremely stiff muscles extremely weak result swelling joints , find difficult move around without feeling stiff additionally , walking extremely uneasy" +5444,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable" +5445,Arthritis,"My neck has been extremely tight and my muscles have been feeling extremely weak. My joints have been swollen and I've been walking around with a lot of stiffness. Additionally, walking has been extremely uneasy.","neck extremely tight muscles feeling extremely weak joints swollen walking around lot stiffness additionally , walking extremely uneasy" +5446,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable" +5447,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5448,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable.","muscles quite weak , neck really stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable" +5449,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","experiencing severe muscular weakness , neck really stiff swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5450,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swollen and it's hard for me to move around. It's also been painful to walk.,feeling really weak muscles lately neck really stiff joints swollen hard move around also painful walk +5451,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. Swollen joints make it difficult for me to move around. Walking has also been difficult.,feeling truly frail muscles recently neck truly solid swollen joints make difficult move around walking also difficult +5452,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints, making it difficult for me to move. Walking has also been painful.","recently , muscles felt quite weak , neck really tight swollen joints , making difficult move walking also painful" +5453,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have enlarged, making it difficult for me to move. Walking has also been difficult.","experiencing muscular weakness stiffness neck recently joints enlarged , making difficult move walking also difficult" +5454,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. It has been difficult for me to move around because my joints have been swelling. Walking has also been extremely painful.,feeling truly frail muscles recently neck truly solid difficult move around joints swelling walking also extremely painful +5455,Arthritis,"My muscles have been feeling feeble recently, but my neck has been rock solid. My joints have become swollen, making it difficult for me to move about. Walking has been quite uncomfortable as well.","muscles feeling feeble recently , neck rock solid joints become swollen , making difficult move walking quite uncomfortable well" +5456,Arthritis,"My muscles have been feeling rather weak lately, but my neck has been really strong. My joints have swollen, making it challenging for me to move about. It has also been excruciatingly difficult to walk.","muscles feeling rather weak lately , neck really strong joints swollen , making challenging move also excruciatingly difficult walk" +5457,Arthritis,My neck has been extremely tight and my muscles have felt quite weak recently. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable.,neck extremely tight muscles felt quite weak recently difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable +5458,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of Pine Tree State to run whereas not getting stiff. additionally, walking has been terribly uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf pine tree state run whereas getting stiff additionally , walking terribly uncomfortable" +5459,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, creating it troublesome on behalf of me to run regarding while not changing into stiff. Walking has additionally been agonizingly uncomfortable.","experiencing muscular weakness stiffness neck recently joints swollen , creating troublesome behalf run regarding changing stiff walking additionally agonizingly uncomfortable" +5460,Arthritis,"My muscles are quite weak, and my neck has been very stiff. My joints have swollen, creating it troublesome on behalf of me to steer concerning while not feeling stiff. Walking has conjointly been very uncomfortable.","muscles quite weak , neck stiff joints swollen , creating troublesome behalf steer concerning feeling stiff walking conjointly uncomfortable" +5461,Arthritis,"My muscles area unit quite weak, and my neck has been terribly stiff. My joints have swollen, making it hard on behalf of Maine to steer regarding whereas not feeling stiff. Walking has put together been terribly uncomfortable.","muscles area unit quite weak , neck terribly stiff joints swollen , making hard behalf maine steer regarding whereas feeling stiff walking put together terribly uncomfortable" +5462,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's onerous on behalf of me to run while not obtaining stiff. in addition, walking has been extraordinarily uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , onerous behalf run obtaining stiff addition , walking extraordinarily uncomfortable" +5463,Arthritis,My neck has been very tight and my muscles have felt quite weak recently. it's tough on behalf of me to maneuver around while not changing into stiff thanks to my swollen joints. Walking has additionally been very uncomfortable.,neck tight muscles felt quite weak recently tough behalf maneuver around changing stiff thanks swollen joints walking additionally uncomfortable +5464,Arthritis,"Recently, when I try to walk about, I have stiffness, a stiff neck, swollen joints, and muscular weakness. Walking has also been really uncomfortable.","recently , try walk , stiffness , stiff neck , swollen joints , muscular weakness walking also really uncomfortable" +5465,Arthritis,"Lately i have been experiencing muscle weakness, a stiff neck, swelling joints, and stiffness after I attempt to move around. it is also been very painful to steer.","lately experiencing muscle weakness , stiff neck , swelling joints , stiffness attempt move around also painful steer" +5466,Arthritis,"Recently, the muscles in my neck have become tight and weak. It's difficult for me to run now since my joints are older without getting tight. The act of walking has also been quite unpleasant.","recently , muscles neck become tight weak difficult run since joints older without getting tight act walking also quite unpleasant" +5467,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of American state to run whereas not getting stiff. additionally, walking has been very uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf american state run whereas getting stiff additionally , walking uncomfortable" +5468,Arthritis,"Recently, the muscles in my neck have become tight and weak. Since my joints have matured, it is difficult for the American government for me to run without becoming stiff. Walking has also been quite unpleasant.","recently , muscles neck become tight weak since joints matured , difficult american government run without becoming stiff walking also quite unpleasant" +5469,Arthritis,"Lately, I've been having stiffness and weakness in my neck muscles. Since my joints have matured, it is difficult for the American state to operate without becoming stiff. Furthermore, walking has been quite painful.","lately , stiffness weakness neck muscles since joints matured , difficult american state operate without becoming stiff furthermore , walking quite painful" +5470,Acne,I've been having a really bad rash on my skin lately. It's full of pus-filled pimples and blackheads. My skin has also been scurring a lot.,really bad rash skin lately full pus filled pimples blackheads skin also scurring lot +5471,Acne,I've just developed a severe rash on my skin. It's clogged with pus-filled pimples and blackheads. My skin has also been quite sensitive.,developed severe rash skin clogged pus filled pimples blackheads skin also quite sensitive +5472,Acne,"My skin has been breaking out in a terrible rash lately. Blackheads and pus-filled pimples abound on it. Additionally, my skin has been scurring a lot.","skin breaking terrible rash lately blackheads pus filled pimples abound additionally , skin scurring lot" +5473,Acne,"I've recently been experiencing a severe skin rash. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been scurring a lot.","recently experiencing severe skin rash blackheads pimples packed pus everywhere additionally , skin scurring lot" +5474,Acne,I've been having a very unhealthy rash on my skin latterly. It's filled with pus-filled pimples and blackheads. My skin has additionally been scurring heaps.,unhealthy rash skin latterly filled pus filled pimples blackheads skin additionally scurring heaps +5475,Acne,My skin has just acquired a nasty rash. It's full of pus-filled pimples and blackheads. My skin has been really sensitive as well.,skin acquired nasty rash full pus filled pimples blackheads skin really sensitive well +5476,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive.","nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive" +5477,Acne,"I recently experienced a severe skin rash. Blackheads and pimples filled with pus are clogging it. Additionally, my skin has been quite irritated.","recently experienced severe skin rash blackheads pimples filled pus clogging additionally , skin quite irritated" +5478,Acne,My skin has recently been severely rashy. Blackheads and pus-filled pimples have blocked it. My skin has been quite delicate as well.,skin recently severely rashy blackheads pus filled pimples blocked skin quite delicate well +5479,Acne,Lately I've been experiencing a skin rash with a lot of pus-filled pimples and blackheads. My skin has also been scurring a lot.,lately experiencing skin rash lot pus filled pimples blackheads skin also scurring lot +5480,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot.","skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot" +5481,Acne,My skin has now developed a revolting rash. There are pus-filled pimples and blackheads everywhere. My skin has also been really sensitive.,skin developed revolting rash pus filled pimples blackheads everywhere skin also really sensitive +5482,Acne,"My skin has developed a horrible rash. There are blackheads and pus-filled pimples everywhere. Furthermore, my skin has been exceedingly sensitive.","skin developed horrible rash blackheads pus filled pimples everywhere furthermore , skin exceedingly sensitive" +5483,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive.","nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive" +5484,Acne,My skin has simply nonheritable a nasty rash. It's packed with pus-filled pimples and blackheads. My skin has been very sensitive moreover.,skin simply nonheritable nasty rash packed pus filled pimples blackheads skin sensitive moreover +5485,Acne,"My skin has developed a terrible rash that is not inherited. It has a lot of blackheads and pus-filled pimples. Furthermore, my skin has been exceedingly sensitive.","skin developed terrible rash inherited lot blackheads pus filled pimples furthermore , skin exceedingly sensitive" +5486,Acne,"Recently, I've been experiencing a lot of acne breakouts with pimples that contain pus. I've also been struggling with blackheads.","recently , experiencing lot acne breakouts pimples contain pus also struggling blackheads" +5487,Acne,I woke up this morning and found that I have a really nasty rash all over my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,woke morning found really nasty rash skin ton blackheads pimples filled pus skin also really scurrying +5488,Acne,I've been noticing a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,noticing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5489,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying +5490,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5491,Acne,I woke up this morning to find a really nasty rash on my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,woke morning find really nasty rash skin ton blackheads pimples filled pus skin also really scurrying +5492,Acne,I've been struggling with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,struggling really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5493,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying +5494,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5495,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying everywhere.,recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying everywhere +5496,Acne,I recently had a horrible rash on my skin. There are several blackheads and pus-filled pimples. My skin has also been moving around a lot.,recently horrible rash skin several blackheads pus filled pimples skin also moving around lot +5497,Acne,"This morning when I woke up, I discovered that I have an extremely bad rash all over my body. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot.","morning woke , discovered extremely bad rash body several pus filled pimples blackheads around skin also moving around lot" +5498,Acne,I awoke this morning to see that I had a horrible rash all over my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about.,awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying +5499,Acne,I've just developed a skin rash with several pus-filled pimples and blackheads. My skin has also been quite sensitive.,developed skin rash several pus filled pimples blackheads skin also quite sensitive +5500,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot.","skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot" +5501,Acne,"I woke up this morning to find that I have a terrible rash all over my body. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been changing a lot.","woke morning find terrible rash body blackheads pus filled pimples place additionally , skin changing lot" +5502,Acne,"When I awoke this morning, I realised that I had a severe rash all over my body. There are many pus-filled pimples and blackheads all over the place. My skin has also been scurring a lot.","awoke morning , realised severe rash body many pus filled pimples blackheads place skin also scurring lot" +5503,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying about.,recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying +5504,Acne,I awoke this morning to see a horrible rash on my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about.,awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying +5505,Acne,"This morning when I woke up, I discovered an extremely bad rash on my skin. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot.","morning woke , discovered extremely bad rash skin several pus filled pimples blackheads around skin also moving around lot" +5506,Acne,I've recently been battling a pretty itchy rash on my skin. There are pus-filled pimples and blackheads all over it. My skin has also been scurring a lot.,recently battling pretty itchy rash skin pus filled pimples blackheads skin also scurring lot +5507,Acne,"This morning, I realized that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot.","morning , realized major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot" +5508,Acne,"I woke up today to find that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot.","woke today find major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot" +5509,Acne,"I woke up this morning to find that I had a major rash all over my body. It's covered in pus-filled pimples and blackheads, and my skin has been scurrying a lot","woke morning find major rash body covered pus filled pimples blackheads , skin scurrying lot" +5510,Acne,"This morning, I saw a large rash all over my body. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot.","morning , saw large rash body lot pus filled pimples blackheads face , skin scurrying lot" +5511,Acne,"I discovered that I had a significant rash all over my body this morning. Blackheads and pus-filled pimples are proliferating, and my skin has been scurrying a lot.","discovered significant rash body morning blackheads pus filled pimples proliferating , skin scurrying lot" +5512,Acne,"Yesterday, I noticed an enormous rash all over my skin. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot.","yesterday , noticed enormous rash skin lot pus filled pimples blackheads face , skin scurrying lot" +5513,Acne,"I discovered a huge rash on my skin yesterday. My face is covered of blackheads and pus-filled pimples, and my skin has been crawling a lot.","discovered huge rash skin yesterday face covered blackheads pus filled pimples , skin crawling lot" +5514,Acne,"My skin has a horrible rash that is absolutely nonheritable. Blackheads and pus-filled pimples abound on it. In addition, my skin has been quite sensitive.","skin horrible rash absolutely nonheritable blackheads pus filled pimples abound addition , skin quite sensitive" +5515,Acne,"My skin has merely developed an uninherited rash. It has a lot of pus-filled pimples and blackheads. Furthermore, my skin has been quite sensitive.","skin merely developed uninherited rash lot pus filled pimples blackheads furthermore , skin quite sensitive" +5516,Acne,"When I awoke this morning, I saw a severe rash across my skin. There are many pus-filled pimples and blackheads all over the place. My skin has also been shifting a lot.","awoke morning , saw severe rash across skin many pus filled pimples blackheads place skin also shifting lot" +5517,Acne,"When I woke up this morning, I saw a terrible rash on my skin. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been shifting a lot.","woke morning , saw terrible rash skin blackheads pus filled pimples place additionally , skin shifting lot" +5518,Acne,"I've recently struggled with a really irritating skin rash. There are blackheads and pus-filled pimples all over it. Additionally, my skin has been scurring a lot.","recently struggled really irritating skin rash blackheads pus filled pimples additionally , skin scurring lot" +5519,Acne,I've recently been dealing with an itching rash on my skin. It's covered in pus-filled pimples and blackheads. My skin has also been quite sensitive.,recently dealing itching rash skin covered pus filled pimples blackheads skin also quite sensitive +5520,Bronchial Asthma,"I have been feeling extremely tired and weak, and I've also been coughing a lot with difficulty breathing. My fever is very high, and I'm producing a lot of mucus when I cough.","feeling extremely tired weak , also coughing lot difficulty breathing fever high , producing lot mucus cough" +5521,Bronchial Asthma,"I've got a cough that won't go away, and I'm exhausted. I've been coughing up thick mucous and my fever is also pretty high.","got cough go away , exhausted coughing thick mucous fever also pretty high" +5522,Bronchial Asthma,"I have a persistent cough and have been feeling quite fatigued. My fever is through the roof, and I'm having trouble breathing. When I cough, I also cough up a lot of mucous.","persistent cough feeling quite fatigued fever roof , trouble breathing cough , also cough lot mucous" +5523,Bronchial Asthma,"I've been having issues with exhaustion, a dry cough, and breathing. I have a very high fever and have been coughing up a lot of thick, mucoid phlegm.","issues exhaustion , dry cough , breathing high fever coughing lot thick , mucoid phlegm" +5524,Bronchial Asthma,"I feel really fatigued and weak, and I have a bad cough. My fever is really high, and my breathing has become shallow. When I cough, a lot of saliva comes out as well.","feel really fatigued weak , bad cough fever really high , breathing become shallow cough , lot saliva comes well" +5525,Bronchial Asthma,"I've had a lot of sleepiness, a cough that refuses to go away, and breathing difficulty. I've been coughing up a lot of thick, mucoid saliva and have a high fever.","lot sleepiness , cough refuses go away , breathing difficulty coughing lot thick , mucoid saliva high fever" +5526,Bronchial Asthma,"doctor, i have been having high fever since past few days , saliva also became thick , dry cough , weakness also seen","doctor , high fever since past days , saliva also became thick , dry cough , weakness also seen" +5527,Bronchial Asthma,"I have a cough that has continued for days, and I feel really weak and tired. My fever is high, and my breath has become strained. When I cough, I also generate a lot of mucus.","cough continued days , feel really weak tired fever high , breath become strained cough , also generate lot mucus" +5528,Bronchial Asthma,"Mom, Dad, I've been feeling really tired and weak lately, and I've had this cough that just won't go away. It's been hard for me to catch my breath, and my fever has been really high. When I cough, I've been producing a lot of mucus.","mom , dad , feeling really tired weak lately , cough go away hard catch breath , fever really high cough , producing lot mucus" +5529,Bronchial Asthma,"Hey Mom, Hey Dad, I've been feeling really exhausted lately and have had this persistent cough. My breathing has become shallow, and my fever is very high. I've also been coughing up a lot of thick, mucoid sputum","hey mom , hey dad , feeling really exhausted lately persistent cough breathing become shallow , fever high also coughing lot thick , mucoid sputum" +5530,Bronchial Asthma,"Recently, I've felt quite weak and exhausted, and I've also had a cough that simply won't go away. My fever has been really high, and it has been challenging for me to catch my breath. I've been making a lot of mucous when I cough.","recently , felt quite weak exhausted , also cough simply go away fever really high , challenging catch breath making lot mucous cough" +5531,Bronchial Asthma,"I've felt terribly weak and drained, and I've also had a cough that that won't go away. My fever has been exceptionally high, and it has been challenging to try to catch my breath. I've been creating a lot of mucous when I cough.","felt terribly weak drained , also cough go away fever exceptionally high , challenging try catch breath creating lot mucous cough" +5532,Bronchial Asthma,"I'm feeling really tired and weak lately, and I've had this cough that just won't go away. My breathing has become shallow, and my fever has been really high. When I cough, I've been producing a lot of thick, mucoid sputum","feeling really tired weak lately , cough go away breathing become shallow , fever really high cough , producing lot thick , mucoid sputum" +5533,Bronchial Asthma,"feeling extremely exhausted and have had this persistent cough. It's been hard for me to catch my breath, and my fever is very high. I've also been producing a lot of mucus when I cough","feeling extremely exhausted persistent cough hard catch breath , fever high also producing lot mucus cough" +5534,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum.","struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum" +5535,Bronchial Asthma,"I've had a nagging cough that won't go away, and my breathing has become labored. My fever is also very high, and I'm feeling very weak and tired. I've been producing a lot of mucus when I cough","nagging cough go away , breathing become labored fever also high , feeling weak tired producing lot mucus cough" +5536,Bronchial Asthma,"I've been experiencing a high fever, a persistent cough, and shortness of breath. I've also been producing a lot of thick, mucoid sputum, and I'm feeling very tired and weak.","experiencing high fever , persistent cough , shortness breath also producing lot thick , mucoid sputum , feeling tired weak" +5537,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so drained and tired from having to deal with all of this.","breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling drained tired deal" +5538,Bronchial Asthma,"I've had this cough that's been lingering for days and difficulty breathing. My fever is sky-high, and I'm feeling so weak and tired. I've also been producing a lot of mucus when I cough, and it's just been so overwhelming to deal with all of these symptoms. I'm getting so frustrated with all of this.","cough lingering days difficulty breathing fever sky high , feeling weak tired also producing lot mucus cough , overwhelming deal symptoms getting frustrated" +5539,Bronchial Asthma,"I've had a persistent cough for days, and I also have breathing problems. I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything.","persistent cough days , also breathing problems weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything" +5540,Bronchial Asthma,"I've been struggling with difficulty breathing, a constant cough, and fatigue. My fever is extremely high, and I've been coughing up a lot of thick, mucoid sputum. It's been so hard to deal with all of this, and I'm just feeling so drained and worn out","struggling difficulty breathing , constant cough , fatigue fever extremely high , coughing lot thick , mucoid sputum hard deal , feeling drained worn" +5541,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so exhausted and tired from having to cope with all of this.","breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling exhausted tired cope" +5542,Bronchial Asthma,"I've been feeling really ill lately. I've had this persistent cough and difficulty breathing, and my fever has been off the charts. I'm also feeling extremely exhausted, and I've been producing a lot of mucus when I cough. It's just been so overwhelming to deal with all of these symptoms","feeling really ill lately persistent cough difficulty breathing , fever charts also feeling extremely exhausted , producing lot mucus cough overwhelming deal symptoms" +5543,Bronchial Asthma,"Recently, I've been feeling terrible. My fever has been through the roof, and I've had a persistent cough and breathing problems. I've been coughing up a lot of phlegm and am also feeling quite weary. Dealing with all of these symptoms has been quite difficult.","recently , feeling terrible fever roof , persistent cough breathing problems coughing lot phlegm also feeling quite weary dealing symptoms quite difficult" +5544,Bronchial Asthma,"I've had a fever, a cough that won't go away, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I feel quite worn out and weak.","fever , cough go away , shortness breath addition , coughing lot thick , mucoid saliva feel quite worn weak" +5545,Bronchial Asthma,"Hey, I've had a dry cough, breathing difficulties, as well as a high fever. a lot of mucous is being produced, and I feel incredibly weak and tired.""","hey , dry cough , breathing difficulties , well high fever lot mucous produced , feel incredibly weak tired" +5546,Bronchial Asthma,"Recently, I have had a number of concerning symptoms, including a dry cough, impaired breathing, a high fever, and a lot of mucus. I also feel very weak and tired.","recently , number concerning symptoms , including dry cough , impaired breathing , high fever , lot mucus also feel weak tired" +5547,Bronchial Asthma,"I am currently dealing with a number of health issues, including a dry cough, difficulty breathing, a high fever, and increased mucus production. I am also feeling very weak and tired","currently dealing number health issues , including dry cough , difficulty breathing , high fever , increased mucus production also feeling weak tired" +5548,Bronchial Asthma,"its been a week , i am suffering from continious health issues like dry cough , problems in breathing , weakness throughout the day.","week , suffering continious health issues like dry cough , problems breathing , weakness throughout day" +5549,Bronchial Asthma,"Doctor , from couple of days i am not able to brethe propelry , lying on bed due to high fever , lot of mucus gets out . please suggest me some medicines.","doctor , couple days able brethe propelry , lying bed due high fever , lot mucus gets please suggest medicines" +5550,Bronchial Asthma,"I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling so drained and exhausted. It's been so hard to deal with all of this.","experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling drained exhausted hard deal" +5551,Bronchial Asthma," I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything.","weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything" +5552,Bronchial Asthma," must confess that I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling quite drained and exhausted. It's all been rather tough to deal with, and I'm feeling quite sick at the moment","must confess experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling quite drained exhausted rather tough deal , feeling quite sick moment" +5553,Bronchial Asthma,"I must admit that I have been having a high fever, a persistent cough, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I've been feeling really depleted and worn out.","must admit high fever , persistent cough , shortness breath addition , coughing lot thick , mucoid saliva feeling really depleted worn" +5554,Bronchial Asthma,"I've been having a tough time with this constant cough, difficulty breathing, and fatigue. My fever is high, and I've been coughing up a lot of thick, mucoid sputum. It's all been rather draining and exhausting, and I'm feeling quite sick at the moment.","tough time constant cough , difficulty breathing , fatigue fever high , coughing lot thick , mucoid sputum rather draining exhausting , feeling quite sick moment" +5555,Bronchial Asthma,"I've been struggling with a persistent cough, breathing issues, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really tiring and exhausting, and right now I'm feeling rather ill.","struggling persistent cough , breathing issues , exhaustion coughing lot thick , mucoid sputum high fever really tiring exhausting , right feeling rather ill" +5556,Bronchial Asthma,"I've been dealing with a bad cough, breathing issues, and drowsiness. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really exhausting and exhausting, and right now I'm feeling rather ill.","dealing bad cough , breathing issues , drowsiness coughing lot thick , mucoid sputum high fever really exhausting exhausting , right feeling rather ill" +5557,Bronchial Asthma,"My persistent cough, breathing problems, and exhaustion have been making things difficult for me. I've been producing copious amounts of thick, mucoid sputum while also having a high fever. I'm currently feeling fairly ill because everything has been so tiring and exhausting.","persistent cough , breathing problems , exhaustion making things difficult producing copious amounts thick , mucoid sputum also high fever currently feeling fairly ill everything tiring exhausting" +5558,Bronchial Asthma,"With my persistent cough, respiratory issues, and exhaustion, I've been struggling. I have a high fever and have been producing a lot of thick, mucoid sputum while coughing. I currently feel rather sick as a result of how draining and tiresome everything has been.","persistent cough , respiratory issues , exhaustion , struggling high fever producing lot thick , mucoid sputum coughing currently feel rather sick result draining tiresome everything" +5559,Bronchial Asthma,"My fever is through the roof, and I'm so weak and tired out. I've been coughing up a lot of mucous, and managing all of these symptoms has been really hard. Everything is making me so upset.","fever roof , weak tired coughing lot mucous , managing symptoms really hard everything making upset" +5560,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feelinf too tired. Please recommend some medications for me.","doctor due high fever , able breathe via nose mouth days feelinf tired please recommend medications" +5561,Bronchial Asthma,"Hey, I've got a dry cough, trouble breathing, and a high fever. I'm producing a lot of mucus and am feeling quite weak and exhausted.","hey , got dry cough , trouble breathing , high fever producing lot mucus feeling quite weak exhausted" +5562,Bronchial Asthma,"I've been coughing nonstop for days, and I also have respiratory issues. My fever is through the roof, and I'm so weak and worn out. All of these symptoms have been really challenging for me to control,","coughing nonstop days , also respiratory issues fever roof , weak worn symptoms really challenging control ," +5563,Bronchial Asthma,"In addition to sleepiness, I've been having trouble breathing due to a persistent cough. I've been coughing up a lot of thick, mucoid sputum and have a high fever.","addition sleepiness , trouble breathing due persistent cough coughing lot thick , mucoid sputum high fever" +5564,Bronchial Asthma,"I've been struggling to breathe, coughing constantly, and feeling worn out. I have a very high fever and have been coughing up a lot of thick, mucoid saliva. I simply feel so worn out and exhausted from trying to deal with everything.","struggling breathe , coughing constantly , feeling worn high fever coughing lot thick , mucoid saliva simply feel worn exhausted trying deal everything" +5565,Bronchial Asthma,"I've been experiencing difficulty breathing, a chronic cough, and weariness. I've been producing a lot of thick, mucoid sputum while also running a very high temperature. Due to having to cope with all of this, I'm simply feeling extremely worn out and exhausted.","experiencing difficulty breathing , chronic cough , weariness producing lot thick , mucoid sputum also running high temperature due cope , simply feeling extremely worn exhausted" +5566,Bronchial Asthma,"Hello, Mom and Father Recently, I've felt incredibly worn out and have had a cough that won't go away. My fever is really high, and my breathing has become shallow. Additionally, I've been coughing up a lot of mucous, thick sputum.","hello , mom father recently , felt incredibly worn cough go away fever really high , breathing become shallow additionally , coughing lot mucous , thick sputum" +5567,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum.","struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum" +5568,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feeling too tired.sometimes mucus has been seen too.Please recommend some medications for me.","doctor due high fever , able breathe via nose mouth days feeling tired sometimes mucus seen please recommend medications" +5569,Bronchial Asthma,"I've had ongoing health problems for a week, including a dry cough, breathing difficulties, and general weakness.","ongoing health problems week , including dry cough , breathing difficulties , general weakness" +5570,Hypertension,"I have been experiencing a headache, chest pain, dizziness, and difficulty maintaining my balance. I also feel like I am having trouble concentrating","experiencing headache , chest pain , dizziness , difficulty maintaining balance also feel like trouble concentrating" +5571,Hypertension,"Along with a headache, chest pain, instability, and balance issues, I've also been feeling dizzy. I also think I'm having problems focusing.","along headache , chest pain , instability , balance issues , also feeling dizzy also think problems focusing" +5572,Hypertension,"Along with a head pain, chest pain, instability, and balance issues, I've also been feeling unwell. I also think I'm having problems focusing.","along head pain , chest pain , instability , balance issues , also feeling unwell also think problems focusing" +5573,Hypertension,"In addition to a head pain, chest pain, instability, and balance issues, I've already been feeling unwell. I also suppose I'm having issues focusing.","addition head pain , chest pain , instability , balance issues , already feeling unwell also suppose issues focusing" +5574,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. My ability to concentrate and focus has also been challenging.","experiencing balance issues , headache , chest pain , dizziness ability concentrate focus also challenging" +5575,Hypertension,"I have been having a headache, chest pain, dizziness, and trouble with my balance. It has also been hard for me to focus and concentrate.","headache , chest pain , dizziness , trouble balance also hard focus concentrate" +5576,Hypertension,"I've been encountering trouble walking, a headache, chest pain, and dizziness. My concentration skills and focus has also been challenging.","encountering trouble walking , headache , chest pain , dizziness concentration skills focus also challenging" +5577,Hypertension,"I've been encountering poor balance, a headache, chest pain, and dizziness. My ability to pay attention and focus has also been problematic.","encountering poor balance , headache , chest pain , dizziness ability pay attention focus also problematic" +5578,Hypertension,"My coordination has been off, and I've been experiencing a headache, chest pain, and dizziness. Additionally, I've had trouble concentrating and focusing.","coordination , experiencing headache , chest pain , dizziness additionally , trouble concentrating focusing" +5579,Hypertension,"My symptoms include a headache, chest pain, dizziness, lack of balance, and trouble concentrating.","symptoms include headache , chest pain , dizziness , lack balance , trouble concentrating" +5580,Hypertension,"I have been experiencing symptoms such as a headache, chest pain, dizziness, loss of balance, and difficulty focusing.","experiencing symptoms headache , chest pain , dizziness , loss balance , difficulty focusing" +5581,Hypertension,"I've been suffering from symptoms including a headache, chest pain, dizziness, losing my balance, and trouble concentrating.","suffering symptoms including headache , chest pain , dizziness , losing balance , trouble concentrating" +5582,Hypertension,"Headache, chest discomfort, dizziness, lack of balance, and difficulty concentrating are some of the symptoms I've been having.","headache , chest discomfort , dizziness , lack balance , difficulty concentrating symptoms" +5583,Hypertension,"Along with a headache and chest pain, I also experienced fainting and balance issues. Additionally, I've discovered that it's hard for me to focus.","along headache chest pain , also experienced fainting balance issues additionally , discovered hard focus" +5584,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. I've also realised that I'm having trouble focusing.","experiencing balance issues , headache , chest pain , dizziness also realised trouble focusing" +5585,Hypertension,"My balance has been off, and I have a headache, chest pain, and dizziness. I've also observed that it's hard for me to concentrate.","balance , headache , chest pain , dizziness also observed hard concentrate" +5586,Hypertension,"I've been experiencing balance issues, chest pain, headaches, and pains. I've been having trouble focusing as well.","experiencing balance issues , chest pain , headaches , pains trouble focusing well" +5587,Hypertension,"I have been experiencing chest pain, dizziness, and a headache that feels like a continual pressure in my forehead.","experiencing chest pain , dizziness , headache feels like continual pressure forehead" +5588,Hypertension,"I have been feeling lightheaded and unsteady on my feet, and have also noticed a decline in my ability to focus and concentrate.","feeling lightheaded unsteady feet , also noticed decline ability focus concentrate" +5589,Hypertension,"I've been experiencing dizziness and shakiness, as well as a loss in my attention span and ability to concentrate.","experiencing dizziness shakiness , well loss attention span ability concentrate" +5590,Hypertension,"I've been experiencing dizziness and anxiousness, as well as a loss in my attention and concentration and ability to concentrate.","experiencing dizziness anxiousness , well loss attention concentration ability concentrate" +5591,Hypertension,"I've had intense aches in my chest, a headache that won't go away, and I've been feeling dizzy and unsteady.","intense aches chest , headache go away , feeling dizzy unsteady" +5592,Hypertension,"I've had intense aches in my chest, a head  pain that refuses to go away, and I've been feeling dizzy and unsteady.","intense aches chest , head pain refuses go away , feeling dizzy unsteady" +5593,Hypertension,"Along with chest pain, dizziness, and a headache that feels like a narrow zone around my head, I have been having a lot of trouble.","along chest pain , dizziness , headache feels like narrow zone around head , lot trouble" +5594,Hypertension,"I have been struggling with a headache that feels like a tight band around my head, along with chest pain and dizziness.","struggling headache feels like tight band around head , along chest pain dizziness" +5595,Hypertension,I've been experiencing balance issues in addition to feeling disoriented and dizzy. My headache has also been present nonstop.,experiencing balance issues addition feeling disoriented dizzy headache also present nonstop +5596,Hypertension,"I have been feeling disoriented and dizzy, and have also had trouble keeping my balance. My headache has been a constant presence as well.","feeling disoriented dizzy , also trouble keeping balance headache constant presence well" +5597,Hypertension,"I've been experiencing balance issues along with feeling dizzy and lightheaded. Additionally, I've seen a drop in my concentration and focus.","experiencing balance issues along feeling dizzy lightheaded additionally , seen drop concentration focus" +5598,Hypertension,"In addition to feeling dizzy and lightheaded, I've been having problems keeping my equilibrium. My capacity to concentrate and focus has also been slipping, I've noticed.","addition feeling dizzy lightheaded , problems keeping equilibrium capacity concentrate focus also slipping , noticed" +5599,Hypertension,"I have been experiencing a headache that feels like a sharp pain in my temples, along with chest pain and dizziness.","experiencing headache feels like sharp pain temples , along chest pain dizziness" +5600,Hypertension,"Along with a chest pain and dizziness, I've had a headache that seems like a sharp pain in my forehead.","along chest pain dizziness , headache seems like sharp pain forehead" +5601,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a walk. It's been hard for me to focus and concentrate since then.","feeling fine day , suddenly developed headache , chest pain , dizziness walk hard focus concentrate since" +5602,Hypertension,"While taking a walk, I suddenly started experiencing headache, chest pain, and dizziness after feeling fine all day. Since then, it has been challenging for me to concentrate and focus.","taking walk , suddenly started experiencing headache , chest pain , dizziness feeling fine day since , challenging concentrate focus" +5603,Hypertension,"I woke up this morning with a headache and chest pain, and as the day has gone on, I've also been feeling dizzy and unsteady on my feet","woke morning headache chest pain , day gone , also feeling dizzy unsteady feet" +5604,Hypertension,"I had a headache and chest pain this morning, and as the day wore on, I also started to feel unsteady and unstable on my feet.","headache chest pain morning , day wore , also started feel unsteady unstable feet" +5605,Hypertension,"I have been dealing with a headache and chest pain for a few days now, but today the dizziness and loss of balance became much worse.","dealing headache chest pain days , today dizziness loss balance became much worse" +5606,Hypertension,"For a few days now, I've been suffering from a headache and chest pain, but today the dizziness and lack of balance got considerably worse.","days , suffering headache chest pain , today dizziness lack balance got considerably worse" +5607,Hypertension,"I was at work when I started feeling a headache, chest pain, and dizziness. It's been hard for me to concentrate and focus on my tasks since then.","work started feeling headache , chest pain , dizziness hard concentrate focus tasks since" +5608,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was at work. Since then, it has been challenging for me to focus and concentrate on my work.","first experienced headache , chest pain , lightheadedness , work since , challenging focus concentrate work" +5609,Hypertension,"I was in the middle of a workout when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to maintain my balance since then","middle workout suddenly developed headache , chest pain , dizziness hard maintain balance since" +5610,Hypertension,"I instantly experienced a headache, chest pain, and dizziness while working out. Since then, it has been challenging for me to keep my balance.","instantly experienced headache , chest pain , dizziness working since , challenging keep balance" +5611,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while driving home from work. It's been hard for me to focus and concentrate on the road since then.","feeling fine day , suddenly developed headache , chest pain , dizziness driving home work hard focus concentrate road since" +5612,Hypertension,"I felt fine all day, but when I was driving home from work, I suddenly started to have headache, chest discomfort, and dizziness. Since then, it has been challenging for me to concentrate and focus while driving.","felt fine day , driving home work , suddenly started headache , chest discomfort , dizziness since , challenging concentrate focus driving" +5613,Hypertension,"I was out shopping when I started feeling a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my tasks since then.","shopping started feeling headache , chest pain , dizziness hard focus concentrate tasks since" +5614,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was out shopping. Since then, it has been difficult for me to concentrate on my work.","first experienced headache , chest pain , lightheadedness , shopping since , difficult concentrate work" +5615,Hypertension,"I woke up this morning feeling fine, but as the day went on, I started experiencing a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my work since then.","woke morning feeling fine , day went , started experiencing headache , chest pain , dizziness hard focus concentrate work since" +5616,Hypertension,"I felt good when I woke up this morning, but as the day wore on, I began to feel headachey, sick to my stomach, and dizzy. Since then, it has been challenging for me to concentrate and focus on my work.","felt good woke morning , day wore , began feel headachey , sick stomach , dizzy since , challenging concentrate focus work" +5617,Hypertension,"I was in the middle of a meeting when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on the discussion since then.","middle meeting suddenly developed headache , chest pain , dizziness hard focus concentrate discussion since" +5618,Hypertension,"I suddenly experienced a headache, chest pain, and dizziness in the middle of a conference. Since then, it has been challenging for me to concentrate and focus on the topic.","suddenly experienced headache , chest pain , dizziness middle conference since , challenging concentrate focus topic" +5619,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a run. It's been hard for me to maintain my balance since then","feeling fine day , suddenly developed headache , chest pain , dizziness run hard maintain balance since" +5620,Migraine,"I have been experiencing acidity and indigestion after meals, as well as frequent headaches and blurred vision.","experiencing acidity indigestion meals , well frequent headaches blurred vision" +5621,Migraine,"I've been getting frequent headaches and hazy vision, as well as acid reflux and indigestion after meals.","getting frequent headaches hazy vision , well acid reflux indigestion meals" +5622,Migraine,"I have been having trouble with my vision, seeing things as distorted and experiencing visual disturbances.","trouble vision , seeing things distorted experiencing visual disturbances" +5623,Migraine,"I've been suffering visual disruptions, seeing things as distorted, and eyesight problems.","suffering visual disruptions , seeing things distorted , eyesight problems" +5624,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties.","facing visual disruptions , seeing things distorted , eyesight difficulties" +5625,Migraine,"I have been feeling excessively hungry, even after eating, and have had a stiff neck.","feeling excessively hungry , even eating , stiff neck" +5626,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties.","facing visual disruptions , seeing things distorted , eyesight difficulties" +5627,Migraine,"I've been grumpy and gloomy lately, and I've also noticed a change in my vision.","grumpy gloomy lately , also noticed change vision" +5628,Migraine,"I have been feeling depressed and irritable, and have noticed a change in my vision.","feeling depressed irritable , noticed change vision" +5629,Migraine,"I've been irritated and depressed lately, and I've also noticed a change in my vision.","irritated depressed lately , also noticed change vision" +5630,Migraine,"Along with recurrent headaches and blurred vision, I suffer acid reflux and trouble digesting my food.","along recurrent headaches blurred vision , suffer acid reflux trouble digesting food" +5631,Migraine,"I have been experiencing acid reflux and difficulty digesting my food, along with regular headaches and impaired vision","experiencing acid reflux difficulty digesting food , along regular headaches impaired vision" +5632,Migraine,"I have been feeling hungry all the time and have had a sore neck, as well as problems with my vision.","feeling hungry time sore neck , well problems vision" +5633,Migraine,"In addition to having a stiff neck and eye issues, I have been always hungry.","addition stiff neck eye issues , always hungry" +5634,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance" +5635,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux" +5636,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been suffering indigestion, headaches, blurred vision, and stomach problems.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also suffering indigestion , headaches , blurred vision , stomach problems" +5637,Migraine,"I have been suffering from acid reflux, indigestion, frequent headaches, and impaired vision, as well as excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , frequent headaches , impaired vision , well excessive hunger , sore neck , depression , irritability , visual disturbance" +5638,Migraine,"Along with increased hunger, a sore neck, melancholy, impatience, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and blurred eyesight.","along increased hunger , sore neck , melancholy , impatience , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , blurred eyesight" +5639,Migraine,"Together with increased hunger, a sore neck, anxiety, irritation, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and impaired eyesight.","together increased hunger , sore neck , anxiety , irritation , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , impaired eyesight" +5640,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as regular headaches and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing digestive issues , including acidity indigestion , well regular headaches distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5641,Migraine,"In addition to recurrent headaches and blurred vision, increased appetite, a stiff neck, sadness, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity.","addition recurrent headaches blurred vision , increased appetite , stiff neck , sadness , irritability , visual disturbance , stomach problems , including indigestion acidity" +5642,Migraine,"In add to frequent headaches and blurred vision, increased appetite, a stiff neck, anxiety, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity.","add frequent headaches blurred vision , increased appetite , stiff neck , anxiety , irritability , visual disturbance , stomach problems , including indigestion acidity" +5643,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5644,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been experiencing blurred and distorted vision.","along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also experiencing blurred distorted vision" +5645,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been feeling blurred and distorted vision.","along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also feeling blurred distorted vision" +5646,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as frequent headaches and impaired vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance","experiencing digestive issues , including acidity indigestion , well frequent headaches impaired vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5647,Migraine,"Acidity and indigestion are among the digestive problems I've been having, along with regular headaches, blurred vision, increased hunger, stiff neck, sadness, impatience, and visual disruption.","acidity indigestion among digestive problems , along regular headaches , blurred vision , increased hunger , stiff neck , sadness , impatience , visual disruption" +5648,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , regular headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5649,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and regular headaches.","along distorted eyesight , excessive appetite , painful neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , regular headaches" +5650,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, anxiety, irritability, and regular headaches, I have also been battling acid reflux, indigestion, and regular headaches.","along distorted eyesight , excessive appetite , painful neck , anxiety , irritability , regular headaches , also battling acid reflux , indigestion , regular headaches" +5651,Migraine,"I have been experiencing acidity, indigestion, and frequent headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing acidity , indigestion , frequent headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5652,Migraine,"Stomach acid, indigestion, frequent headaches, hazy and distorted vision, increased appetite, stiff neck, depression, irritation, and visual distortion have all been bothering me.","stomach acid , indigestion , frequent headaches , hazy distorted vision , increased appetite , stiff neck , depression , irritation , visual distortion bothering" +5653,Migraine,"I have been struggling with digestive issues, including acid reflux and indigestion, as well as regular headaches and impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance","struggling digestive issues , including acid reflux indigestion , well regular headaches impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5654,Migraine,"I have been experiencing frequent headaches, blurred vision, excessive appetite, a sore neck, sadness, irritability, and digestive problems including indigestion and acid reflux.","experiencing frequent headaches , blurred vision , excessive appetite , sore neck , sadness , irritability , digestive problems including indigestion acid reflux" +5655,Migraine,"I have been enduring frequent headaches, blurred vision, excessive appetite, a sore neck, anxiety, irritability, and digestive difficulties including indigestion and acid reflux.","enduring frequent headaches , blurred vision , excessive appetite , sore neck , anxiety , irritability , digestive difficulties including indigestion acid reflux" +5656,Migraine,"I have been experiencing acidity, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance","experiencing acidity , indigestion , headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5657,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion.","along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion" +5658,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion.","along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion" +5659,Migraine,"I have been suffering from acid reflux, indigestion, and frequent headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , frequent headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5660,Migraine,"Along with impaired eyesight, increased appetite, a sore neck, melancholy, impatience, and regular headaches, I've also been experiencing heartburn, acid reflux, and indigestion.","along impaired eyesight , increased appetite , sore neck , melancholy , impatience , regular headaches , also experiencing heartburn , acid reflux , indigestion" +5661,Migraine,"Along with impaired seeing, excessive eating, a sore neck, melancholy, impatience, and constant headaches, I've also been fighting heartburn, acid reflux, and indigestion.","along impaired seeing , excessive eating , sore neck , melancholy , impatience , constant headaches , also fighting heartburn , acid reflux , indigestion" +5662,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort" +5663,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been bothering me and interfering with my usual activities.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms bothering interfering usual activities" +5664,Migraine,"As well as with excessive appetite, a tense neck, depression, irritability, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been disturbing me and interfering with my usual activities.","well excessive appetite , tense neck , depression , irritability , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms disturbing interfering usual activities" +5665,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of distress and making it difficult to go about my daily activities.","suffering acid reflux , indigestion , regular headaches , well impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot distress making difficult go daily activities" +5666,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent migraines. My regular activities have been made more challenging by these symptoms, which have been causing me a great deal of distress.","along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent migraines regular activities made challenging symptoms , causing great deal distress" +5667,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent dizziness. My regular activities have been made more tough by these symptoms, which have been causing me a great deal of distress.","along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent dizziness regular activities made tough symptoms , causing great deal distress" +5668,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort" +5669,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of problems and making it difficult to concentrate and function normally.","struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot problems making difficult concentrate function normally" +5670,Cervical spondylosis,"I have been experiencing severe back pain, a persistent cough, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance.","experiencing severe back pain , persistent cough , weakness limbs neck also hurts feeling dizzy balance" +5671,Cervical spondylosis,"Along with a chronic cough and limb weakness, I've been dealing with excruciating back discomfort. I've been experiencing neck pain as well as vertigo and instability.","along chronic cough limb weakness , dealing excruciating back discomfort experiencing neck pain well vertigo instability" +5672,Cervical spondylosis,"I have been suffering from back pain, a hacking cough, and weakness in my arms and legs. Additionally, my neck hurts and I have had issues with dizziness and maintaining my balance.","suffering back pain , hacking cough , weakness arms legs additionally , neck hurts issues dizziness maintaining balance" +5673,Cervical spondylosis,"Back pain, a hacking cough, and numbness in my arms and legs have been bothering me. In addition, my neck hurts, and I've having trouble staying balanced and without getting lightheaded.","back pain , hacking cough , numbness arms legs bothering addition , neck hurts , trouble staying balanced without getting lightheaded" +5674,Cervical spondylosis,"Back pain, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy.","back pain , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy" +5675,Cervical spondylosis,"Pain typically, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy.","pain typically , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy" +5676,Cervical spondylosis,"I have been struggling with back pain, a cough that won't go away, and weakness in my extremities. My neck hurts and I have had problems with dizziness and losing my balance.","struggling back pain , cough go away , weakness extremities neck hurts problems dizziness losing balance" +5677,Cervical spondylosis,"Back discomfort, a persistent cough, and weakness in my limbs have been bothering me. I have issues with vertigo and losing my equilibrium, and my neck hurts.","back discomfort , persistent cough , weakness limbs bothering issues vertigo losing equilibrium , neck hurts" +5678,Cervical spondylosis,"Back discomfort, a breathing difficulty, and weakness in my limbs have been hurting me. I have issues with vertigo and losing my balance, and my neck hurts.","back discomfort , breathing difficulty , weakness limbs hurting issues vertigo losing balance , neck hurts" +5679,Cervical spondylosis,"I have been experiencing intense back pain, a dry cough, and a lack of strength in my limbs. My neck hurts and I have been feeling dizzy and unsteady on my feet.","experiencing intense back pain , dry cough , lack strength limbs neck hurts feeling dizzy unsteady feet" +5680,Cervical spondylosis,"I've been struggling with severe back pain, a dry cough, and limb weakness. I've been feeling lightheaded and wobbly on my feet, and my neck hurts.","struggling severe back pain , dry cough , limb weakness feeling lightheaded wobbly feet , neck hurts" +5681,Cervical spondylosis,"I've been battling with back pain, a dry cough, and limb weakness. I've been feeling dizzy and unstable on my feet, and my neck hurts.","battling back pain , dry cough , limb weakness feeling dizzy unstable feet , neck hurts" +5682,Cervical spondylosis,"I've been struggling with back pain, a chronic cough, and limb weakness. I've been feeling disoriented and weak on my feet, and my neck hurts.","struggling back pain , chronic cough , limb weakness feeling disoriented weak feet , neck hurts" +5683,Cervical spondylosis,"I have been suffering from back pain, a productive cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and balance.","suffering back pain , productive cough , weakness limbs neck sore issues dizziness balance" +5684,Cervical spondylosis,"Back pain, a productive cough, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck hurts.","back pain , productive cough , limb weakness bothering balance dizzy concerns , neck hurts" +5685,Cervical spondylosis,"Backache, a difficulty breathing, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck suffers.","backache , difficulty breathing , limb weakness bothering balance dizzy concerns , neck suffers" +5686,Cervical spondylosis,"I have been struggling with back pain, a persistent cough, and weakness in my muscles. My neck hurts and I have had problems with dizziness and loss of balance.","struggling back pain , persistent cough , weakness muscles neck hurts problems dizziness loss balance" +5687,Cervical spondylosis,"Back pain, a lingering cough, and muscle weakness have been bothering me. I have issues with dizziness and losing my equilibrium, and my neck hurts.","back pain , lingering cough , muscle weakness bothering issues dizziness losing equilibrium , neck hurts" +5688,Cervical spondylosis,"Back pain, a chronic cough, and muscle weakness have been bothering me. I have concerns with dizziness and losing my position, and my neck hurts.","back pain , chronic cough , muscle weakness bothering concerns dizziness losing position , neck hurts" +5689,Cervical spondylosis,"I have been experiencing severe back pain, a cough that comes and goes, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance.","experiencing severe back pain , cough comes goes , weakness limbs neck also hurts feeling dizzy balance" +5690,Cervical spondylosis,"I've been having intermittent coughing fits, significant back pain, and limb weakness. I've been experiencing neck pain as well as a dizzy and unsteady sensation.","intermittent coughing fits , significant back pain , limb weakness experiencing neck pain well dizzy unsteady sensation" +5691,Cervical spondylosis,"I've been having periodic coughing fits, terrible back pain, and limb weakness. I've been feeling neck pain as well as a dizzy and unstable sensation.","periodic coughing fits , terrible back pain , limb weakness feeling neck pain well dizzy unstable sensation" +5692,Cervical spondylosis,"I have been dealing with back pain, a cough that won't go away, and weakness in my arms and legs. My neck hurts and I have had problems with dizziness and maintaining my balance.","dealing back pain , cough go away , weakness arms legs neck hurts problems dizziness maintaining balance" +5693,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts.","back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts" +5694,Cervical spondylosis,"Back pain, a dry cough, and stiffness in my arms and legs have been bothering me. I've had problems staying balanced and experience dizziness, and my neck hurts.","back pain , dry cough , stiffness arms legs bothering problems staying balanced experience dizziness , neck hurts" +5695,Cervical spondylosis,"I've been experiencing back pain, a persistent cough, and numbness in my arms and legs. I've been having trouble staying balanced and managing my vertigo, and my neck hurts.","experiencing back pain , persistent cough , numbness arms legs trouble staying balanced managing vertigo , neck hurts" +5696,Cervical spondylosis,"My arms and legs have been weak, and I have been suffering from back pain and a persistent cough. In addition to experiencing neck pain and balance issues, I also suffer dizziness.","arms legs weak , suffering back pain persistent cough addition experiencing neck pain balance issues , also suffer dizziness" +5697,Cervical spondylosis,"Back pain, a persistent cough, and arm and leg weakness have been bothering me. I've been experiencing neck pain, balance issues, and dizziness.","back pain , persistent cough , arm leg weakness bothering experiencing neck pain , balance issues , dizziness" +5698,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts.","back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts" +5699,Cervical spondylosis,"I have been suffering from back pain, a dry cough, and a lack of strength in my muscles. My neck is sore and I have been feeling dizzy and unsteady on my feet","suffering back pain , dry cough , lack strength muscles neck sore feeling dizzy unsteady feet" +5700,Cervical spondylosis,"Back pain, a dry cough, and a lack of muscle strength have been bothering me. My neck hurts, and I've been feeling lightheaded and shaky.","back pain , dry cough , lack muscle strength bothering neck hurts , feeling lightheaded shaky" +5701,Cervical spondylosis,"My muscles lack strength, and I have been experiencing back pain and a dry cough. I've been experiencing neck pain and feeling lightheaded and unstable on my feet.","muscles lack strength , experiencing back pain dry cough experiencing neck pain feeling lightheaded unstable feet" +5702,Cervical spondylosis,"My muscles haven't been very strong, and I've been experiencing back ache. I've been feeling lightheaded and wobbly on my feet, and my neck hurts.","muscles strong , experiencing back ache feeling lightheaded wobbly feet , neck hurts" +5703,Cervical spondylosis,"I've been experiencing back pain, a dry cough, and muscle weakness. I've been experiencing neck pain, feeling lightheaded, and having trouble standing still.","experiencing back pain , dry cough , muscle weakness experiencing neck pain , feeling lightheaded , trouble standing still" +5704,Cervical spondylosis,"I have been struggling with intense back pain, a chronic cough, and weakness in my arms and legs. My neck is sore and I have had problems with dizziness and loss of balance.","struggling intense back pain , chronic cough , weakness arms legs neck sore problems dizziness loss balance" +5705,Cervical spondylosis,"I've had terrible back pain, a persistent cough, and weakness in my arms and legs. I have issues with dizziness and balance loss, and my neck hurts.","terrible back pain , persistent cough , weakness arms legs issues dizziness balance loss , neck hurts" +5706,Cervical spondylosis,"I've been suffering from severe back pain, a persistent cough, and numbness in my arms and legs. I've been experiencing issues with vertigo and balance issues, and my neck hurts.","suffering severe back pain , persistent cough , numbness arms legs experiencing issues vertigo balance issues , neck hurts" +5707,Cervical spondylosis,"Along with a persistent cough, weakness in my arms and legs, and severe back pain, I've been having a lot of trouble. I've experienced issues with vertigo and balance loss, and my neck is hurting.","along persistent cough , weakness arms legs , severe back pain , lot trouble experienced issues vertigo balance loss , neck hurting" +5708,Cervical spondylosis,"I have been experiencing severe back pain, a cough that produces phlegm, and weakness in my muscles. My neck also hurts and I have been feeling dizzy and unsteady on my feet.","experiencing severe back pain , cough produces phlegm , weakness muscles neck also hurts feeling dizzy unsteady feet" +5709,Cervical spondylosis,"In addition to having excruciating back pain, I've also been coughing up mucus and feeling weak all over. I've been feeling lightheaded and unstable on my feet, and my neck hurts as well.","addition excruciating back pain , also coughing mucus feeling weak feeling lightheaded unstable feet , neck hurts well" +5710,Cervical spondylosis,"My muscles have been quite weak, and I've been coughing up phlegm along with significant back discomfort. In addition to feeling weak and disoriented, my neck has been hurting.","muscles quite weak , coughing phlegm along significant back discomfort addition feeling weak disoriented , neck hurting" +5711,Cervical spondylosis,"Along with a phlegmy cough and muscle weakness, I've been dealing with excruciating back pain. In addition to feeling woozy and shaky on my feet, my neck has been hurting.","along phlegmy cough muscle weakness , dealing excruciating back pain addition feeling woozy shaky feet , neck hurting" +5712,Cervical spondylosis,"I have been dealing with back pain, a persistent cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and loss of balance.","dealing back pain , persistent cough , weakness limbs neck sore issues dizziness loss balance" +5713,Cervical spondylosis,"Back ache, a chronic cough, and limb weakness have been bothering me. I have troubles with disorientation and balance loss, and my neck hurts.","back ache , chronic cough , limb weakness bothering troubles disorientation balance loss , neck hurts" +5714,Cervical spondylosis,"I've had back pain, a cough that won't go away, and limb weakness. I've been experiencing neck pain, instability, and balance concerns.","back pain , cough go away , limb weakness experiencing neck pain , instability , balance concerns" +5715,Cervical spondylosis,"I have been suffering from back pain, a chronic cough, and weakness in my arms and legs. My neck hurts and I have been feeling dizzy and off balance","suffering back pain , chronic cough , weakness arms legs neck hurts feeling dizzy balance" +5716,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. My neck hurts, and I've been feeling lightheaded and unsteady.","back pain , persistent cough , numbness arms legs bothering neck hurts , feeling lightheaded unsteady" +5717,Cervical spondylosis,"I've had back pain, a persistent cough, and weakness in my arms and legs. My neck hurts, and I've been feeling off-balance and woozy.","back pain , persistent cough , weakness arms legs neck hurts , feeling balance woozy" +5718,Cervical spondylosis,"I have been struggling with back pain, a productive cough, and weakness in my muscles. My neck is sore and I have had problems with dizziness and unsteady balance.","struggling back pain , productive cough , weakness muscles neck sore problems dizziness unsteady balance" +5719,Cervical spondylosis,"Back pain, a productive cough, and muscle weakness have been bothering me. I have issues with dizziness and uneven balance, and my neck hurts.","back pain , productive cough , muscle weakness bothering issues dizziness uneven balance , neck hurts" +5720,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5721,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5722,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach has been hurting.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow additionally , stomach hurting" +5723,Jaundice,"Extreme itchiness, sickness, and exhaustion have all been plaguing me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","extreme itchiness , sickness , exhaustion plaguing addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5724,Jaundice,I have been having severe itching and vomiting. I am also very tired and have lost weight. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain,severe itching vomiting also tired lost weight fever high skin turned yellow urine dark experiencing abdominal pain +5725,Jaundice,"I've been experiencing intense itching and nausea. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","experiencing intense itching nausea lost weight also really exhausted skin become yellow , severe fever dark urine , stomach pain" +5726,Jaundice,"I've been throwing up and experiencing intense itching. Along with losing weight, I'm also really exhausted. My skin has become yellow, and my fever is really high. I've been having stomach pain and my pee is black.","throwing experiencing intense itching along losing weight , also really exhausted skin become yellow , fever really high stomach pain pee black" +5727,Jaundice,"Strong itchiness and nausea have been bothering me. I have also lost weight and am really exhausted. I have a high fever, and my skin is becoming yellow. In addition to feeling stomach ache, my pee is black.","strong itchiness nausea bothering also lost weight really exhausted high fever , skin becoming yellow addition feeling stomach ache , pee black" +5728,Jaundice,I've been experiencing terrible itching and nausea. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. I have dark urine and stomach ache.,experiencing terrible itching nausea lost weight also really exhausted skin become yellow severe temperature dark urine stomach ache +5729,Jaundice,I have been feeling itchy and have been vomiting. I am also very fatigued and have lost weight. My fever is high and my skin has become yellow. My urine is dark and I have abdominal pain,feeling itchy vomiting also fatigued lost weight fever high skin become yellow urine dark abdominal pain +5730,Jaundice,"I've been feeling scratchy and throwing up. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have stomach ache and black urine.","feeling scratchy throwing lost weight also really exhausted skin become yellow , severe fever stomach ache black urine" +5731,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. Additionally, I get stomach ache and dark urine.","itchy throwing along losing weight , also really exhausted skin turned yellow , fever high additionally , get stomach ache dark urine" +5732,Jaundice,"I've had a scratchy stomach and been throwing up. Aside from losing weight, I am also really exhausted. I have a high fever and yellow skin. Besides having stomach ache, my pee is black.","scratchy stomach throwing aside losing weight , also really exhausted high fever yellow skin besides stomach ache , pee black" +5733,Jaundice,"I've been itchy and throwing up. In addition, I have lost weight and feel really exhausted. My skin has become yellow and I have a severe temperature. I have abdominal ache and black urine.","itchy throwing addition , lost weight feel really exhausted skin become yellow severe temperature abdominal ache black urine" +5734,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5735,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain","suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5736,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having","feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain" +5737,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5738,Jaundice,"I've had nausea, vomiting, and exhaustion. Additionally, I've lost weight and have a temperature. My urine is black and my skin has turned yellow. I've also been having stomach pain.","nausea , vomiting , exhaustion additionally , lost weight temperature urine black skin turned yellow also stomach pain" +5739,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well" +5740,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5741,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5742,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5743,Jaundice,"I've been constantly feeling scratchy, sick, and tired out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Furthermore, I have been experiencing stomach pain.","constantly feeling scratchy , sick , tired addition , lost weight temperature urine dark , skin turned yellow furthermore , experiencing stomach pain" +5744,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain" +5745,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain.","severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5746,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain.","feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain" +5747,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts.","experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts" +5748,Jaundice,"Extreme itchiness, nausea, and exhaustion have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present.","extreme itchiness , nausea , exhaustion bothering addition , developed fever lost weight pee black , developed yellow rash ache stomach also present" +5749,Jaundice,"Extreme itchiness, nausea, and fatigue have been troubling me. In moreover, I experienced a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present.","extreme itchiness , nausea , fatigue troubling moreover , experienced fever lost weight pee black , developed yellow rash ache stomach also present" +5750,Jaundice,I have been feeling itchy and have been vomiting. I am also very tired and have lost weight. My fever is high and my skin has become yellow. I have been experiencing abdominal pain as well.,feeling itchy vomiting also tired lost weight fever high skin become yellow experiencing abdominal pain well +5751,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. My stomach has also been hurting recently.","itchy throwing along losing weight , also really exhausted skin turned yellow , fever high stomach also hurting recently" +5752,Jaundice,"I've had a scratchy stomach and been throwing up. I have also lost weight and am really exhausted. I have a high fever and yellow skin. As well as you, I have been having stomach pain.","scratchy stomach throwing also lost weight really exhausted high fever yellow skin well , stomach pain" +5753,Jaundice,I've been itchy and throwing up. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. My stomach has also been hurting.,itchy throwing lost weight also really exhausted skin become yellow severe temperature stomach also hurting +5754,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5755,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain","suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5756,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having","feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain" +5757,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5758,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well" +5759,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5760,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain" +5761,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain.","severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5762,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain.","feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain" +5763,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts.","experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts" +5764,Jaundice,"I have been experiencing itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain.","experiencing itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5765,Jaundice,"I've been losing weight and experiencing nausea, itching, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight experiencing nausea , itching , exhaustion skin become yellow , severe fever dark urine , stomach pain" +5766,Jaundice,"I have been suffering from intense itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain","suffering intense itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5767,Jaundice,"I've been losing weight and experiencing severe itching, nausea, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight experiencing severe itching , nausea , exhaustion skin become yellow , severe fever dark urine , stomach pain" +5768,Jaundice,"I have been experiencing severe itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain","experiencing severe itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5769,Jaundice,"I've been losing weight, feeling really fatigued, and throwing up a lot. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight , feeling really fatigued , throwing lot skin become yellow , severe fever dark urine , stomach pain" +5770,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. I feel nauseous and my muscles are really sore","experiencing severe itching , chills , vomiting , high fever also sweating lot headache feel nauseous muscles really sore" +5771,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot.","high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot" +5772,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot.","high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot" +5773,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. My muscles are quite sore, and I feel sick.","strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot muscles quite sore , feel sick" +5774,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, My muscles hurt a lot, and I feel queasy.","along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , muscles hurt lot , feel queasy" +5775,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. My muscles hurt a lot, and I feel sick.","high fever , chills , intense itching addition , headache perspiring lot muscles hurt lot , feel sick" +5776,Malaria,"I've had intense itching all over my body, accompanied by chills and vomiting. My fever is really high and I've been sweating excessively. I also have a headache and feel nauseous. My muscles are really painful.","intense itching body , accompanied chills vomiting fever really high sweating excessively also headache feel nauseous muscles really painful" +5777,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort.","experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort" +5778,Malaria,"Along with severe body itchiness, chills, and nausea, I've been experiencing. I've been severely perspiring and have a very high fever. I'm feeling queasy and also have a headache. Really hurting muscles are me.","along severe body itchiness , chills , nausea , experiencing severely perspiring high fever feeling queasy also headache really hurting muscles" +5779,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort.","experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort" +5780,Malaria,"I've been experiencing severe body itchiness, along with chills and nausea. I've been perspiring a lot and have an extremely high fever. I feel sick to my stomach and have a headache. My muscles are hurting a lot.","experiencing severe body itchiness , along chills nausea perspiring lot extremely high fever feel sick stomach headache muscles hurting lot" +5781,Malaria,"I'm suffering from intense itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been bothering me.","suffering intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also bothering" +5782,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness" +5783,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache" +5784,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been bothered by nausea as well as muscle ache.","strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot bothered nausea well muscle ache" +5785,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and have been perspiring a lot. I've also been bothered by nausea and muscular ache.","high fever , chills , severe itching addition , headache perspiring lot also bothered nausea muscular ache" +5786,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness" +5787,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache" +5788,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me discomfort.","experiencing severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing discomfort" +5789,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache" +5790,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache.","strong itchiness , chills , nausea , high temperature plaguing along headache , also perspiring lot also bothered nausea muscle ache" +5791,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. I have a headache and am also perspiring a lot. I've been uncomfortable from nausea and muscle ache, too.","along intense scratching , chills , nausea , high fever , also feeling really unwell headache also perspiring lot uncomfortable nausea muscle ache ," +5792,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been suffering from nausea as well as muscle ache.","high fever , chills , intense itching addition , headache perspiring lot suffering nausea well muscle ache" +5793,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache" +5794,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable.","intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable" +5795,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles.","experiencing lot scratching , chills , vomiting , fever also headache perspiring lot terrible nausea soreness muscles" +5796,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache.","experienced severe itching , chills , nausea , high fever besides headache , also perspiring lot terrible nausea muscle ache" +5797,Malaria,"I have a high fever, chills, and severe itching. Along with my headache and excessive sweating, I've been terrible with nausea and muscle ache.","high fever , chills , severe itching along headache excessive sweating , terrible nausea muscle ache" +5798,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and am perspiring a lot. I've been feeling awful with nausea and muscle ache.","high fever , chills , severe itching addition , headache perspiring lot feeling awful nausea muscle ache" +5799,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been causing me a lot of discomfort.","experiencing severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain causing lot discomfort" +5800,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I've been really uncomfortable lately from nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot really uncomfortable lately nausea muscle ache" +5801,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. I've been suffering from severe muscle pain and nausea.","strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot suffering severe muscle pain nausea" +5802,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, I've been suffering from severe muscle pain and nausea.","along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , suffering severe muscle pain nausea" +5803,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been in a lot of agony from muscle ache and nausea.","high fever , chills , intense itching addition , headache perspiring lot lot agony muscle ache nausea" +5804,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been bothering me.","intense itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also bothering" +5805,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","experiencing lot scratching , chills , vomiting , fever also headache perspiring lot additionally hurting nausea muscle soreness" +5806,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache.","experienced severe itching , chills , nausea , high fever along headache , also perspiring lot also bothered nausea muscle ache" +5807,Malaria,"I have a high fever, chills, and severe itching. I have a headache and am also perspiring a lot. I've been bothered by nausea as well as muscle ache.","high fever , chills , severe itching headache also perspiring lot bothered nausea well muscle ache" +5808,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. In addition, I have a headache and am perspiring a lot. I've also been bothered by nausea and muscular ache.","experiencing severe itching , chills , vomiting , high fever addition , headache perspiring lot also bothered nausea muscular ache" +5809,Malaria,"I'm suffering from severe itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been causing me discomfort.","suffering severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also causing discomfort" +5810,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache" +5811,Malaria,"I have a high fever, severe itching, chills, and vomiting. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high fever , severe itching , chills , vomiting addition , perspiring lot headache also bothered nausea muscle ache" +5812,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been uncomfortable from nausea and muscle ache, too.","strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot uncomfortable nausea muscle ache ," +5813,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. In addition, I have a headache and have been perspiring a lot. I've been suffering from nausea as well as muscle ache.","strong itchiness , chills , nausea , high fever part current condition addition , headache perspiring lot suffering nausea well muscle ache" +5814,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache" +5815,Malaria,"I've been experiencing intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable.","experiencing intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable" +5816,Malaria,"Intense scratching, chills, nausea, and a high temperature have been plaguing me. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles.","intense scratching , chills , nausea , high temperature plaguing also headache perspiring lot terrible nausea soreness muscles" +5817,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache.","along high fever , chills , vomiting , severe itching besides headache , also perspiring lot terrible nausea muscle ache" +5818,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Along with my headache and excessive sweating, I've been feeling awful with nausea and muscle ache.","along high fever , chills , vomiting , severe itching along headache excessive sweating , feeling awful nausea muscle ache" +5819,Malaria,"I've had severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me a lot of discomfort.","severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing lot discomfort" +5820,urinary tract infection,"Frequent urges to urinate with little output, pain during urination, cloudy or bloody urine, strong or foul-smelling urine, pelvic pain, low fever, nausea and vomiting","frequent urges urinate little output , pain urination , cloudy bloody urine , strong foul smelling urine , pelvic pain , low fever , nausea vomiting" +5821,urinary tract infection,"I get frequent urges to urinate at night with little output, and a lot of pain during urination. The urine is coludy and bloody and sometime foul smelling, and I get nauseous","get frequent urges urinate night little output , lot pain urination urine coludy bloody sometime foul smelling , get nauseous" +5822,urinary tract infection,I get a burning sensation when I pee. Sometimes a lot of pain and foul smelling urine. I have been getting more urges to urinate at night,get burning sensation pee sometimes lot pain foul smelling urine getting urges urinate night +5823,urinary tract infection,I have been getting blood in my pee. Sometimes I get nauseous while peeing. This often almost coincides with me having a high temperature,getting blood pee sometimes get nauseous peeing often almost coincides high temperature +5824,urinary tract infection,"My pee looks cloudy and has storng and foul smell. I frequently get an urge to urinate at night, and have been getting high temperatures since these symptoms strted showing","pee looks cloudy storng foul smell frequently get urge urinate night , getting high temperatures since symptoms strted showing" +5825,urinary tract infection,"I have pain in my abdomen, and often get feverish. I have sudden and strong urges to pee. The pain is almost constant, and often increases at night time. My pee almost always has a foul smell","pain abdomen , often get feverish sudden strong urges pee pain almost constant , often increases night time pee almost always foul smell" +5826,urinary tract infection,"I have been frequently getting sudden strong urges to pee. There is blood in my pee sometimes and it is very foul smelling. I think I have an infection, what do I do?","frequently getting sudden strong urges pee blood pee sometimes foul smelling think infection ," +5827,urinary tract infection,"I get blood in my pee sometimes and sometimes get nauseous whie peeing. I also have a bad smell in my pee and sometimes get high temperatures at nights, help me","get blood pee sometimes sometimes get nauseous whie peeing also bad smell pee sometimes get high temperatures nights , help" +5828,urinary tract infection,"I have pain in my lower abdomen, and get a buring sensation in my pee. I also have been getting low temperatures since I started to get these other symptoms. I have been weak because of this","pain lower abdomen , get buring sensation pee also getting low temperatures since started get symptoms weak" +5829,urinary tract infection,There is blood in my urine and I have a low fever. My head hurts almost all the time and I get very strong uncontrollable urges to pee. I have been having pain in lower back also ,blood urine low fever head hurts almost time get strong uncontrollable urges pee pain lower back also +5830,urinary tract infection,I have been having low temperatures and bloody pee since some days now. My head hurts like crazy and pee also smells very foul. I have almost no control on my peeing and get very sudden urges,low temperatures bloody pee since days head hurts like crazy pee also smells foul almost control peeing get sudden urges +5831,urinary tract infection,I have pain near my pelvic region and vomit a lot. Sometimes there is blood in my pee and there is almost a very foul smell in my urine.I sometimes get headches and have trouble sleeping due to this,pain near pelvic region vomit lot sometimes blood pee almost foul smell urine sometimes get headches trouble sleeping due +5832,urinary tract infection,"I have to constantly to go the bathroom to relieve myself, but cant seem to empty my bladder. I get these very strong and uncontrollable urges to pee and sometimes get dark or bloody pee","constantly go bathroom relieve , cant seem empty bladder get strong uncontrollable urges pee sometimes get dark bloody pee" +5833,urinary tract infection,I been having very low temperatues and a very foul smelling pee. The area near my kidneys hurt a lot and I cant seem to hold my pee. I often get these uncontrollable urges,low temperatues foul smelling pee area near kidneys hurt lot cant seem hold pee often get uncontrollable urges +5834,urinary tract infection,"I have to go the bathroom all the time, but the urine output is very low often just a few drops. My stomach hurts a lot and and cant seem to be able to control my urges to pee","go bathroom time , urine output low often drops stomach hurts lot cant seem able control urges pee" +5835,urinary tract infection,My is pee is dark and often bloody and often has a very unfathomable smell. I have been having temperature fluctuations pretty frequently and often am not able to sleep at night because of this,pee dark often bloody often unfathomable smell temperature fluctuations pretty frequently often able sleep night +5836,urinary tract infection,I have been having pain in my bladder and have been getting ,pain bladder getting +5837,urinary tract infection,I have been urinating with blood in it. I occasionally feel queasy when urinating. I frequently almost have a fever at the same time.,urinating blood occasionally feel queasy urinating frequently almost fever time +5838,urinary tract infection,"My pee has a strong, unpleasant scent and a hazy appearance. Since these symptoms started appearing, I regularly feel the desire to urinate at night and have been experiencing high temperatures","pee strong , unpleasant scent hazy appearance since symptoms started appearing , regularly feel desire urinate night experiencing high temperatures" +5839,urinary tract infection,"My stomach hurts, and I frequently acquire a temperature. I experience sudden, intense cravings to urinate. The discomfort is virtually always there and frequently gets worse at night. My pee nearly always smells bad.","stomach hurts , frequently acquire temperature experience sudden , intense cravings urinate discomfort virtually always frequently gets worse night pee nearly always smells bad" +5840,urinary tract infection,"I've been experiencing frequent, intense, abrupt cravings to urinate. Sometimes I get blood in my pee, and it smells awful. What should I do if I believe I have an infection?","experiencing frequent , intense , abrupt cravings urinate sometimes get blood pee , smells awful believe infection" +5841,urinary tract infection,I occasionally urinate with blood in it and occasionally feel queasy while doing so. Help! I also occasionally get high temps at night and have a terrible odour coming from my pee.,occasionally urinate blood occasionally feel queasy help also occasionally get high temps night terrible odour coming pee +5842,urinary tract infection,"I have lower abdominal ache and a bursting sensation when I urinate. Since I began to experience these additional symptoms, I have also been experiencing low body temperatures. I've been weak as a result of this.","lower abdominal ache bursting sensation urinate since began experience additional symptoms , also experiencing low body temperatures weak result" +5843,urinary tract infection,"I have a mild temperature and blood in my pee. My head hurts almost constantly, and I frequently experience severe, involuntary desires to urinate. Additionally, I've been experiencing lower back ache","mild temperature blood pee head hurts almost constantly , frequently experience severe , involuntary desires urinate additionally , experiencing lower back ache" +5844,urinary tract infection,"Since a few days ago, I've been experiencing low temperatures and bloody urination. My head is in excruciating pain, and my urine smells awful. I can hardly control when I urinate, and the impulses come on suddenly.","since days ago , experiencing low temperatures bloody urination head excruciating pain , urine smells awful hardly control urinate , impulses come suddenly" +5845,urinary tract infection,"I frequently vomit and get discomfort at my pelvic area. My urine occasionally smells almost unbearably bad, and there is occasionally blood in it. Because of my headaches at times, I have problems falling asleep.","frequently vomit get discomfort pelvic area urine occasionally smells almost unbearably bad , occasionally blood headaches times , problems falling asleep" +5846,urinary tract infection,"I have to use the restroom frequently to relieve myself, but I can't seem to get my bladder empty. I occasionally get severe, uncontrolled desires to urinate, as well as black or crimson urine.","use restroom frequently relieve , seem get bladder empty occasionally get severe , uncontrolled desires urinate , well black crimson urine" +5847,urinary tract infection,"I've been experiencing really low moods and very bad urine odour. I can't seem to keep my urine back, and the area near my kidneys hurts a lot. I frequently experience these irrational cravings.","experiencing really low moods bad urine odour seem keep urine back , area near kidneys hurts lot frequently experience irrational cravings" +5848,urinary tract infection,"I have to use the restroom frequently, yet only a few drops of pee are usually produced. My stomach aches a lot, and I can't seem to control the desire to urinate.","use restroom frequently , yet drops pee usually produced stomach aches lot , seem control desire urinate" +5849,urinary tract infection,"My urine is frequently black, red, and has a really strange odour. I have been experiencing temperature changes very regularly, which usually prevents me from sleeping at night.","urine frequently black , red , really strange odour experiencing temperature changes regularly , usually prevents sleeping night" +5850,urinary tract infection,Blood has been found in my urination. I sometimes have nausea when urinating. I regularly feel like I'm almost feverish.,blood found urination sometimes nausea urinating regularly feel like almost feverish +5851,urinary tract infection,My pee smells strongly and is cloudy in appearance. I've had high temperatures and a regular urge to urinate at night since these symptoms first materialised.,pee smells strongly cloudy appearance high temperatures regular urge urinate night since symptoms first materialised +5852,urinary tract infection,"I've been having frequent, strong, sudden urges to urinate. I occasionally urinate with blood in it, and the stench is horrible. What ought I to do if I think I'm infected?","frequent , strong , sudden urges urinate occasionally urinate blood , stench horrible ought think infected" +5853,urinary tract infection,"On rare occasions, I pee with blood in it and have mild nausea. Help! I also occasionally experience high nighttime temperatures and a dreadful urine odour.","rare occasions , pee blood mild nausea help also occasionally experience high nighttime temperatures dreadful urine odour" +5854,urinary tract infection,"My lower abdomen hurts, and when I urinate, it feels like it's exploding. I've been having low body temps ever since I started having these new symptoms. Because of this, I've been weak.","lower abdomen hurts , urinate , feels like exploding low body temps ever since started new symptoms , weak" +5855,urinary tract infection,"Blood is in my pee, and I have a low body temperature. I have practically continual headaches and often strong, uncontrollable need to urinate. In addition, I've started having lower back pain.","blood pee , low body temperature practically continual headaches often strong , uncontrollable need urinate addition , started lower back pain" +5856,urinary tract infection,"I've had low temps and bloody urine for the past four days. My pee smells terrible, and my head hurts like hell. I scarcely have any control over when I urinate, and the urges strike without warning.","low temps bloody urine past four days pee smells terrible , head hurts like hell scarcely control urinate , urges strike without warning" +5857,urinary tract infection,"I regularly vomit and get pelvic pain. There is occasionally blood in my pee, and it occasionally has an absolutely intolerable odour. I occasionally have trouble falling asleep because of my migraines.","regularly vomit get pelvic pain occasionally blood pee , occasionally absolutely intolerable odour occasionally trouble falling asleep migraines" +5858,urinary tract infection,"I need to relieve myself regularly, but I can't seem to get my bladder to empty. On sometimes, I get intense, uncontrollable urges to urinate, along with dark or red urine.","need relieve regularly , seem get bladder empty sometimes , get intense , uncontrollable urges urinate , along dark red urine" +5859,urinary tract infection,"My spirits have been incredibly low, and my pee smells awful. My kidney region hurts a lot, and I can't seem to hold my urine in. I get these unreasonable urges all the time.","spirits incredibly low , pee smells awful kidney region hurts lot , seem hold urine get unreasonable urges time" +5860,urinary tract infection,"I have to go to the bathroom a lot, but generally only a few drops of urine come out. I have severe stomach pains and an overwhelming want to urinate.","go bathroom lot , generally drops urine come severe stomach pains overwhelming want urinate" +5861,urinary tract infection,"My urine often has a weird odour, is crimson or black in colour, and both. My body's temperature has been fluctuating often, which typically keeps me up at night.","urine often weird odour , crimson black colour , body temperature fluctuating often , typically keeps night" +5862,urinary tract infection,I noticed blood in my urinating. I occasionally feel sick after urinating. I frequently feel as though I have a fever.,noticed blood urinating occasionally feel sick urinating frequently feel though fever +5863,urinary tract infection,"My pee has a strong odour and a hazy look. Since these symptoms started, I've had high temperatures and frequent nighttime urges to urinate.","pee strong odour hazy look since symptoms started , high temperatures frequent nighttime urges urinate" +5864,urinary tract infection,I occasionally urinate with blood in it and feel a little queasy. Help! I also occasionally get horrible pee odours and excessive overnight temps.,occasionally urinate blood feel little queasy help also occasionally get horrible pee odours excessive overnight temps +5865,urinary tract infection,"My lower abdomen aches, and it feels like it may explode when I urinate. Since I began experiencing these new symptoms, my body temperature has been consistently low. That's why I've been weak.","lower abdomen aches , feels like may explode urinate since began experiencing new symptoms , body temperature consistently low weak" +5866,urinary tract infection,"In the last four days, I've experienced low temperatures and blood in my pee. My head hurts so much and my urine smells awful. The desires to urinate seldom come on cue, and I hardly ever have any control over when they do.","last four days , experienced low temperatures blood pee head hurts much urine smells awful desires urinate seldom come cue , hardly ever control" +5867,urinary tract infection,"My pee frequently has an odd smell and is either red or black, or both. The frequent changes in my body temperature usually keep me awake at night.","pee frequently odd smell either red black , frequent changes body temperature usually keep awake night" +5868,urinary tract infection,My pee smells strongly and seems cloudy. I've had fevers and frequent overnight urination needs ever since these symptoms began.,pee smells strongly seems cloudy fevers frequent overnight urination needs ever since symptoms began +5869,urinary tract infection,"I've had low temps and blood in my urine for the past three days. My pee smells terrible, and my head hurts so much. Urinary urges seldom occur on cue, and I almost never have any control over when they do.","low temps blood urine past three days pee smells terrible , head hurts much urinary urges seldom occur cue , almost never control" +5870,allergy,"I have a runny nose and I am sneezing all the time. My eyes are itchy and often watery, and I am coughing all the time. My head hurts and all the time","runny nose sneezing time eyes itchy often watery , coughing time head hurts time" +5871,allergy,I have sore throat and I am sneezing all the time. Sometimes I have swelling on my face like my lips and near my eyes. I just cant stop sneezing once I start sneezing,sore throat sneezing time sometimes swelling face like lips near eyes cant stop sneezing start sneezing +5872,allergy,I hace difficulty in breething and shortness of breath. I cough uncontrollably and get itchy eyes and swelling on my face and other body parts,hace difficulty breething shortness breath cough uncontrollably get itchy eyes swelling face body parts +5873,allergy,I have a nasal congestion and blocked nose. Sometimes at night I have chest pain and tightness. I have also lost my sense of smell and taste,nasal congestion blocked nose sometimes night chest pain tightness also lost sense smell taste +5874,allergy,I have asthma like symptoms like wheezing and difficulty breathing. I often get fever and have headaches. I feel tired all the time,asthma like symptoms like wheezing difficulty breathing often get fever headaches feel tired time +5875,allergy,"I feel tired all the time, I have lost my taste and have a really sore throat. I also get feverish and often have muscle aches. Sometimes my whole body just cramps up","feel tired time , lost taste really sore throat also get feverish often muscle aches sometimes whole body cramps" +5876,allergy,I have been experiencing a loss of appetite and have difficulty swallowing food. I have been suffering from sore throat and runnny nose also.,experiencing loss appetite difficulty swallowing food suffering sore throat runnny nose also +5877,allergy,"I feel fatigued all the time, and have a tingling sensation in my throat. I have also developed flaky skin. Sometimes I get puffy eyes and sometimes puffs up too.","feel fatigued time , tingling sensation throat also developed flaky skin sometimes get puffy eyes sometimes puffs" +5878,allergy,"I have stomach cramps, nausea and diarrhea. My throat is swollen, and I have difficulty breathing. Sometimes at night night I get chest pain and nauseous.","stomach cramps , nausea diarrhea throat swollen , difficulty breathing sometimes night night get chest pain nauseous" +5879,allergy,I have itchy and red skin. Sometimes these result in flaking. My face and lips puff up and causes a lot of inconvinience. I get watery eyes sometimes and headches when the puffing gets severe,itchy red skin sometimes result flaking face lips puff causes lot inconvinience get watery eyes sometimes headches puffing gets severe +5880,allergy,"I often sneeze and have a runny nose. My eyes are scratchy and frequently runny, and I frequently cough. My head hurts constantly.","often sneeze runny nose eyes scratchy frequently runny , frequently cough head hurts constantly" +5881,allergy,"I often sneeze and have a sore throat. My lips and the area around my eyes occasionally swell. Once I start sneezing, I just can't stop.","often sneeze sore throat lips area around eyes occasionally swell start sneezing , stop" +5882,allergy,"I have trouble breathing and get short of breath. I have a dry, hacking cough, itchy eyes, and swelling all over my face and body.","trouble breathing get short breath dry , hacking cough , itchy eyes , swelling face body" +5883,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort at night. I've also lost my ability to taste and smell.,plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability taste smell +5884,allergy,"I get symptoms of asthma, such as wheezing and breathing problems. I frequently have headaches and fever. All the time, I feel exhausted.","get symptoms asthma , wheezing breathing problems frequently headaches fever time , feel exhausted" +5885,allergy,"I always feel exhausted, have bad taste, and have an extremely scratchy throat. I also have muscular pain and heat. My entire body simply cramps up occasionally.","always feel exhausted , bad taste , extremely scratchy throat also muscular pain heat entire body simply cramps occasionally" +5886,allergy,"I've been losing my appetite, and I also have trouble swallowing. My nose has been running, and I have a sore throat.","losing appetite , also trouble swallowing nose running , sore throat" +5887,allergy,I'm always worn out and experiencing a tingle in my throat. I've also started to have dry skin. My eyes occasionally swell up,always worn experiencing tingle throat also started dry skin eyes occasionally swell +5888,allergy,"I feel queasy, nauseous, and dizzy. I have a swelling throat and am having breathing issues. I occasionally have chest discomfort and nausea at night.","feel queasy , nauseous , dizzy swelling throat breathing issues occasionally chest discomfort nausea night" +5889,allergy,"My skin is red and scratchy. These can occasionally flake. My cheeks and lips swell, which is really annoying. I occasionally have headaches and runny eyes because to the puffing.","skin red scratchy occasionally flake cheeks lips swell , really annoying occasionally headaches runny eyes puffing" +5890,allergy,"I frequently sneeze, and my nose runs. I constantly cough, and my eyes are sore and watery. My head hurts all the time.","frequently sneeze , nose runs constantly cough , eyes sore watery head hurts time" +5891,allergy,I have a sore throat and frequently sneeze. Sometimes the skin around my eyes and my lips swells. I just can't stop sneezing once I get going.,sore throat frequently sneeze sometimes skin around eyes lips swells stop sneezing get going +5892,allergy,"I have respiratory issues and experience breathlessness. My face and torso are swollen, my eyes are itching, and I have a dry, hacking cough.","respiratory issues experience breathlessness face torso swollen , eyes itching , dry , hacking cough" +5893,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. Additionally, I've lost my senses of taste and smell.","nasal congestion blocked nose occasion , night , stiffness chest pain additionally , lost senses taste smell" +5894,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I constantly feel worn out.","get breathing issues wheezing , asthma symptoms regularly fevers headaches constantly feel worn" +5895,allergy,"I always feel worn out, have unpleasant taste in my mouth, and have a really itchy throat. My muscles are also hot and hurting. Sometimes my whole body just cramps up.","always feel worn , unpleasant taste mouth , really itchy throat muscles also hot hurting sometimes whole body cramps" +5896,allergy,"Along with losing my appetite, I've been having swallowing issues. I have a sore throat, and my nose has been running.","along losing appetite , swallowing issues sore throat , nose running" +5897,allergy,I always feel exhausted and have a tickle in my throat. My skin has also started to feel dry. I occasionally get ocular swelling.,always feel exhausted tickle throat skin also started feel dry occasionally get ocular swelling +5898,allergy,"I'm dizzy, nauseated, and shaky. I'm having trouble breathing since my throat is swollen. On occasion, throughout the night, my chest hurts and I feel sick.","dizzy , nauseated , shaky trouble breathing since throat swollen occasion , throughout night , chest hurts feel sick" +5899,allergy,"My skin is irritated and inflamed. Sometimes, they can flake. My lips and cheeks expand, and it is really unpleasant. Because of the puffing, I occasionally have headaches and wet eyes.","skin irritated inflamed sometimes , flake lips cheeks expand , really unpleasant puffing , occasionally headaches wet eyes" +5900,allergy,"My nose runs and I sneeze a lot. My eyes are wet and hurt, and I cough all the time. My head aches constantly.","nose runs sneeze lot eyes wet hurt , cough time head aches constantly" +5901,allergy,"I sneeze a lot and have a sore throat. My lips and the skin surrounding my eyes will occasionally swell. Once I start, I just can't stop sneezing.","sneeze lot sore throat lips skin surrounding eyes occasionally swell start , stop sneezing" +5902,allergy,"I have breathing problems and become out of breath easily. My eyes ache, I have a dry, hacking cough, and my face and body are bloated.","breathing problems become breath easily eyes ache , dry , hacking cough , face body bloated" +5903,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort during the night. I've also lost my ability to smell and taste.,plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability smell taste +5904,allergy,"I get wheezing and breathing difficulties, which are asthma symptoms. I frequently have headaches and fever. I'm continuously exhausted.","get wheezing breathing difficulties , asthma symptoms frequently headaches fever continuously exhausted" +5905,allergy,"I always feel exhausted, have a bad taste in my mouth, and my throat itches a lot. Also heated and painful are my muscles. My entire body can cramp up at times.","always feel exhausted , bad taste mouth , throat itches lot also heated painful muscles entire body cramp times" +5906,allergy,"I've been losing my appetite and having trouble swallowing. My nose has been running, and I have a sore throat.","losing appetite trouble swallowing nose running , sore throat" +5907,allergy,I always get a tickle in my throat and feel fatigued. My skin has begun to feel dry as well. I have ocular edema on occasion.,always get tickle throat feel fatigued skin begun feel dry well ocular edema occasion +5908,allergy,"I feel queasy, sick, and wobbly. My throat is enlarged and making it difficult for me to breathe. My chest occasionally pains all through the night, and I occasionally feel ill.","feel queasy , sick , wobbly throat enlarged making difficult breathe chest occasionally pains night , occasionally feel ill" +5909,allergy,My skin is swollen and itchy. They may occasionally flake. It hurts a lot when my cheeks and lips swell. I occasionally get headaches and watery eyes from the puffing.,skin swollen itchy may occasionally flake hurts lot cheeks lips swell occasionally get headaches watery eyes puffing +5910,allergy,"I sneeze a lot and my nose is running. My eyes ache and are damp, and I frequently croak. My head hurts all the time.","sneeze lot nose running eyes ache damp , frequently croak head hurts time" +5911,allergy,"I have a sore throat and a lot of sneezing. There are times when the skin around my eyes and my lips swell. I find that once I start, I just cannot stop.","sore throat lot sneezing times skin around eyes lips swell find start , stop" +5912,allergy,"I have trouble breathing and easily get out of breath. My face and torso are swollen, my eyes hurt, and I have a dry, hacking cough.","trouble breathing easily get breath face torso swollen , eyes hurt , dry , hacking cough" +5913,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. I've also lost my senses of taste and smell.","nasal congestion blocked nose occasion , night , stiffness chest pain also lost senses taste smell" +5914,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I'm always worn out.","get breathing issues wheezing , asthma symptoms regularly fevers headaches always worn" +5915,allergy,"I frequently have exhaustion, a terrible taste in my mouth, and throat itchiness. My muscles are also burning and uncomfortable. Sometimes I have cramps all throughout my body.","frequently exhaustion , terrible taste mouth , throat itchiness muscles also burning uncomfortable sometimes cramps throughout body" +5916,allergy,"My appetite has decreased, and I've been having swallowing issues. I have a sore throat, and my nose has been running.","appetite decreased , swallowing issues sore throat , nose running" +5917,allergy,"My throat always tickles, and I'm worn out. Additionally, my skin has started to feel dry. Ocular inflammation occasionally affects me.","throat always tickles , worn additionally , skin started feel dry ocular inflammation occasionally affects" +5918,allergy,"I'm nauseous, ill, and shaky. I have a huge throat, which makes it tough for me to breathe. I occasionally have nighttime chest aches and occasional sickness.","nauseous , ill , shaky huge throat , makes tough breathe occasionally nighttime chest aches occasional sickness" +5919,allergy,"My skin is itching and swollen. Sometimes, they could flake. My lips and cheeks swelling aches a lot. The puffing occasionally gives me headaches and runny eyes.","skin itching swollen sometimes , could flake lips cheeks swelling aches lot puffing occasionally gives headaches runny eyes" +5920,gastroesophageal reflux disease,I often get aburning sensation in my throat while and especially after eating. Sometimes this also leaves a sour or bitter taste in my mouth and I get nauseos beacuse of this,often get aburning sensation throat especially eating sometimes also leaves sour bitter taste mouth get nauseos beacuse +5921,gastroesophageal reflux disease,"I have heartburn and indigestion. I often vomit whatever I eat and have difficultly swallowing food, beacuse the food gets stuck in my throat. I have a nagging pain in my upper abdomen","heartburn indigestion often vomit whatever eat difficultly swallowing food , beacuse food gets stuck throat nagging pain upper abdomen" +5922,gastroesophageal reflux disease,"I have frequent belching and burping. I have chest pain that often radiates to the back of my neck, jaw and arm. I get a feeling of tightness and pressure on my chest","frequent belching burping chest pain often radiates back neck , jaw arm get feeling tightness pressure chest" +5923,gastroesophageal reflux disease,"I have a persistent sour taste in my mouth, even when I haven't eaten anything acidic. I get frequent hiccups and a feeling of lump in my throat.","persistent sour taste mouth , even eaten anything acidic get frequent hiccups feeling lump throat" +5924,gastroesophageal reflux disease,"I have a chronic bad breath and a sour taste in my mouth, It sometimes gets difficult to swallow food because of this tingling sensation in my throat","chronic bad breath sour taste mouth , sometimes gets difficult swallow food tingling sensation throat" +5925,gastroesophageal reflux disease,"I get frequent heartburn and indigestion, especially eating spicy foods or fatty foods. I get chest pain that gets worse when I lie down or bend over. I also often have chest pain","get frequent heartburn indigestion , especially eating spicy foods fatty foods get chest pain gets worse lie bend also often chest pain" +5926,gastroesophageal reflux disease,"I have a loss of appetite and difficulty swallowing. I often have this persistent feeling of fullness, even after eating small meals. I usually throw up and get heartburn and a tingling sensation in my throat","loss appetite difficulty swallowing often persistent feeling fullness , even eating small meals usually throw get heartburn tingling sensation throat" +5927,gastroesophageal reflux disease,"I have a sore throat or hoarseness, especially in the morning. I have a chronic nagging pain in my throat and bad breath. I also have frequent belching","sore throat hoarseness , especially morning chronic nagging pain throat bad breath also frequent belching" +5928,gastroesophageal reflux disease,"I have a feeling of food or acid backing up into my throat. I chest pain which gets worse if I lie down. I get frequent heartburn or indigestion, after eating food and vomit it out","feeling food acid backing throat chest pain gets worse lie get frequent heartburn indigestion , eating food vomit" +5929,gastroesophageal reflux disease,I feel uneasiness after eating and usually vomit whatever I've eaten. I always have this pain in my abdomen and have really bad acid reflux,feel uneasiness eating usually vomit whatever eaten always pain abdomen really bad acid reflux +5930,gastroesophageal reflux disease,"My throat frequently feels like it is burning, especially after eating. Additionally, I occasionally get a sour or bitter aftertaste, which causes me to feel queasy.","throat frequently feels like burning , especially eating additionally , occasionally get sour bitter aftertaste , causes feel queasy" +5931,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and I have trouble swallowing food because it gets caught in my throat. My upper abdomen is bothering me.","indigestion heartburn frequently vomit everything eat , trouble swallowing food gets caught throat upper abdomen bothering" +5932,gastroesophageal reflux disease,"My burping and belching are frequent. I frequently get chest discomfort that spreads to the back of my neck, jaw, and arm. I have pressure and tension in my chest.","burping belching frequent frequently get chest discomfort spreads back neck , jaw , arm pressure tension chest" +5933,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have hiccups and a lump in my throat.","even anything acidic stomach , constantly sour taste mouth frequently hiccups lump throat" +5934,gastroesophageal reflux disease,"I always have foul breath and a sour taste in my mouth, and occasionally, the tingling in my throat makes it difficult to swallow meals.","always foul breath sour taste mouth , occasionally , tingling throat makes difficult swallow meals" +5935,gastroesophageal reflux disease,"I frequently have heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lie down or stoop over, my chest discomfort worsens. My chest hurts quite a bit too.","frequently heartburn indigestion , particularly consuming spicy fatty foods lie stoop , chest discomfort worsens chest hurts quite bit" +5936,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after eating little meals, I frequently get this lingering sense of fullness. Typically, I have heartburn, nausea, and tingling in my throat.","feel like eating , swallowing challenging even eating little meals , frequently get lingering sense fullness typically , heartburn , nausea , tingling throat" +5937,gastroesophageal reflux disease,"I often wake up with a sore throat or a scratchy voice. My throat hurts constantly, and I also have poor breath. I also frequently burp.","often wake sore throat scratchy voice throat hurts constantly , also poor breath also frequently burp" +5938,gastroesophageal reflux disease,"I feel as though acid or food is backing up into my throat. My chest hurts, and lying down makes it worse. After eating, I frequently have heartburn or indigestion and throw up.","feel though acid food backing throat chest hurts , lying makes worse eating , frequently heartburn indigestion throw" +5939,gastroesophageal reflux disease,"After eating, I get queasy and frequently throw up everything I've eaten. I always get severe abdominal ache and have terrible acid reflux.","eating , get queasy frequently throw everything eaten always get severe abdominal ache terrible acid reflux" +5940,gastroesophageal reflux disease,"Especially after eating, my throat regularly feels like it is burning. I also occasionally get a bitter or sour aftertaste, which makes me feel sick.","especially eating , throat regularly feels like burning also occasionally get bitter sour aftertaste , makes feel sick" +5941,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly vomit everything I eat, and food gets stuck in my throat, making it difficult for me to swallow. I have a pain in my upper abdomen.","heartburn indigestion regularly vomit everything eat , food gets stuck throat , making difficult swallow pain upper abdomen" +5942,gastroesophageal reflux disease,"Belching and burping are common in me. I often get chest pain that radiates to the back of my neck, my jaw, and my arm. In my chest, there is pressure and stress.","belching burping common often get chest pain radiates back neck , jaw , arm chest , pressure stress" +5943,gastroesophageal reflux disease,"I get a sour taste in my mouth all the time, even when there is nothing acidic in my stomach. I often get the hiccups and have a lump in my throat.","get sour taste mouth time , even nothing acidic stomach often get hiccups lump throat" +5944,gastroesophageal reflux disease,"I periodically find it challenging to swallow food due to the tingling in my throat, bad breath, and bad taste in my mouth.","periodically find challenging swallow food due tingling throat , bad breath , bad taste mouth" +5945,gastroesophageal reflux disease," regularly have indigestion and heartburn, especially after eating spicy or fatty foods. My chest pain is worse when I hunch over or lie down. Additionally, my chest hurts a lot.","regularly indigestion heartburn , especially eating spicy fatty foods chest pain worse hunch lie additionally , chest hurts lot" +5946,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling.","mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling" +5947,gastroesophageal reflux disease,I frequently get a scratchy voice or a painful throat when I wake up. I have bad breath and a continual sore throat. I also vomit a lot.,frequently get scratchy voice painful throat wake bad breath continual sore throat also vomit lot +5948,gastroesophageal reflux disease,My throat feels as though food or acid is backing up. Lying down only makes my chest pain more. I regularly have heartburn or indigestion after eating and puke up.,throat feels though food acid backing lying makes chest pain regularly heartburn indigestion eating puke +5949,gastroesophageal reflux disease,I often feel sick after eating and puke up the entire meal. I constantly get excruciating acid reflux and severe stomach pain.,often feel sick eating puke entire meal constantly get excruciating acid reflux severe stomach pain +5950,gastroesophageal reflux disease,"My throat often feels like it is burning, especially after eating. A bitter or sour aftertaste that I occasionally experience also makes me feel unwell.","throat often feels like burning , especially eating bitter sour aftertaste occasionally experience also makes feel unwell" +5951,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and it is hard for me to swallow since food gets caught in my throat. My upper abdomen is in discomfort.","indigestion heartburn frequently vomit everything eat , hard swallow since food gets caught throat upper abdomen discomfort" +5952,gastroesophageal reflux disease,"My tendency is to belch and burp frequently. I frequently get chest pain that spreads to my arm, jaw, and the back of my neck. There is pressure and stress in my chest.","tendency belch burp frequently frequently get chest pain spreads arm , jaw , back neck pressure stress chest" +5953,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups.","even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups" +5954,gastroesophageal reflux disease,"Periodically, the tingling in my throat, poor breath, and bad taste in my mouth make it difficult for me to swallow meals.","periodically , tingling throat , poor breath , bad taste mouth make difficult swallow meals" +5955,gastroesophageal reflux disease,"I routinely experience heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lean forward or lie down, my chest discomfort becomes worse. My chest hurts a lot as well.","routinely experience heartburn indigestion , particularly consuming spicy fatty foods lean forward lie , chest discomfort becomes worse chest hurts lot well" +5956,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after little meals, I frequently get this lingering sensation of fullness. My normal symptoms include nausea, heartburn, and tingling in my throat.","feel like eating , swallowing challenging even little meals , frequently get lingering sensation fullness normal symptoms include nausea , heartburn , tingling throat" +5957,gastroesophageal reflux disease,"I regularly wake up with a scratchy voice or a sore throat. My throat is constantly irritated, and I have horrible breath. I frequently throw up.","regularly wake scratchy voice sore throat throat constantly irritated , horrible breath frequently throw" +5958,gastroesophageal reflux disease,"It feels like food or acid is backing up in my throat. My chest discomfort only becomes worse while I'm lying down. After eating, I frequently have heartburn or indigestion and throw up.","feels like food acid backing throat chest discomfort becomes worse lying eating , frequently heartburn indigestion throw" +5959,gastroesophageal reflux disease,"After eating, I frequently feel unwell and throw up the entire meal. I suffer from painful acid reflux and excruciating stomach discomfort all the time.","eating , frequently feel unwell throw entire meal suffer painful acid reflux excruciating stomach discomfort time" +5960,gastroesophageal reflux disease,"Especially after eating, my throat frequently feels scorching. I occasionally get a bitter or sour aftertaste that makes me feel sick.","especially eating , throat frequently feels scorching occasionally get bitter sour aftertaste makes feel sick" +5961,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly throw up everything I eat, and swallowing is difficult for me since food gets stuck in my throat. I'm experiencing pain in my upper abdomen.","heartburn indigestion regularly throw everything eat , swallowing difficult since food gets stuck throat experiencing pain upper abdomen" +5962,gastroesophageal reflux disease,"I have a tendency to burp and belch regularly. I often get chest discomfort that radiates to my arm, jaw, and neck. My chest feels tight and stressed.","tendency burp belch regularly often get chest discomfort radiates arm , jaw , neck chest feels tight stressed" +5963,gastroesophageal reflux disease,"I always get a sour taste in my mouth, even when I don't have anything acidic in my stomach. I regularly have the hiccups and a knot in my throat.","always get sour taste mouth , even anything acidic stomach regularly hiccups knot throat" +5964,gastroesophageal reflux disease,"I occasionally have trouble swallowing food because of the tingling in my throat, terrible breath, and bad taste in my mouth.","occasionally trouble swallowing food tingling throat , terrible breath , bad taste mouth" +5965,gastroesophageal reflux disease,"I frequently have indigestion and heartburn, especially after eating spicy or fatty foods. My chest hurts when I lean forward or while I'm lying down. Additionally, my chest hurts a lot.","frequently indigestion heartburn , especially eating spicy fatty foods chest hurts lean forward lying additionally , chest hurts lot" +5966,gastroesophageal reflux disease,I regularly feel sick after eating and puke up the entire meal. I constantly get horrible acid reflux agony and stomach discomfort.,regularly feel sick eating puke entire meal constantly get horrible acid reflux agony stomach discomfort +5967,gastroesophageal reflux disease,"My throat often feels like it's on fire, especially after eating. I occasionally get an aftertaste that is sour or bitter and makes me feel nauseous.","throat often feels like fire , especially eating occasionally get aftertaste sour bitter makes feel nauseous" +5968,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups.","even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups" +5969,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling.","mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling" +5970,drug reaction,"I have a metallic taste in my mouth, and also have a sense of change of taste and smell. Sometimes get very unbearable joint pain and muscle pain","metallic taste mouth , also sense change taste smell sometimes get unbearable joint pain muscle pain" +5971,drug reaction,"I have headaches and migraines, have been having difficulty sleeping. I have been having muscle twitching and tremors. Sometimes I get lightheaded","headaches migraines , difficulty sleeping muscle twitching tremors sometimes get lightheaded" +5972,drug reaction,I have fever and feel very dizzy and lightheaded. My heart is beating very fast and I feel very confused. I am not able to think very clearing and everything feels very foggy,fever feel dizzy lightheaded heart beating fast feel confused able think clearing everything feels foggy +5973,drug reaction,I have rashes on my skin and these flake off from time to time. This leaves me prone to infection. My fingers start twitching and sometimes I experience tremors.,rashes skin flake time time leaves prone infection fingers start twitching sometimes experience tremors +5974,drug reaction,I feel very nauseous and have chest pain. Recently I have been experiencing chest pain. I feel very uneasy and often sweat profusely,feel nauseous chest pain recently experiencing chest pain feel uneasy often sweat profusely +5975,drug reaction,"I have itching all over my body, and rashes in my chest and back. I get flaky skin from time to time and often this leaves marks on my body.","itching body , rashes chest back get flaky skin time time often leaves marks body" +5976,drug reaction,I have hair loss and there is a significant change in the texture of my hair. I have dry and itchy sclap and increased dandruff. My skin is also getting very dry,hair loss significant change texture hair dry itchy sclap increased dandruff skin also getting dry +5977,drug reaction,I am experiencing a decrease in my sex drive and difficulty to fucntion sexually. I feel very light headed and confused and often experince brain fog,experiencing decrease sex drive difficulty fucntion sexually feel light headed confused often experince brain fog +5978,drug reaction,I am experiencing changes in my menstrual cycle and unexpected vaginal discharge. I often get mood swings and feel agitated from time to time,experiencing changes menstrual cycle unexpected vaginal discharge often get mood swings feel agitated time time +5979,drug reaction,I have experinenced significant weight gain and become very obese. I have changes in my appetite and cravings for different foods,experinenced significant weight gain become obese changes appetite cravings different foods +5980,drug reaction,I have difficulty in maintianing concentration and very low mental clarity. I often forget things and in general have difficulty remembering things,difficulty maintianing concentration low mental clarity often forget things general difficulty remembering things +5981,drug reaction,"In addition to experiencing a change in taste and fragrance, I also have a metallic aftertaste in my tongue. occasionally get excruciating joint and muscular pain","addition experiencing change taste fragrance , also metallic aftertaste tongue occasionally get excruciating joint muscular pain" +5982,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My muscles have been trembling and twitching. I sometimes feel dizzy.","suffer migraines headaches , trouble falling asleep muscles trembling twitching sometimes feel dizzy" +5983,drug reaction,"I'm feeling really lightheaded and dizzy when I have a temperature. My mind is completely muddled, and my heart is racing. I find it difficult to think clearly, and everything seems quite hazy.","feeling really lightheaded dizzy temperature mind completely muddled , heart racing find difficult think clearly , everything seems quite hazy" +5984,drug reaction,"My skin occasionally peels off the rashes that I have. This makes me more vulnerable to infections. My hands begin to shake, and occasionally I have tremors.","skin occasionally peels rashes makes vulnerable infections hands begin shake , occasionally tremors" +5985,drug reaction,I have severe nausea and chest discomfort. I have been having chest discomfort lately. I often shiver a lot and feel really nervous.,severe nausea chest discomfort chest discomfort lately often shiver lot feel really nervous +5986,drug reaction,"I have rashes in my chest and back and itch all over my body. I occasionally have flaky skin, which frequently creates markings on my body.","rashes chest back itch body occasionally flaky skin , frequently creates markings body" +5987,drug reaction,"My hair's texture has significantly changed, and I'm experiencing hair loss. My scalp is dry and itching, and my dandruff is becoming worse. My skin is also becoming really dry.","hair texture significantly changed , experiencing hair loss scalp dry itching , dandruff becoming worse skin also becoming really dry" +5988,drug reaction,"My sex desire has decreased, and I'm finding it harder to function sexually. I regularly have brain fog and feel quite dizzy and disoriented.","sex desire decreased , finding harder function sexually regularly brain fog feel quite dizzy disoriented" +5989,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I frequently experience mood swings and experience occasional agitation.","monthly cycle changed , unexpected vaginal discharge frequently experience mood swings experience occasional agitation" +5990,drug reaction,"I've gained a lot of weight and am now quite fat. My appetite varies, and I have desires for various things.","gained lot weight quite fat appetite varies , desires various things" +5991,drug reaction,"I struggle to maintain focus, and my mental clarity is really poor. I have trouble remembering things and frequently forget stuff.","struggle maintain focus , mental clarity really poor trouble remembering things frequently forget stuff" +5992,drug reaction,My tongue also has a metallic aftertaste in addition to a change in taste and scent. occasionally get acute muscle and joint ache,tongue also metallic aftertaste addition change taste scent occasionally get acute muscle joint ache +5993,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. My entire body has been shaking and twitching. Sometimes I become lightheaded.","headaches migraines , difficulties sleeping entire body shaking twitching sometimes become lightheaded" +5994,drug reaction,"When I have a fever, I feel quite woozy and lightheaded. My heart is pounding, and my head is absolutely foggy. My ability to think properly is impaired, and everything appears to be somewhat blurry.","fever , feel quite woozy lightheaded heart pounding , head absolutely foggy ability think properly impaired , everything appears somewhat blurry" +5995,drug reaction,"My rashes occasionally cause my skin to peel off. I'm more susceptible to illnesses as a result. I start to tremble sometimes, and my hands start to shake.","rashes occasionally cause skin peel susceptible illnesses result start tremble sometimes , hands start shake" +5996,drug reaction,"Both chest pain and extreme nausea are present. Recently, my chest has been hurting. I frequently shiver a lot and am really anxious.","chest pain extreme nausea present recently , chest hurting frequently shiver lot really anxious" +5997,drug reaction,"My body itches all over, and I have rashes on my back and chest. My skin can be flaky on sometimes, which commonly results in body marks.","body itches , rashes back chest skin flaky sometimes , commonly results body marks" +5998,drug reaction,"I'm losing hair, and my hair's texture has considerably altered. My dandruff is becoming worse, and my dry, itchy scalp. My skin is getting quite dry as well.","losing hair , hair texture considerably altered dandruff becoming worse , dry , itchy scalp skin getting quite dry well" +5999,drug reaction,"My desire for sex has dropped, and I'm having trouble having sex. I frequently get brain fog, as well as feeling somewhat bewildered.","desire sex dropped , trouble sex frequently get brain fog , well feeling somewhat bewildered" +6000,drug reaction,"I've noticed a difference in my monthly cycle and an unexpected vaginal discharge. I become irritable every now and again, and my moods swing a lot.","noticed difference monthly cycle unexpected vaginal discharge become irritable every , moods swing lot" +6001,drug reaction,I have put on a lot of weight and am now very obese. I have different urges and different appetites.,put lot weight obese different urges different appetites +6002,drug reaction,I have terrible mental clarity and find it difficult to stay focused. I regularly forget things and have problems remembering things.,terrible mental clarity find difficult stay focused regularly forget things problems remembering things +6003,drug reaction,"Along with a change in taste and smell, my tongue also has a metallic aftertaste. occasionally get severe joint and muscular pain","along change taste smell , tongue also metallic aftertaste occasionally get severe joint muscular pain" +6004,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My whole body has been trembling and shivering. At times, I have dizziness.","suffer migraines headaches , trouble falling asleep whole body trembling shivering times , dizziness" +6005,drug reaction,"I am quite queasy and dizzy when I have a temperature. My brain is completely cloudy, and my heart is racing. I'm having trouble thinking straight, and everything seems a little fuzzy.","quite queasy dizzy temperature brain completely cloudy , heart racing trouble thinking straight , everything seems little fuzzy" +6006,drug reaction,"Sometimes my skin starts to flake off from my rashes. I'm more prone to becoming sick as a result. On occasion, my hands begin to quiver and I begin to tremble.","sometimes skin starts flake rashes prone becoming sick result occasion , hands begin quiver begin tremble" +6007,drug reaction,There is severe nausea and chest discomfort. My chest has been aching lately. I'm really nervous and shiver a lot of the time.,severe nausea chest discomfort chest aching lately really nervous shiver lot time +6008,drug reaction,"I have rashes on my back and chest, and my entire body itches. My skin may be dry and flaky at times, which frequently leaves body marks.","rashes back chest , entire body itches skin may dry flaky times , frequently leaves body marks" +6009,drug reaction,"I'm shedding hair, and the texture of my hair has changed significantly. My dry, itchy scalp and dandruff are becoming worse. My skin is also becoming pretty dry.","shedding hair , texture hair changed significantly dry , itchy scalp dandruff becoming worse skin also becoming pretty dry" +6010,drug reaction,"I no longer want to have sex, and it's difficult for me to do so. I regularly have brain fog and a sense of confusion.","longer want sex , difficult regularly brain fog sense confusion" +6011,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I occasionally lose my temper, and my moods change a lot.","monthly cycle changed , unexpected vaginal discharge occasionally lose temper , moods change lot" +6012,drug reaction,I've gained a lot of weight and am currently quite fat. I have many inclinations and cravings.,gained lot weight currently quite fat many inclinations cravings +6013,drug reaction,I have awful mental clarity and have trouble focusing. I frequently forget things and struggle with memory.,awful mental clarity trouble focusing frequently forget things struggle memory +6014,drug reaction,"My tongue also changes in taste and scent, leaving a metallic aftertaste. can have excruciating joint and muscle pain","tongue also changes taste scent , leaving metallic aftertaste excruciating joint muscle pain" +6015,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. I've been shaking and shivering all over. Sometimes I become lightheaded.","headaches migraines , difficulties sleeping shaking shivering sometimes become lightheaded" +6016,drug reaction,"When I have a temperature, I feel pretty nauseous and lightheaded. My heart is pounding, and my mind is absolutely foggy. Everything feels a little hazy to me, and I'm having difficulties thinking clearly.","temperature , feel pretty nauseous lightheaded heart pounding , mind absolutely foggy everything feels little hazy , difficulties thinking clearly" +6017,drug reaction,"My rashes occasionally cause my skin to start to fall off. I'm more likely to get ill as a result. My hands occasionally start to tremble, and I start to shake.","rashes occasionally cause skin start fall likely get ill result hands occasionally start tremble , start shake" +6018,drug reaction,"Chest pain and severe nausea are present. Recently, my chest has been hurting. I tremble a lot and am quite anxious.","chest pain severe nausea present recently , chest hurting tremble lot quite anxious" +6019,drug reaction,"My entire body itches, and I have rashes on my back and chest. Sometimes my skin might be dry and flaky, which often results in body stains.","entire body itches , rashes back chest sometimes skin might dry flaky , often results body stains" +6020,peptic ulcer disease,"I have a burning sensation in my upper abdomen, ofetn between or at night. I have heartburn and indigestion and often feel very nauseous","burning sensation upper abdomen , ofetn night heartburn indigestion often feel nauseous" +6021,peptic ulcer disease,I have bloating and a feeling of uneasiness. I have been experiencing weight loss and a loss of appetite. Sometimes I have dark and tarry stools and blood in my vomit,bloating feeling uneasiness experiencing weight loss loss appetite sometimes dark tarry stools blood vomit +6022,peptic ulcer disease,I have difficulty swallowing food and often get a sensation of the food getting stuck in my throat. I have constant belching and bloating. There is a persitent sour taste in my mouth,difficulty swallowing food often get sensation food getting stuck throat constant belching bloating persitent sour taste mouth +6023,peptic ulcer disease,I have been having bloody stools which has resulted in bloos loss and loss of iron. Thiis has caused me anemia and I feel very weak in general,bloody stools resulted bloos loss loss iron thiis caused anemia feel weak general +6024,peptic ulcer disease,"I have persistant, gnawing hunger and apetite. Sometimes I get abdominal cramps and spasms. There is bloating and gas after eating which causes me a great deal of uneasiness","persistant , gnawing hunger apetite sometimes get abdominal cramps spasms bloating gas eating causes great deal uneasiness" +6025,peptic ulcer disease,"I have changes in my bowel movements, such as constipation and diarrhea. I have a loss of appetite and energy and often feel very fatigued","changes bowel movements , constipation diarrhea loss appetite energy often feel fatigued" +6026,peptic ulcer disease,I have abdominal pain and it gets only worse if I bend over or lie down. I feel discomfort when I eat certain foods such as spicy or acidic food. Sometimes I get loose stools because of this,abdominal pain gets worse bend lie feel discomfort eat certain foods spicy acidic food sometimes get loose stools +6027,peptic ulcer disease,I have difficulty sleeping due to abdominal pain or discomfort. I have a loss of appetite and feel fatigued after going to the bathroom. I feel very tited all the time,difficulty sleeping due abdominal pain discomfort loss appetite feel fatigued going bathroom feel tited time +6028,peptic ulcer disease,I have a sour acidic taste in my mouth. I have frequent belching and burping. I have a feeling of pressure or fullness in my upper abdomen that last for a few hours,sour acidic taste mouth frequent belching burping feeling pressure fullness upper abdomen last hours +6029,peptic ulcer disease,I have unintended weight loss and difficulty gaining weight. I have pain and discomfort that is relieved by taking antacids. My mouth tastes very bad,unintended weight loss difficulty gaining weight pain discomfort relieved taking antacids mouth tastes bad +6030,peptic ulcer disease,"Occasionally throughout the day or at night, I have burning in my upper abdomen. I get indigestion, heartburn, and frequent bouts of extreme nausea.","occasionally throughout day night , burning upper abdomen get indigestion , heartburn , frequent bouts extreme nausea" +6031,peptic ulcer disease,"Bloating and unease are both present in me. I've been losing weight and losing interest in food. I occasionally get tarry, black stools and vomit that contains blood.","bloating unease present losing weight losing interest food occasionally get tarry , black stools vomit contains blood" +6032,peptic ulcer disease,"I have trouble swallowing, and I frequently feel like food is getting stuck in my throat. I feel bloated and belch constantly. I always get a sour taste in my mouth.","trouble swallowing , frequently feel like food getting stuck throat feel bloated belch constantly always get sour taste mouth" +6033,peptic ulcer disease,"My bloody stools have caused me to lose iron and bloos, among other things. I now have anaemia from this, and I generally feel quite weak.","bloody stools caused lose iron bloos , among things anaemia , generally feel quite weak" +6034,peptic ulcer disease,"My hunger and appetite are persistent and ravenous. Periodically, my stomach may cramp and spasm. After eating, I have bloating and gas, which makes me quite uncomfortable.","hunger appetite persistent ravenous periodically , stomach may cramp spasm eating , bloating gas , makes quite uncomfortable" +6035,peptic ulcer disease,"My bowel motions have changed; they've been constipated and diarrhoeal. I lack energy, appetite, and frequently feel really exhausted.","bowel motions changed constipated diarrhoeal lack energy , appetite , frequently feel really exhausted" +6036,peptic ulcer disease,"I have stomach ache, and bending over or lying down just makes it worse. When I consume certain meals, such as spicy or acidic cuisine, I have discomfort. This sometimes causes me to have loose stools.","stomach ache , bending lying makes worse consume certain meals , spicy acidic cuisine , discomfort sometimes causes loose stools" +6037,peptic ulcer disease,"I have trouble falling or staying asleep because of stomach ache. After using the restroom, I feel drained and lose my appetite. I constantly feel really anxious.","trouble falling staying asleep stomach ache using restroom , feel drained lose appetite constantly feel really anxious" +6038,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. My burping and belching are frequent. For a few hours, I get pressure or fullness in my upper belly.","mouth filled sour , acidic flavour burping belching frequent hours , get pressure fullness upper belly" +6039,peptic ulcer disease,I lose weight unintentionally and find it challenging to acquire weight. I use antacids to ease the pain and discomfort I experience. My mouth feels horrible.,lose weight unintentionally find challenging acquire weight use antacids ease pain discomfort experience mouth feels horrible +6040,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I get heartburn, indigestion, and regular episodes of severe nausea.","occasionally burning upper abdomen throughout day night get heartburn , indigestion , regular episodes severe nausea" +6041,peptic ulcer disease,"I feel bloated and uneasy at the same time. I've been losing weight, and I no longer like eating. I occasionally get bloody vomit and dark, tarry stools.","feel bloated uneasy time losing weight , longer like eating occasionally get bloody vomit dark , tarry stools" +6042,peptic ulcer disease,I often feel like food is getting caught in my throat and have problems swallowing. I feel bloated and frequently belch. I constantly have a bitter aftertaste.,often feel like food getting caught throat problems swallowing feel bloated frequently belch constantly bitter aftertaste +6043,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. Because of this, I now have anaemia and usually feel fairly weak.","lost lot stuff bloody stools , including iron bloos , anaemia usually feel fairly weak" +6044,peptic ulcer disease,"My appetite and chronic hunger are both ferocious. My stomach may occasionally ache and spasm. I have gas and bloating after eating, which is really painful.","appetite chronic hunger ferocious stomach may occasionally ache spasm gas bloating eating , really painful" +6045,peptic ulcer disease,My bowel movements have become constipated and diarrheal. I often feel quite tired and lack both energy and appetite.,bowel movements become constipated diarrheal often feel quite tired lack energy appetite +6046,peptic ulcer disease,"Bending down or reclining down only makes my stomach feel more. I have pain after eating some foods, such as hot or acidic food. I occasionally get loose stools as a result of this.","bending reclining makes stomach feel pain eating foods , hot acidic food occasionally get loose stools result" +6047,peptic ulcer disease,"Due to a stomach discomfort, I have problems sleeping or staying asleep. I am exhausted after using the bathroom and lose my appetite. I'm quite nervous all the time.","due stomach discomfort , problems sleeping staying asleep exhausted using bathroom lose appetite quite nervous time" +6048,peptic ulcer disease,"A sour, acidic taste is all over my mouth. Belching and burping are common in me. I have pressure or fullness in my upper abdomen for a few hours.","sour , acidic taste mouth belching burping common pressure fullness upper abdomen hours" +6049,peptic ulcer disease,"I unknowingly lose weight and find it difficult to gain weight. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so much.","unknowingly lose weight find difficult gain weight relieve pain discomfort feel , take antacids mouth hurts much" +6050,peptic ulcer disease,"On occasion, throughout the day or at night, I have burning in my upper abdomen. I frequently get extreme nauseous episodes, heartburn, and indigestion.","occasion , throughout day night , burning upper abdomen frequently get extreme nauseous episodes , heartburn , indigestion" +6051,peptic ulcer disease,"I have both bloating and unease. I no longer like eating because I've been losing weight. I sometimes vomit blood and have tarry, black stools.","bloating unease longer like eating losing weight sometimes vomit blood tarry , black stools" +6052,peptic ulcer disease,I frequently get swallowing issues and the sensation that food is getting stuck in my throat. I regularly belch and feel bloated. My aftertaste is unpleasant all the time.,frequently get swallowing issues sensation food getting stuck throat regularly belch feel bloated aftertaste unpleasant time +6053,peptic ulcer disease,"My bloody stools have caused me to lose a lot of things, including iron and bloos. I now have anaemia as a result, and I typically feel rather weak.","bloody stools caused lose lot things , including iron bloos anaemia result , typically feel rather weak" +6054,peptic ulcer disease,"Both my appetite and ongoing hunger are fierce. There are times when my stomach hurts and cramps. Following a meal, I have very painful gas and bloating.","appetite ongoing hunger fierce times stomach hurts cramps following meal , painful gas bloating" +6055,peptic ulcer disease,Constipated and diarrheal bowel motions have been happening to me. I frequently have a lack of energy and appetite.,constipated diarrheal bowel motions happening frequently lack energy appetite +6056,peptic ulcer disease,"My stomach only feels worse when I stoop or recline. After eating particular meals, such as spicy or acidic cuisine, I have discomfort. This occasionally causes me to have loose stools.","stomach feels worse stoop recline eating particular meals , spicy acidic cuisine , discomfort occasionally causes loose stools" +6057,peptic ulcer disease,"I have a stomach ache that keeps me from falling or staying asleep. After using the restroom, I feel worn out and lose interest in food. I'm constantly pretty anxious.","stomach ache keeps falling staying asleep using restroom , feel worn lose interest food constantly pretty anxious" +6058,peptic ulcer disease,"My mouth is filled with an acidic, sour flavour. Burping and belching are frequent in me. For a few hours, my upper abdomen has felt pressured or full.","mouth filled acidic , sour flavour burping belching frequent hours , upper abdomen felt pressured full" +6059,peptic ulcer disease,I inadvertently lose weight and have a hard time gaining it back. I use antacids to get rid of the pain and discomfort I experience. It aches so much in my mouth.,inadvertently lose weight hard time gaining back use antacids get rid pain discomfort experience aches much mouth +6060,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I regularly get severe heartburn, indigestion, and nausea.","occasionally burning upper abdomen throughout day night regularly get severe heartburn , indigestion , nausea" +6061,peptic ulcer disease,"I'm feeling both bloated and uneasy. Because I've been losing weight, I no longer like eating. I occasionally get tarry, black stools and blood in my vomit.","feeling bloated uneasy losing weight , longer like eating occasionally get tarry , black stools blood vomit" +6062,peptic ulcer disease,"I regularly have trouble swallowing, and I sometimes feel like food is becoming trapped in my throat. I frequently feel bloated and belch. Every time, I have a bad aftertaste.","regularly trouble swallowing , sometimes feel like food becoming trapped throat frequently feel bloated belch every time , bad aftertaste" +6063,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. As a result, I now have anaemia and generally feel rather weak.","lost lot stuff bloody stools , including iron bloos result , anaemia generally feel rather weak" +6064,peptic ulcer disease,I have a strong appetite and am constantly hungry. My stomach occasionally aches and cramps. I have really painful gas and bloating after eating.,strong appetite constantly hungry stomach occasionally aches cramps really painful gas bloating eating +6065,peptic ulcer disease,I've been experiencing bowel movements that are both constipated and diarrhoeic. I often lack the will to eat and energy.,experiencing bowel movements constipated diarrhoeic often lack eat energy +6066,peptic ulcer disease,"Only when I hunch down or lie down does my stomach hurt more. I have pain after eating certain foods, such as hot or acidic food. I occasionally get loose stools as a result of this.","hunch lie stomach hurt pain eating certain foods , hot acidic food occasionally get loose stools result" +6067,peptic ulcer disease,I can't get to sleep or remain asleep because I have a stomach pain. I get exhausted after using the bathroom and stop being hungry. I worry a lot of the time.,get sleep remain asleep stomach pain get exhausted using bathroom stop hungry worry lot time +6068,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. I have frequent belching and burping. My upper abdomen has felt pressed in or full for the past few hours.","mouth filled sour , acidic flavour frequent belching burping upper abdomen felt pressed full past hours" +6069,peptic ulcer disease,"I unintentionally lose weight and find it challenging to gain it back. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so severely right now.","unintentionally lose weight find challenging gain back relieve pain discomfort feel , take antacids mouth hurts severely right" +6070,diabetes,I have increased thirst and frequent urination. I often have a dry mouth and throat. Recently I have been having increased hunger and appetite,increased thirst frequent urination often dry mouth throat recently increased hunger appetite +6071,diabetes,I have blurred vision and it only seems to be getting worse. I feel fatigued and tired all the time. I also feel very dizzy and light headed at times,blurred vision seems getting worse feel fatigued tired time also feel dizzy light headed times +6072,diabetes,I have a dry mouth and throat. I also have been experiencing an increased appetite and hunger. However I do feel very tired at times,dry mouth throat also experiencing increased appetite hunger however feel tired times +6073,diabetes,I have slow healing of wounds and cuts. I have this tingling sensation in my hand and numbness in both my hands and feet,slow healing wounds cuts tingling sensation hand numbness hands feet +6074,diabetes,I have mood changes and have difficulty concentrating. My mind feels hazy and foggy at times and it gets difficult to do even regular chores,mood changes difficulty concentrating mind feels hazy foggy times gets difficult even regular chores +6075,diabetes,I have a feeling of tremors and muscle twitching. I have decreased sense of smell or taste and I feel fatigued. Sometimes I have a feeling of rapid hearbeat or palipatations,feeling tremors muscle twitching decreased sense smell taste feel fatigued sometimes feeling rapid hearbeat palipatations +6076,diabetes,I have rashes and skin irritations especially in the folds of the skin. There is also very slow healing of any cuts and bruises I have on my skin,rashes skin irritations especially folds skin also slow healing cuts bruises skin +6077,diabetes,I have a frequent need to urinate and often have these uncontrollable urges. I feel dizzy and often confused. I have also been loss of visuals,frequent need urinate often uncontrollable urges feel dizzy often confused also loss visuals +6078,diabetes,I have difficulty breathing especially during physical activity. I have unusual sweating and flushing. I frequently get yeast infections,difficulty breathing especially physical activity unusual sweating flushing frequently get yeast infections +6079,diabetes,I have persistent dry cough. My infections dont seem to be healing and I have palpitations. I also have this problem of sore throat that does seem to go away,persistent dry cough infections dont seem healing palpitations also problem sore throat seem go away +6080,diabetes,"I'm drinking more water and urinating more frequently. My throat and mouth are frequently dry. Recently, my appetite and hunger have both grown.","drinking water urinating frequently throat mouth frequently dry recently , appetite hunger grown" +6081,diabetes,"My vision is foggy, and it seems to be growing worse. I'm constantly feeling worn out and exhausted. Additionally, I occasionally have severe lightheadedness and dizziness.","vision foggy , seems growing worse constantly feeling worn exhausted additionally , occasionally severe lightheadedness dizziness" +6082,diabetes,My throat and mouth are dry. I've also been feeling more hungry and more hungry. But sometimes I do feel quite exhausted.,throat mouth dry also feeling hungry hungry sometimes feel quite exhausted +6083,diabetes,I have a sluggish wound and reduced healing rate. My hands and feet are both numb and have this tingling sensation.,sluggish wound reduced healing rate hands feet numb tingling sensation +6084,diabetes,"I struggle to focus and have emotional swings. At times, my head seems cloudy and foggy, making it challenging for me to do even simple tasks.","struggle focus emotional swings times , head seems cloudy foggy , making challenging even simple tasks" +6085,diabetes,I feel my muscles trembling and shaking. I feel worn out and my senses of taste and smell have diminished. Sometimes I have palpitations or a quick heartbeat.,feel muscles trembling shaking feel worn senses taste smell diminished sometimes palpitations quick heartbeat +6086,diabetes,"I experience skin irritations and rashes, especially in my skin's creases. Any wounds and bruises I have on my skin also heal quite slowly.","experience skin irritations rashes , especially skin creases wounds bruises skin also heal quite slowly" +6087,diabetes,I frequently feel the want to urinate and frequently have these strong cravings. I frequently feel woozy and bewildered. I've also had sight loss.,frequently feel want urinate frequently strong cravings frequently feel woozy bewildered also sight loss +6088,diabetes,"I have trouble breathing, especially when exercising. I'm flushed and sweating in an unexpected way. I have yeast infections a lot.","trouble breathing , especially exercising flushed sweating unexpected way yeast infections lot" +6089,diabetes,"I have a chronic dry cough. I have palpitations and my infections don't appear to be getting better. I also have a painful throat issue, although it does seem to go away.","chronic dry cough palpitations infections appear getting better also painful throat issue , although seem go away" +6090,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat regularly feel dry. My appetite and hunger have both increased recently.,water intake frequency urination increased mouth throat regularly feel dry appetite hunger increased recently +6091,diabetes,"I have blurry vision, and it seems to be getting worse. I'm continuously fatigued and worn out. I also occasionally have acute lightheadedness and vertigo.","blurry vision , seems getting worse continuously fatigued worn also occasionally acute lightheadedness vertigo" +6092,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. But on occasion, I do feel rather worn out.","mouth throat dry additionally , growing increasingly hungry occasion , feel rather worn" +6093,diabetes,My wound is healing slowly and at a slower rate. My hands and feet are numb and tingling at the same time.,wound healing slowly slower rate hands feet numb tingling time +6094,diabetes,"I have trouble focusing, and my emotions fluctuate. My brain might seem murky and foggy at times, making it difficult for me to complete even straightforward chores.","trouble focusing , emotions fluctuate brain might seem murky foggy times , making difficult complete even straightforward chores" +6095,diabetes,"My body is shaking and trembling. My senses of taste and smell have gotten weaker, and I feel exhausted. I occasionally have palpitations or a rapid pulse.","body shaking trembling senses taste smell gotten weaker , feel exhausted occasionally palpitations rapid pulse" +6096,diabetes,"I have rashes and skin irritations, especially in the crevices of my skin. My skin bruises and cuts also take a long time to heal.","rashes skin irritations , especially crevices skin skin bruises cuts also take long time heal" +6097,diabetes,I often feel the want to urinate and experience these intense desires. I often feel dizzy and confused. I also lost my sight.,often feel want urinate experience intense desires often feel dizzy confused also lost sight +6098,diabetes,"I have respiratory issues, especially when doing out. Unexpectedly, I'm sweating and flushed. I frequently have yeast infections and urinary tract infections","respiratory issues , especially unexpectedly , sweating flushed frequently yeast infections urinary tract infections" +6099,diabetes,"I constantly have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat hurts occasionally, but it does appear to get better.","constantly dry cough infections seem healing , palpitations throat hurts occasionally , appear get better" +6100,diabetes,"I've been drinking more water and urinating more frequently. My throat and mouth frequently feel dry. Recently, both my hunger and appetite have grown.","drinking water urinating frequently throat mouth frequently feel dry recently , hunger appetite grown" +6101,diabetes,"My vision is foggy, and it appears to be growing worse. I feel exhausted and worn out all the time. I also have severe dizziness and lightheadedness on occasion.","vision foggy , appears growing worse feel exhausted worn time also severe dizziness lightheadedness occasion" +6102,diabetes,"My throat and mouth are dry. I've also been getting hungry more and more. I do, however, occasionally feel rather exhausted.","throat mouth dry also getting hungry , however , occasionally feel rather exhausted" +6103,diabetes,My wound is recovering more slowly now. Both my hands and feet are tingling and going numb. I feel very weak,wound recovering slowly hands feet tingling going numb feel weak +6104,diabetes,"My emotions change, and I have difficulties focusing. At times, my mind might be cloudy and hazy, making it challenging for me to do even simple tasks.","emotions change , difficulties focusing times , mind might cloudy hazy , making challenging even simple tasks" +6105,diabetes,"My entire body is trembling and shaky. I've lost my ability to taste and smell, and I'm worn out. I sometimes get a racing heart or palpitations.","entire body trembling shaky lost ability taste smell , worn sometimes get racing heart palpitations" +6106,diabetes,"I get skin irritations and rashes, especially in my skin's crevices. Cuts and bruises on my skin also take a while to heal.","get skin irritations rashes , especially skin crevices cuts bruises skin also take heal" +6107,diabetes,"I frequently feel the want to urinate and have these strong cravings. I get woozy and disoriented a lot. Moreover, I have lost my vision considerably","frequently feel want urinate strong cravings get woozy disoriented lot moreover , lost vision considerably" +6108,diabetes,"I have breathing problems, especially when I'm outside. I'm suddenly flushed and perspiring. I experience yeast infections and urinary tract infections rather regularly.","breathing problems , especially outside suddenly flushed perspiring experience yeast infections urinary tract infections rather regularly" +6109,diabetes,"I have a dry cough that never stops. I have palpitations and my infections don't appear to be getting better. Sometimes my throat hurts, but it seems to get better.","dry cough never stops palpitations infections appear getting better sometimes throat hurts , seems get better" +6110,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat feel dry a lot. My hunger and appetite have both increased recently.,water intake frequency urination increased mouth throat feel dry lot hunger appetite increased recently +6111,diabetes,"My vision is blurry, and it feels like it's getting worse. All the time, I feel worn out and fatigued. I occasionally have extreme lightheadedness and vertigo as well.","vision blurry , feels like getting worse time , feel worn fatigued occasionally extreme lightheadedness vertigo well" +6112,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. However, I do get periodic bouts of exhaustion.","mouth throat dry additionally , growing increasingly hungry however , get periodic bouts exhaustion" +6113,diabetes,My wound is healing more slowly these days. My feet and hands are tingling and becoming numb. I feel really fragile.,wound healing slowly days feet hands tingling becoming numb feel really fragile +6114,diabetes,"My emotions fluctuate, and it's hard for me to concentrate. My mind can be foggy and foggy at times, making it difficult for me to perform even simple chores.","emotions fluctuate , hard concentrate mind foggy foggy times , making difficult perform even simple chores" +6115,diabetes,"I'm shaking and trembling all over. I've lost my sense of taste and smell, and I'm exhausted. I occasionally get palpitations or a speeding heart.","shaking trembling lost sense taste smell , exhausted occasionally get palpitations speeding heart" +6116,diabetes,"Particularly in the crevices of my skin, I have skin rashes and irritations. My skin bruises and cuts take a while to heal as well.","particularly crevices skin , skin rashes irritations skin bruises cuts take heal well" +6117,diabetes,I regularly experience these intense urges and the want to urinate. I frequently feel drowsy and lost. I've also significantly lost my vision.,regularly experience intense urges want urinate frequently feel drowsy lost also significantly lost vision +6118,diabetes,"I have trouble breathing, especially outside. I start to feel hot and start to sweat. I frequently have urinary tract infections and yeast infections.","trouble breathing , especially outside start feel hot start sweat frequently urinary tract infections yeast infections" +6119,diabetes,"I constantly sneeze and have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat does ache occasionally, but it usually gets better.","constantly sneeze dry cough infections seem healing , palpitations throat ache occasionally , usually gets better" diff --git a/LLMs/logistic_regression_model.pkl b/LLMs/logistic_regression_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..70dff0ca349c678253237465986bdba5753f9b90 --- /dev/null +++ b/LLMs/logistic_regression_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd5b38cded9c2b4426bb8cc9f337cd078973f5488e2692f3ecd21db3cc41c96 +size 601655 diff --git a/LLMs/training_data.csv b/LLMs/training_data.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd73f9f53d7757b10a5b9e0a8457d0e5f8dade92 --- /dev/null +++ b/LLMs/training_data.csv @@ -0,0 +1,4921 @@ +itching,skin_rash,nodal_skin_eruptions,continuous_sneezing,shivering,chills,joint_pain,stomach_pain,acidity,ulcers_on_tongue,muscle_wasting,vomiting,burning_micturition,spotting_ urination,fatigue,weight_gain,anxiety,cold_hands_and_feets,mood_swings,weight_loss,restlessness,lethargy,patches_in_throat,irregular_sugar_level,cough,high_fever,sunken_eyes,breathlessness,sweating,dehydration,indigestion,headache,yellowish_skin,dark_urine,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,constipation,abdominal_pain,diarrhoea,mild_fever,yellow_urine,yellowing_of_eyes,acute_liver_failure,fluid_overload,swelling_of_stomach,swelled_lymph_nodes,malaise,blurred_and_distorted_vision,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,weakness_in_limbs,fast_heart_rate,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus,neck_pain,dizziness,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,excessive_hunger,extra_marital_contacts,drying_and_tingling_lips,slurred_speech,knee_pain,hip_joint_pain,muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,spinning_movements,loss_of_balance,unsteadiness,weakness_of_one_body_side,loss_of_smell,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine,passage_of_gases,internal_itching,toxic_look_(typhos),depression,irritability,muscle_pain,altered_sensorium,red_spots_over_body,belly_pain,abnormal_menstruation,dischromic _patches,watering_from_eyes,increased_appetite,polyuria,family_history,mucoid_sputum,rusty_sputum,lack_of_concentration,visual_disturbances,receiving_blood_transfusion,receiving_unsterile_injections,coma,stomach_bleeding,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload,blood_in_sputum,prominent_veins_on_calf,palpitations,painful_walking,pus_filled_pimples,blackheads,scurring,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails,blister,red_sore_around_nose,yellow_crust_ooze,prognosis, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, diff --git a/PROJECT_OVERVIEW.md b/PROJECT_OVERVIEW.md new file mode 100644 index 0000000000000000000000000000000000000000..bbc6c0d3dc2961d72844c0c25cab37dd9bcdfb3d --- /dev/null +++ b/PROJECT_OVERVIEW.md @@ -0,0 +1,70 @@ +### Project Overview - Medi Scape +Medi Scape is a healthcare application that allows users to upload prescription images, which are then processed to extract and analyze the text. The key components include image processing, text recognition, and context understanding using machine learning models. + +### Workflow Steps + +1. **User Uploads Prescription Image** + - **Frontend**: User uploads an image via the Streamlit app. + - **Action**: The image is sent to the backend for processing. + +2. **Backend Receives Image** + - **Backend**: The Django server receives the uploaded image. + - **Action**: The backend calls the Doctor's Handwriting Detection API to detect handwriting. + +3. **Doctor's Handwriting Detection API** + - **API**: The uploaded image is processed to detect bounding boxes and classify the handwritten text. + - **Action**: The API returns the bounding boxes and classified text to the backend. + +4. **Backend Calls OCR Model** + - **Backend**: Extract bounding boxes and classes from the API response. + - **Action**: Send the bounding boxes to an OCR model to convert the handwriting to text. + +5. **Backend Processes OCR Text** + - **Backend**: The OCR model returns the detected text. + - **Action**: Send the detected text to the Falcon LLM model via the AI71 API for context understanding. + +6. **Falcon LLM Model via AI71 API** + - **API**: The detected text is processed for context understanding by the Falcon LLM model. + - **Action**: The processed text is returned to the backend. + +7. **Backend Sends Final Results to Frontend** + - **Backend**: The final processed text received from the AI71 API. + - **Action**: Send the final results back to the frontend (Streamlit app) for user display. + +### Checklist / To-Do List + +1. **Frontend Development**: + - [x] Implement image upload functionality in the Streamlit app. + - [x] Ensure the image is correctly sent to the backend. + +2. **Backend Development**: + - [x] Set up Django server to receive and handle uploaded images. + - [x] Integrate Doctor's Handwriting Detection API to process the images. + - [x] Extract bounding boxes and classes from the API response. + - [x] Integrate OCR model to convert bounding boxes to text. + - [x] Process the OCR text using the Falcon LLM model via AI71 API. + - [x] Send the final processed text to the frontend. + +3. **API Integration**: + - [x] Ensure proper integration of the Doctor's Handwriting Detection API. + - [x] Ensure proper integration of the Falcon LLM model via AI71 API. + - [x] Implement fallback solutions (like iframes) for Streamlit if API integration fails. + +4. **Deployment**: + - [x] Deploy the handwriting classification API on HuggingFace. + - [x] Deploy the Streamlit app and ensure it is linked correctly with the backend. + - [x] Hide the HuggingFace name in the deployed interface for security reasons. + +5. **Testing and Validation**: + - [x] Test the entire workflow from image upload to final text display. + - [x] Validate the accuracy of the handwriting detection and OCR models. + - [x] Ensure the Falcon LLM model provides accurate and contextually relevant text analysis. + +6. **Documentation and Communication**: + - [x] Document the workflow and API integration steps. + - [x] Communicate with the team leader for the exact prompt required for the healthcare automation part. + - [x] Keep the team updated on progress and any issues encountered. + +7. **Deadline Management**: + - [x] Ensure all tasks are completed by the deadline (August 6). + diff --git a/README.md b/README.md index 1685c95a29fef8deda3378efb4bc125714392cbc..9b0beaabd734e6d704ec55473edf4dc27e6ac6db 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ --- -title: Medi Scape -emoji: 🢠-colorFrom: green -colorTo: yellow +title: Healthcare Ai Falcon Hackathon +emoji: 🔥 +colorFrom: purple +colorTo: blue sdk: streamlit sdk_version: 1.37.1 app_file: app.py pinned: false -license: mit +license: apache-2.0 --- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/Symptoms_Detection/LLMs_chatbot.ipynb b/Symptoms_Detection/LLMs_chatbot.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..ac5219cf3a0206593b5584f69e615d54c81a740e --- /dev/null +++ b/Symptoms_Detection/LLMs_chatbot.ipynb @@ -0,0 +1,1531 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 15, + "id": "583798df-96c2-4e10-b31b-739f380a2826", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "f050d62d-03c4-4900-898b-a0ed65e8e124", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
itchingskin_rashnodal_skin_eruptionscontinuous_sneezingshiveringchillsjoint_painstomach_painacidityulcers_on_tongue...scurringskin_peelingsilver_like_dustingsmall_dents_in_nailsinflammatory_nailsblisterred_sore_around_noseyellow_crust_oozeprognosisUnnamed: 133
01110000000...00000000Fungal infectionNaN
10110000000...00000000Fungal infectionNaN
21010000000...00000000Fungal infectionNaN
31100000000...00000000Fungal infectionNaN
41110000000...00000000Fungal infectionNaN
..................................................................
49150000000000...00000000(vertigo) Paroymsal Positional VertigoNaN
49160100000000...10000000AcneNaN
49170000000000...00000000Urinary tract infectionNaN
49180100001000...01111000PsoriasisNaN
49190100000000...00000111ImpetigoNaN
\n", + "

4920 rows × 134 columns

\n", + "
" + ], + "text/plain": [ + " itching skin_rash nodal_skin_eruptions continuous_sneezing \\\n", + "0 1 1 1 0 \n", + "1 0 1 1 0 \n", + "2 1 0 1 0 \n", + "3 1 1 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 1 0 0 \n", + "4917 0 0 0 0 \n", + "4918 0 1 0 0 \n", + "4919 0 1 0 0 \n", + "\n", + " shivering chills joint_pain stomach_pain acidity ulcers_on_tongue \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 \n", + "... ... ... ... ... ... ... \n", + "4915 0 0 0 0 0 0 \n", + "4916 0 0 0 0 0 0 \n", + "4917 0 0 0 0 0 0 \n", + "4918 0 0 1 0 0 0 \n", + "4919 0 0 0 0 0 0 \n", + "\n", + " ... scurring skin_peeling silver_like_dusting small_dents_in_nails \\\n", + "0 ... 0 0 0 0 \n", + "1 ... 0 0 0 0 \n", + "2 ... 0 0 0 0 \n", + "3 ... 0 0 0 0 \n", + "4 ... 0 0 0 0 \n", + "... ... ... ... ... ... \n", + "4915 ... 0 0 0 0 \n", + "4916 ... 1 0 0 0 \n", + "4917 ... 0 0 0 0 \n", + "4918 ... 0 1 1 1 \n", + "4919 ... 0 0 0 0 \n", + "\n", + " inflammatory_nails blister red_sore_around_nose yellow_crust_ooze \\\n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 0 0 0 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 0 0 0 \n", + "4917 0 0 0 0 \n", + "4918 1 0 0 0 \n", + "4919 0 1 1 1 \n", + "\n", + " prognosis Unnamed: 133 \n", + "0 Fungal infection NaN \n", + "1 Fungal infection NaN \n", + "2 Fungal infection NaN \n", + "3 Fungal infection NaN \n", + "4 Fungal infection NaN \n", + "... ... ... \n", + "4915 (vertigo) Paroymsal Positional Vertigo NaN \n", + "4916 Acne NaN \n", + "4917 Urinary tract infection NaN \n", + "4918 Psoriasis NaN \n", + "4919 Impetigo NaN \n", + "\n", + "[4920 rows x 134 columns]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_1= pd.read_csv(\"training_data.csv\")\n", + "dataset_1" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "f973616d-c9d3-44ab-900f-e8ac849ca2b9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "itching\n", + "skin_rash\n", + "nodal_skin_eruptions\n", + "continuous_sneezing\n", + "shivering\n", + "chills\n", + "joint_pain\n", + "stomach_pain\n", + "acidity\n", + "ulcers_on_tongue\n", + "muscle_wasting\n", + "vomiting\n", + "burning_micturition\n", + "spotting_ urination\n", + "fatigue\n", + "weight_gain\n", + "anxiety\n", + "cold_hands_and_feets\n", + "mood_swings\n", + "weight_loss\n", + "restlessness\n", + "lethargy\n", + "patches_in_throat\n", + "irregular_sugar_level\n", + "cough\n", + "high_fever\n", + "sunken_eyes\n", + "breathlessness\n", + "sweating\n", + "dehydration\n", + "indigestion\n", + "headache\n", + "yellowish_skin\n", + "dark_urine\n", + "nausea\n", + "loss_of_appetite\n", + "pain_behind_the_eyes\n", + "back_pain\n", + "constipation\n", + "abdominal_pain\n", + "diarrhoea\n", + "mild_fever\n", + "yellow_urine\n", + "yellowing_of_eyes\n", + "acute_liver_failure\n", + "fluid_overload\n", + "swelling_of_stomach\n", + "swelled_lymph_nodes\n", + "malaise\n", + "blurred_and_distorted_vision\n", + "phlegm\n", + "throat_irritation\n", + "redness_of_eyes\n", + "sinus_pressure\n", + "runny_nose\n", + "congestion\n", + "chest_pain\n", + "weakness_in_limbs\n", + "fast_heart_rate\n", + "pain_during_bowel_movements\n", + "pain_in_anal_region\n", + "bloody_stool\n", + "irritation_in_anus\n", + "neck_pain\n", + "dizziness\n", + "cramps\n", + "bruising\n", + "obesity\n", + "swollen_legs\n", + "swollen_blood_vessels\n", + "puffy_face_and_eyes\n", + "enlarged_thyroid\n", + "brittle_nails\n", + "swollen_extremeties\n", + "excessive_hunger\n", + "extra_marital_contacts\n", + "drying_and_tingling_lips\n", + "slurred_speech\n", + "knee_pain\n", + "hip_joint_pain\n", + "muscle_weakness\n", + "stiff_neck\n", + "swelling_joints\n", + "movement_stiffness\n", + "spinning_movements\n", + "loss_of_balance\n", + "unsteadiness\n", + "weakness_of_one_body_side\n", + "loss_of_smell\n", + "bladder_discomfort\n", + "foul_smell_of urine\n", + "continuous_feel_of_urine\n", + "passage_of_gases\n", + "internal_itching\n", + "toxic_look_(typhos)\n", + "depression\n", + "irritability\n", + "muscle_pain\n", + "altered_sensorium\n", + "red_spots_over_body\n", + "belly_pain\n", + "abnormal_menstruation\n", + "dischromic _patches\n", + "watering_from_eyes\n", + "increased_appetite\n", + "polyuria\n", + "family_history\n", + "mucoid_sputum\n", + "rusty_sputum\n", + "lack_of_concentration\n", + "visual_disturbances\n", + "receiving_blood_transfusion\n", + "receiving_unsterile_injections\n", + "coma\n", + "stomach_bleeding\n", + "distention_of_abdomen\n", + "history_of_alcohol_consumption\n", + "fluid_overload.1\n", + "blood_in_sputum\n", + "prominent_veins_on_calf\n", + "palpitations\n", + "painful_walking\n", + "pus_filled_pimples\n", + "blackheads\n", + "scurring\n", + "skin_peeling\n", + "silver_like_dusting\n", + "small_dents_in_nails\n", + "inflammatory_nails\n", + "blister\n", + "red_sore_around_nose\n", + "yellow_crust_ooze\n", + "prognosis\n", + "Unnamed: 133\n" + ] + } + ], + "source": [ + "for i in dataset_1.columns:\n", + " print(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "aefac4ad-7d02-4d6c-a57a-3d747236f6d9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original DataFrame:\n", + " itching skin_rash nodal_skin_eruptions continuous_sneezing \\\n", + "0 1 1 1 0 \n", + "1 0 1 1 0 \n", + "2 1 0 1 0 \n", + "3 1 1 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 1 0 0 \n", + "4917 0 0 0 0 \n", + "4918 0 1 0 0 \n", + "4919 0 1 0 0 \n", + "\n", + " shivering chills joint_pain stomach_pain acidity ulcers_on_tongue \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 \n", + "... ... ... ... ... ... ... \n", + "4915 0 0 0 0 0 0 \n", + "4916 0 0 0 0 0 0 \n", + "4917 0 0 0 0 0 0 \n", + "4918 0 0 1 0 0 0 \n", + "4919 0 0 0 0 0 0 \n", + "\n", + " ... skin_peeling silver_like_dusting small_dents_in_nails \\\n", + "0 ... 0 0 0 \n", + "1 ... 0 0 0 \n", + "2 ... 0 0 0 \n", + "3 ... 0 0 0 \n", + "4 ... 0 0 0 \n", + "... ... ... ... ... \n", + "4915 ... 0 0 0 \n", + "4916 ... 0 0 0 \n", + "4917 ... 0 0 0 \n", + "4918 ... 1 1 1 \n", + "4919 ... 0 0 0 \n", + "\n", + " inflammatory_nails blister red_sore_around_nose yellow_crust_ooze \\\n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 0 0 0 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 0 0 0 \n", + "4917 0 0 0 0 \n", + "4918 1 0 0 0 \n", + "4919 0 1 1 1 \n", + "\n", + " prognosis Unnamed: 133 \\\n", + "0 Fungal infection NaN \n", + "1 Fungal infection NaN \n", + "2 Fungal infection NaN \n", + "3 Fungal infection NaN \n", + "4 Fungal infection NaN \n", + "... ... ... \n", + "4915 (vertigo) Paroymsal Positional Vertigo NaN \n", + "4916 Acne NaN \n", + "4917 Urinary tract infection NaN \n", + "4918 Psoriasis NaN \n", + "4919 Impetigo NaN \n", + "\n", + " symptoms_text \n", + "0 itching,skin_rash,nodal_skin_eruptions,dischro... \n", + "1 skin_rash,nodal_skin_eruptions,dischromic _pat... \n", + "2 itching,nodal_skin_eruptions,dischromic _patches \n", + "3 itching,skin_rash,dischromic _patches \n", + "4 itching,skin_rash,nodal_skin_eruptions \n", + "... ... \n", + "4915 vomiting,headache,nausea,spinning_movements,lo... \n", + "4916 skin_rash,pus_filled_pimples,blackheads,scurring \n", + "4917 burning_micturition,bladder_discomfort,foul_sm... \n", + "4918 skin_rash,joint_pain,skin_peeling,silver_like_... \n", + "4919 skin_rash,high_fever,blister,red_sore_around_n... \n", + "\n", + "[4920 rows x 135 columns]\n" + ] + } + ], + "source": [ + "\n", + "# Create a new column with merged column names where value is 1\n", + "dataset_1['symptoms_text'] = dataset_1.apply(lambda row: ','.join([col for col in dataset_1.columns if row[col] == 1]), axis=1)\n", + "\n", + "print(\"Original DataFrame:\")\n", + "print(dataset_1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "0d1d7c39-0ba5-46fe-801f-af57bdecca4d", + "metadata": {}, + "outputs": [], + "source": [ + "#dataset_1.to_csv(\"training_data_after_changes.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "7a6aaacc-8ada-4b0a-9417-551064c4ccd5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
labeltext
0Fungal infectionitching,skin_rash,nodal_skin_eruptions,dischro...
1Fungal infectionskin_rash,nodal_skin_eruptions,dischromic _pat...
2Fungal infectionitching,nodal_skin_eruptions,dischromic _patches
3Fungal infectionitching,skin_rash,dischromic _patches
4Fungal infectionitching,skin_rash,nodal_skin_eruptions
.........
4915(vertigo) Paroymsal Positional Vertigovomiting,headache,nausea,spinning_movements,lo...
4916Acneskin_rash,pus_filled_pimples,blackheads,scurring
4917Urinary tract infectionburning_micturition,bladder_discomfort,foul_sm...
4918Psoriasisskin_rash,joint_pain,skin_peeling,silver_like_...
4919Impetigoskin_rash,high_fever,blister,red_sore_around_n...
\n", + "

4920 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " label \\\n", + "0 Fungal infection \n", + "1 Fungal infection \n", + "2 Fungal infection \n", + "3 Fungal infection \n", + "4 Fungal infection \n", + "... ... \n", + "4915 (vertigo) Paroymsal Positional Vertigo \n", + "4916 Acne \n", + "4917 Urinary tract infection \n", + "4918 Psoriasis \n", + "4919 Impetigo \n", + "\n", + " text \n", + "0 itching,skin_rash,nodal_skin_eruptions,dischro... \n", + "1 skin_rash,nodal_skin_eruptions,dischromic _pat... \n", + "2 itching,nodal_skin_eruptions,dischromic _patches \n", + "3 itching,skin_rash,dischromic _patches \n", + "4 itching,skin_rash,nodal_skin_eruptions \n", + "... ... \n", + "4915 vomiting,headache,nausea,spinning_movements,lo... \n", + "4916 skin_rash,pus_filled_pimples,blackheads,scurring \n", + "4917 burning_micturition,bladder_discomfort,foul_sm... \n", + "4918 skin_rash,joint_pain,skin_peeling,silver_like_... \n", + "4919 skin_rash,high_fever,blister,red_sore_around_n... \n", + "\n", + "[4920 rows x 2 columns]" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "final_dataset = pd.DataFrame(dataset_1[[\"prognosis\",\"symptoms_text\"]])\n", + "final_dataset.columns = ['label', 'text']\n", + "#final_dataset.to_csv(\"final_dataset.csv\")\n", + "final_dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "38e843fa-0162-49ab-a879-7436330e78c3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
labeltext
0PsoriasisI have been experiencing a skin rash on my arm...
1PsoriasisMy skin has been peeling, especially on my kne...
2PsoriasisI have been experiencing joint pain in my fing...
3PsoriasisThere is a silver like dusting on my skin, esp...
4PsoriasisMy nails have small dents or pits in them, and...
.........
1195diabetesI'm shaking and trembling all over. I've lost ...
1196diabetesParticularly in the crevices of my skin, I hav...
1197diabetesI regularly experience these intense urges and...
1198diabetesI have trouble breathing, especially outside. ...
1199diabetesI constantly sneeze and have a dry cough. My i...
\n", + "

1200 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " label text\n", + "0 Psoriasis I have been experiencing a skin rash on my arm...\n", + "1 Psoriasis My skin has been peeling, especially on my kne...\n", + "2 Psoriasis I have been experiencing joint pain in my fing...\n", + "3 Psoriasis There is a silver like dusting on my skin, esp...\n", + "4 Psoriasis My nails have small dents or pits in them, and...\n", + "... ... ...\n", + "1195 diabetes I'm shaking and trembling all over. I've lost ...\n", + "1196 diabetes Particularly in the crevices of my skin, I hav...\n", + "1197 diabetes I regularly experience these intense urges and...\n", + "1198 diabetes I have trouble breathing, especially outside. ...\n", + "1199 diabetes I constantly sneeze and have a dry cough. My i...\n", + "\n", + "[1200 rows x 2 columns]" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "dataset_2= pd.read_csv(\"Symptom2Disease.csv\")\n", + "dataset_2 = dataset_2[[\"label\",\"text\"]]\n", + "dataset_2" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "d71a0ba4-586c-4ba6-9455-83def77d87c5", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
labeltext
0Fungal infectionitching,skin_rash,nodal_skin_eruptions,dischro...
1Fungal infectionskin_rash,nodal_skin_eruptions,dischromic _pat...
2Fungal infectionitching,nodal_skin_eruptions,dischromic _patches
3Fungal infectionitching,skin_rash,dischromic _patches
4Fungal infectionitching,skin_rash,nodal_skin_eruptions
.........
6115diabetesI'm shaking and trembling all over. I've lost ...
6116diabetesParticularly in the crevices of my skin, I hav...
6117diabetesI regularly experience these intense urges and...
6118diabetesI have trouble breathing, especially outside. ...
6119diabetesI constantly sneeze and have a dry cough. My i...
\n", + "

6120 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " label text\n", + "0 Fungal infection itching,skin_rash,nodal_skin_eruptions,dischro...\n", + "1 Fungal infection skin_rash,nodal_skin_eruptions,dischromic _pat...\n", + "2 Fungal infection itching,nodal_skin_eruptions,dischromic _patches\n", + "3 Fungal infection itching,skin_rash,dischromic _patches\n", + "4 Fungal infection itching,skin_rash,nodal_skin_eruptions\n", + "... ... ...\n", + "6115 diabetes I'm shaking and trembling all over. I've lost ...\n", + "6116 diabetes Particularly in the crevices of my skin, I hav...\n", + "6117 diabetes I regularly experience these intense urges and...\n", + "6118 diabetes I have trouble breathing, especially outside. ...\n", + "6119 diabetes I constantly sneeze and have a dry cough. My i...\n", + "\n", + "[6120 rows x 2 columns]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_combined = pd.concat([final_dataset, dataset_2], axis=0, ignore_index=True)\n", + "df_combined" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "3aeadb4a-91ee-4fd9-a881-c229c3fa174c", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[nltk_data] Downloading package punkt to\n", + "[nltk_data] C:\\Users\\SRIRAM\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package punkt is already up-to-date!\n", + "[nltk_data] Downloading package stopwords to\n", + "[nltk_data] C:\\Users\\SRIRAM\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package stopwords is already up-to-date!\n", + "[nltk_data] Downloading package wordnet to\n", + "[nltk_data] C:\\Users\\SRIRAM\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package wordnet is already up-to-date!\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " label text \\\n", + "0 Fungal infection itching,skin_rash,nodal_skin_eruptions,dischro... \n", + "1 Fungal infection skin_rash,nodal_skin_eruptions,dischromic _pat... \n", + "2 Fungal infection itching,nodal_skin_eruptions,dischromic _patches \n", + "3 Fungal infection itching,skin_rash,dischromic _patches \n", + "4 Fungal infection itching,skin_rash,nodal_skin_eruptions \n", + "... ... ... \n", + "6115 diabetes I'm shaking and trembling all over. I've lost ... \n", + "6116 diabetes Particularly in the crevices of my skin, I hav... \n", + "6117 diabetes I regularly experience these intense urges and... \n", + "6118 diabetes I have trouble breathing, especially outside. ... \n", + "6119 diabetes I constantly sneeze and have a dry cough. My i... \n", + "\n", + " cleaned_text \n", + "0 itching , skin rash , nodal skin eruptions , d... \n", + "1 skin rash , nodal skin eruptions , dischromic ... \n", + "2 itching , nodal skin eruptions , dischromic pa... \n", + "3 itching , skin rash , dischromic patches \n", + "4 itching , skin rash , nodal skin eruptions \n", + "... ... \n", + "6115 shaking trembling lost sense taste smell , exh... \n", + "6116 particularly crevices skin , skin rashes irrit... \n", + "6117 regularly experience intense urges want urinat... \n", + "6118 trouble breathing , especially outside start f... \n", + "6119 constantly sneeze dry cough infections seem he... \n", + "\n", + "[6120 rows x 3 columns]\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import re\n", + "import string\n", + "from nltk.tokenize import word_tokenize\n", + "from nltk.corpus import stopwords\n", + "from nltk.stem import WordNetLemmatizer\n", + "import nltk\n", + "\n", + "# Download necessary NLTK data files\n", + "nltk.download('punkt')\n", + "nltk.download('stopwords')\n", + "nltk.download('wordnet')\n", + "\n", + "def preprocess_text(text):\n", + " # Convert to lowercase\n", + " text = text.lower()\n", + " \n", + " cleaned_text = re.sub(r'[^a-zA-Z0-9\\s\\,]', ' ', text)\n", + " # Tokenize text\n", + " tokens = word_tokenize(cleaned_text)\n", + " \n", + " # Remove stop words\n", + " stop_words = set(stopwords.words('english'))\n", + " tokens = [word for word in tokens if word not in stop_words]\n", + " \n", + " \n", + " # Rejoin tokens into a single string\n", + " cleaned_text = ' '.join(tokens)\n", + " \n", + " return cleaned_text\n", + "\n", + "df_combined[\"cleaned_text\"] = df_combined[\"text\"].apply(preprocess_text)\n", + "\n", + "print(df_combined)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "613b0739-105c-4ab8-b150-e1d7a839db65", + "metadata": {}, + "outputs": [], + "source": [ + "df_combined.to_csv(\"final_dataset_llms.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "7e4af353-0552-4951-ae5e-c04d01cc59aa", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy: 0.99\n", + "Classification Report:\n", + " precision recall f1-score support\n", + "\n", + "(vertigo) Paroymsal Positional Vertigo 1.00 1.00 1.00 22\n", + " AIDS 1.00 1.00 1.00 28\n", + " Acne 1.00 1.00 1.00 33\n", + " Alcoholic hepatitis 1.00 1.00 1.00 19\n", + " Allergy 1.00 1.00 1.00 26\n", + " Arthritis 1.00 1.00 1.00 33\n", + " Bronchial Asthma 1.00 1.00 1.00 37\n", + " Cervical spondylosis 1.00 1.00 1.00 45\n", + " Chicken pox 0.97 1.00 0.99 33\n", + " Chronic cholestasis 1.00 1.00 1.00 28\n", + " Common Cold 1.00 0.96 0.98 28\n", + " Dengue 1.00 0.97 0.99 37\n", + " Diabetes 1.00 1.00 1.00 19\n", + " Dimorphic Hemorrhoids 1.00 1.00 1.00 8\n", + " Dimorphic hemmorhoids(piles) 1.00 1.00 1.00 24\n", + " Drug Reaction 1.00 1.00 1.00 17\n", + " Fungal infection 1.00 1.00 1.00 37\n", + " GERD 1.00 1.00 1.00 28\n", + " Gastroenteritis 1.00 1.00 1.00 21\n", + " Heart attack 1.00 1.00 1.00 26\n", + " Hepatitis B 1.00 1.00 1.00 25\n", + " Hepatitis C 1.00 1.00 1.00 21\n", + " Hepatitis D 1.00 1.00 1.00 22\n", + " Hepatitis E 1.00 1.00 1.00 18\n", + " Hypertension 1.00 1.00 1.00 8\n", + " Hypertension 1.00 1.00 1.00 21\n", + " Hyperthyroidism 1.00 1.00 1.00 25\n", + " Hypoglycemia 1.00 1.00 1.00 29\n", + " Hypothyroidism 1.00 1.00 1.00 18\n", + " Impetigo 0.97 1.00 0.99 39\n", + " Jaundice 1.00 1.00 1.00 33\n", + " Malaria 1.00 1.00 1.00 27\n", + " Migraine 1.00 1.00 1.00 32\n", + " Osteoarthristis 1.00 1.00 1.00 20\n", + " Paralysis (brain hemorrhage) 1.00 1.00 1.00 22\n", + " Peptic ulcer diseae 1.00 1.00 1.00 24\n", + " Pneumonia 1.00 1.00 1.00 36\n", + " Psoriasis 1.00 0.95 0.97 38\n", + " Tuberculosis 1.00 1.00 1.00 32\n", + " Typhoid 1.00 1.00 1.00 33\n", + " Urinary tract infection 1.00 1.00 1.00 24\n", + " Varicose Veins 1.00 1.00 1.00 10\n", + " Varicose veins 1.00 1.00 1.00 29\n", + " allergy 0.82 0.90 0.86 10\n", + " diabetes 0.90 1.00 0.95 9\n", + " drug reaction 1.00 0.88 0.93 16\n", + " gastroesophageal reflux disease 0.90 1.00 0.95 9\n", + " hepatitis A 1.00 1.00 1.00 28\n", + " peptic ulcer disease 0.80 1.00 0.89 4\n", + " urinary tract infection 1.00 1.00 1.00 13\n", + "\n", + " accuracy 0.99 1224\n", + " macro avg 0.99 0.99 0.99 1224\n", + " weighted avg 0.99 0.99 0.99 1224\n", + "\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn.metrics import accuracy_score, classification_report\n", + "\n", + "# Load your dataset\n", + "data = pd.read_csv('final_dataset_llms.csv') # Replace with your file path\n", + "\n", + "# Example columns: 'symptoms' and 'label'\n", + "X = data['cleaned_text']\n", + "y = data['label']\n", + "\n", + "# Convert text data to numerical data\n", + "vectorizer = CountVectorizer()\n", + "X_vectorized = vectorizer.fit_transform(X)\n", + "\n", + "# Split the data into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X_vectorized, y, test_size=0.2, random_state=42)\n", + "\n", + "# Train the model\n", + "model = LogisticRegression()\n", + "model.fit(X_train, y_train)\n", + "\n", + "# Make predictions\n", + "y_pred = model.predict(X_test)\n", + "\n", + "# Evaluate the model\n", + "accuracy = accuracy_score(y_test, y_pred)\n", + "print(f'Accuracy: {accuracy:.2f}')\n", + "print('Classification Report:')\n", + "print(classification_report(y_test, y_pred))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "12f0776f-2cdf-48eb-862b-baad4c05a411", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter symptoms to classify: sneezing and running nose\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Input Symptoms: sneezing and running nose -> Predicted Label: allergy\n", + "['sneezing running nose']\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "# Function to predict new symptoms\n", + "def predict_symptoms(new_symptoms):\n", + " # Ensure new_symptoms is a list\n", + "\n", + " preprocessed_text = preprocess_text(new_symptoms)\n", + "\n", + " if isinstance(preprocessed_text, str):\n", + " new_symptoms = [preprocessed_text]\n", + " \n", + " # Vectorize the new symptoms\n", + " new_symptoms_vectorized = vectorizer.transform(new_symptoms)\n", + " \n", + " # Make predictions\n", + " predictions = model.predict(new_symptoms_vectorized)\n", + " #probabilities = model.predict_proba(new_symptoms_vectorized)\n", + " \n", + " return predictions,new_symptoms\n", + "\n", + "# Get user input\n", + "user_input = input(\"Enter symptoms to classify: \")\n", + "\n", + "# Make a prediction\n", + "predictions,new_symptoms = predict_symptoms(user_input)\n", + "\n", + "print(f\"Input Symptoms: {user_input} -> Predicted Label: {predictions[0]}\")\n", + "print(new_symptoms)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "521087d7-0bd1-4985-956c-ee28c55551ce", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter symptoms to classify: dischromic patches', 'itching , nodal skin eruptions , dischromic patches\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Input Symptoms: dischromic patches', 'itching , nodal skin eruptions , dischromic patches -> Predicted Label: Fungal infection\n", + "1 Fungal infection\n", + "16 Allergy\n", + "Name: label, dtype: object\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "# Function to predict new symptoms\n", + "def predict_symptoms(new_symptoms):\n", + " # Ensure new_symptoms is a list\n", + "\n", + " preprocessed_text = preprocess_text(new_symptoms)\n", + "\n", + " if isinstance(preprocessed_text, str):\n", + " new_symptoms = [preprocessed_text]\n", + " \n", + " # Vectorize the new symptoms\n", + " new_symptoms_vectorized = vectorizer.transform(new_symptoms)\n", + " \n", + " # Make predictions\n", + " predictions = model.predict(new_symptoms_vectorized)\n", + " probabilities = model.predict_proba(new_symptoms_vectorized)\n", + " # Get the indices of the top 2 probabilities\n", + " top_indices = np.argsort(probabilities[0])[-2:] # Get indices of top 2 probabilities\n", + " top_probabilities = probabilities[0][top_indices]\n", + " top_labels = data.label[top_indices]\n", + " # Print the top 2 predictions\n", + " #print(\"Top 2 predictions:\")\n", + " #for i in range(len(top_probabilities)):\n", + " #print(f\"Label: {top_labels[i]}, Probability: {top_probabilities[i]:.4f}\") \n", + " \n", + " return predictions,top_labels\n", + "\n", + "\n", + "\n", + "\n", + "# Get user input\n", + "user_input = input(\"Enter symptoms to classify: \")\n", + "\n", + "# Make a prediction\n", + "predictions,top_labels = predict_symptoms(user_input)\n", + "\n", + "print(f\"Input Symptoms: {user_input} -> Predicted Label: {predictions[0]}\")\n", + "print(top_labels)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "0133d24c-9a70-45f3-abe1-8566f1d989e3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'skin rash , nodal skin eruptions , dischromic patches', 'itching , nodal skin eruptions , dischromic patches', 'itching , skin rash , dischromic patches', 'itching , skin rash , nodal skin eruptions', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'shivering , chills , watering eyes', 'continuous sneezing , chills , watering eyes', 'continuous sneezing , shivering , watering eyes', 'continuous sneezing , shivering , chills', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , chest pain', 'stomach pain , acidity , ulcers tongue , vomiting , cough', 'acidity , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , ulcers tongue , vomiting , cough , chest pain', 'stomach pain , acidity , vomiting , cough , chest pain', 'stomach pain , acidity , ulcers tongue , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'skin rash , stomach pain , burning micturition , spotting urination', 'itching , stomach pain , burning micturition , spotting urination', 'itching , skin rash , burning micturition , spotting urination', 'itching , skin rash , stomach pain , spotting urination', 'itching , skin rash , stomach pain , burning micturition', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , extra marital contacts', 'muscle wasting , patches throat , high fever', 'muscle wasting , patches throat , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever , extra marital contacts', 'patches throat , high fever , extra marital contacts', 'muscle wasting , high fever , extra marital contacts', 'muscle wasting , patches throat , high fever', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'vomiting , sunken eyes , dehydration', 'vomiting , sunken eyes , dehydration , diarrhoea', 'sunken eyes , dehydration , diarrhoea', 'vomiting , dehydration , diarrhoea', 'vomiting , sunken eyes , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'fatigue , cough , breathlessness , family history , mucoid sputum', 'fatigue , cough , high fever , family history , mucoid sputum', 'fatigue , cough , high fever , breathlessness , mucoid sputum', 'fatigue , cough , high fever , breathlessness , family history', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'cough , high fever , breathlessness , family history , mucoid sputum', 'fatigue , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'headache , chest pain , dizziness , lack concentration', 'headache , chest pain , dizziness , loss balance', 'headache , chest pain , dizziness , loss balance , lack concentration', 'chest pain , dizziness , loss balance , lack concentration', 'headache , dizziness , loss balance , lack concentration', 'headache , chest pain , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'back pain , weakness limbs , dizziness , loss balance', 'back pain , weakness limbs , neck pain , loss balance', 'back pain , weakness limbs , neck pain , dizziness', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'weakness limbs , neck pain , dizziness , loss balance', 'back pain , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'vomiting , headache , weakness one body side', 'vomiting , headache , weakness one body side , altered sensorium', 'headache , weakness one body side , altered sensorium', 'vomiting , weakness one body side , altered sensorium', 'vomiting , headache , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain', 'chills , vomiting , high fever , sweating , headache , nausea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'vomiting , breathlessness , sweating', 'vomiting , breathlessness , sweating , chest pain', 'breathlessness , sweating , chest pain', 'vomiting , sweating , chest pain', 'vomiting , breathlessness , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels', 'fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'vomiting , headache , nausea , spinning movements , unsteadiness', 'vomiting , headache , nausea , spinning movements , loss balance', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'vomiting , headache , nausea , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads , scurring', 'pus filled pimples , blackheads , scurring', 'skin rash , blackheads , scurring', 'skin rash , pus filled pimples , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , blackheads , scurring', 'skin rash , pus filled pimples , blackheads', 'skin rash , pus filled pimples , scurring', 'skin rash , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'burning micturition , bladder discomfort , foul smell urine', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'bladder discomfort , foul smell urine , continuous feel urine', 'burning micturition , bladder discomfort , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'skin rash , high fever , red sore around nose , yellow crust ooze', 'skin rash , high fever , blister , yellow crust ooze', 'skin rash , high fever , blister , red sore around nose', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'skin rash , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'itching , skin rash , nodal skin eruptions , dischromic patches', 'continuous sneezing , shivering , chills , watering eyes', 'stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain', 'itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes', 'itching , skin rash , stomach pain , burning micturition , spotting urination', 'vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching', 'muscle wasting , patches throat , high fever , extra marital contacts', 'fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria', 'vomiting , sunken eyes , dehydration , diarrhoea', 'fatigue , cough , high fever , breathlessness , family history , mucoid sputum', 'headache , chest pain , dizziness , loss balance , lack concentration', 'acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances', 'back pain , weakness limbs , neck pain , dizziness , loss balance', 'vomiting , headache , weakness one body side , altered sensorium', 'itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain', 'chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain', 'itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body', 'skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body', 'chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain', 'joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain', 'itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections', 'fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history', 'joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes', 'joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding', 'vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1', 'chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum', 'continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain', 'chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum', 'constipation , pain bowel movements , pain anal region , bloody stool , irritation anus', 'vomiting , breathlessness , sweating , chest pain', 'fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf', 'fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation', 'fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation', 'vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations', 'joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking', 'muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking', 'vomiting , headache , nausea , spinning movements , loss balance , unsteadiness', 'skin rash , pus filled pimples , blackheads , scurring', 'burning micturition , bladder discomfort , foul smell urine , continuous feel urine', 'skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails', 'skin rash , high fever , blister , red sore around nose , yellow crust ooze', 'experiencing skin rash arms , legs , torso past weeks red , itchy , covered dry , scaly patches', 'skin peeling , especially knees , elbows , scalp peeling often accompanied burning stinging sensation', 'experiencing joint pain fingers , wrists , knees pain often achy throbbing , gets worse move joints', 'silver like dusting skin , especially lower back scalp dusting made small scales flake easily scratch', 'nails small dents pits , often feel inflammatory tender touch even minor rashes arms', 'skin palms soles thickened deep cracks cracks painful bleed easily', 'skin around mouth , nose , eyes red inflamed often itchy uncomfortable noticeable inflammation nails', 'skin sensitive reacts easily changes temperature humidity often careful products use skin', 'noticed sudden peeling skin different parts body , mainly arms , legs back also , face severe joint pain skin rashes', 'skin genitals red inflamed often itchy , burning , uncomfortable rashes different parts body', 'experienced fatigue general feeling malaise often feel tired lack energy , even good night sleep', 'rash skin spread parts body , including chest abdomen itchy uncomfortable , often worse night also facing skin peeling', 'rash skin worse winter months air dry find moisturize frequently use humidifiers keep skin hydrated', 'experienced difficulty sleeping due itching discomfort caused rash small dents nails , really concerning', 'skin prone infections due dry , flaky patches experiencing strong pain joints skin knees elbows starting peel', 'starting rashes skin rash often bleeds scratch rub moreover , noticed small dents nails', 'noticed skin become sensitive used silver like dusting skin , especially back elbows', 'worried constant peeling skin palm , elbow knee developed rashes arms , itch touch making life quite discomforting miserable', 'strange pain joints also , noticed strange peeling skin different parts body afraid something wrong going body', 'nails small dents even joints started pain severely silver like dusting skin , particularly back', 'rashes skin healing moreover , noticed sudden peeling skin , especially skin elbows knees really worried', 'past weeks , skin rash arms , legs , chest red irritating , dry , scaly spots strange pain joints', 'skin peeling , particularly knees , elbows , scalp peeling frequently accompanied stinging burning feeling', 'joint discomfort fingers , wrists , knees pain frequently aching throbbing , worsens move joints', 'skin silvery film , particularly back , arms scalp dusting composed tiny scales easily peel scratched', 'red inflammatory skin around mouth , nose , eyes frequently irritating unpleasant recently , got painful', 'skin extremely sensitive quickly irritated changes temperature humidity nails developed dents worried sudden change', 'seen sudden peeling skin various regions body , mostly arms , legs , back addition , significant joint pain skin rashes rash spreading different parts body', 'genital skin red irritated frequently irritating , burning , unpleasant also rashes various places body also , strange pain joints', 'trouble sleeping itching pain produced rash nails little dents , really alarming noticeable inflammation nails', 'dry , flaky areas skin , prone infections joints excruciating agony skin knees elbows beginning flake', 'skin breaking rashes scratch rub rash , frequently bleeds addition , observed little dents nails noticeable inflammation nails', 'observed skin sensitive used skin silvery film , especially back elbows', 'palms soles grown developed severe fissures cracks unpleasant frequently bleed also , skin starting peel', 'nails starting small pits worried know causing also , joints pain rashes arms back', 'silver like dusting skin moreover , skin arms back starting peel strange really concerning', 'skin rash extended areas body , including chest belly irritating unpleasant , frequently worst night also experiencing skin flaking', 'skin rash gets worse winter air dry keep skin moisturized , moisturize regularly use humidifiers also facing joint pain', 'trouble sleeping itching pain produced rash nails little dents also experiencing skin peeling different parts body', 'skin peeling places , especially knees , elbows , arms peeling often accompanied painful burning sensation also developing small dents nails , really concerning', 'skin silvery layer , especially back arms dusting made small scales peel readily rubbed also , rashes body', 'arms , face back red irritated frequently irritating unpleasant nails strange inflammation developed small dents never seen anything like', 'trouble sleeping itching pain produced rash nails little dents , really alarming moreover , joints pain everyday idea causing', 'fingers soles pretty thick skin cracked severely fractures hurt bleed frequently fractures itchy covered scales', 'skin changed less sensitive sensitive skin silvery coating , especially back , elbows knees', 'nails slightly dented even joints experiencing excruciating discomfort skin silver like powder , especially back elbows', 'trouble falling asleep rash pain itching skin fingers starting peel nails tiny cracks , really worrying', 'joints experiencing unusual discomfort additionally , experienced weird skin peeling various places body concerned something wrong body', 'starting rashes arms neck rash often bleeds hurts scratch also developed small dents nails , strange', 'dry , flaky areas skin , prone infections joints extreme pain knees elbows skin starting peel', 'rash legs causing lot discomforts seems cramp see prominent veins calf also , feeling tired fatigued past couple days', 'calves cramping walk stand long periods time bruise marks calves , making worried feel tired soon', 'bruising legs explain see strange blood vessels skin also , slightly obese really worried', 'overweight noticed legs swollen blood vessels visible legs swollen see stream swollen veins calves', 'veins calves become prominent causing discomfort stand long periods time , causes pain legs , similar cramps', 'skin around veins legs red inflamed believe see swollen blood vessels really worried', 'standing walking long periods time causes lot pain legs get cramps upon physical activities bruise marks legs', 'cramps calves making difficult walk feel fatigued working time believe obesity reason behind', 'swelling legs gotten worse past weeks , large number veins noticeable calves , making worried', 'veins legs noticeable cause discomfort seems like major bruise get cramps run', 'skin calves become inflamed red legs hurt try run physical activities', 'recently , pain calves constant becomes worse stand walk long periods time legs started swell also blood vessels quite noticeable', 'veins legs causing discomfort difficulty sleeping night idea happening get cramps sprint', 'swelling legs causing difficulty fitting shoes sprint stand long periods time see swollen blood vessels', 'noticed cramps calves becoming frequent intense causing lot discomforts also overweight legs started swell', 'veins legs cause lot discomforts sit long periods time', 'rash legs spreading becoming severe become difficult run', 'legs causing lot discomforts exercise get frequent cramps blood vessels become quite noticeable', 'prominent blood vessels calves causing self consciousness embarrassment believe problem overweight', 'skin around veins legs dry flaky seems major bruise legs started swell', 'experiencing rash legs causing lot irritation discomfort red inflamed appears spreading', 'recently , calves cramping frequently , especially walking standing long periods time also , veins noticeable', 'noticed bruises legs explain painful concerning', 'overweight , noticed legs swollen blood vessels visible usual swelling seems getting worse time', 'veins calves prominent causing lot discomforts swollen protrude skin', 'skin around veins legs red , inflamed , itchy causing lot discomforts starting get regular cramps', 'standing walking long periods time causing lot pain legs feels like cramp becomes worse longer feet', 'cramps calves making difficult walk daily activities come suddenly last several minutes', 'swelling legs gotten worse past weeks causing difficulty fitting shoes also causing discomfort sit long periods time', 'veins legs noticeable causing lot discomforts swollen protrude skin , making visible clothing', 'skin calves itchy inflamed , causing lot discomfort difficulty sleeping night blood vessels started protrude , concerning', 'pain calves constant becomes worse stand walk long periods time getting constant cramps run longer periods time', 'veins legs causing discomfort difficulty sleeping night swollen protruding skin , making noticeable painful', 'swelling legs causing difficulty fitting shoes causing discomfort sit long periods time', 'cramps calves becoming frequent intense , making difficult walk daily activities', 'veins legs causing lot discomforts sit long periods time swollen protruding skin , making painful noticeable', 'rash legs spreading becoming severe red , inflamed , itchy , causing lot discomfort difficulty sleeping night', 'legs causing lot discomforts exercise feel heavy swollen , veins prominent painful feel fatigued time', 'prominent veins calves causing self consciousness embarrassment swollen protrude skin , making noticeable', 'skin around veins legs dry flaky , causing discomfort irritation also starting get frequent cramps', 'rash legs giving lot pain appears cramp , see visible veins calf', 'veins legs become visible swollen normal visible skin hurts move', 'walking tough cramps calves obesity , believe , cause working , exhausted', 'blood vessels legs quite visible give lot pain large protrude skin unusual worried', 'noticed blood vessels legs getting noticeable usual little concerning moreover , experiencing cramps every day', 'legs swelling become worse last couple days see blood vessels protruding skin quite unusual', 'long durations standing walking caused severe discomfort legs burning ache gets worse longer feet', 'legs skin around veins unusual appears large bruise nowadays , get frequent cramps sprint run', 'experiencing many cramps last couple days think something right believe small bruise calves , sure', 'veins calves protruding quite unusually worried also , overweight believe reason behind', 'constipation belly pain , really uncomfortable belly pain getting worse starting affect daily life moreover , get chills every night , followed mild fever', 'also diarrhea , really unpleasant coming going , accompanied abdominal cramps bloating', 'experiencing chills fever , along severe abdominal pain feeling really miserable overall , seem shake symptoms', 'lot trouble keeping hydrated vomiting diarrhea mild fever along constipation headache', 'lost lot weight past week able eat much due nausea vomiting followed mild fever , headache belly pain really concerned health', 'fatigue really uncomfortable , lot difficulties usual activities also feeling really depressed irritable mild pain abdominal part', 'persistent headache past week , getting worse accompanied belly aches , constipation diarrhea', 'experiencing high fever , especially night really uncomfortable mild headache along constipation diarrhea', 'lot difficulty breathing , feel like constantly nauseous also mild belly pain terrifying times', 'diarrhea really watery foul smelling , accompanied abdominal pain feel like vomiting time', 'lot trouble sleeping high fever , headache chills wake every day terrible pain belly area', 'also experiencing diarrhea constipation , really worrying feels like sharp , stabbing pain belly area feel tired time', 'constipation belly pain , really uncomfortable pain getting worse really affecting daily life', 'experiencing lot belly pain constipation , really annoying sometimes , feel strong urge vomit , , feeling weak', 'abdominal pain coming going , really unpleasant accompanied constipation vomiting feel really concerned health', 'experiencing lot bloating constipation , really uncomfortable feels like lot pressure pain belly area', 'experiencing extreme belly pain constipation every night , severe fever along chills headaches last couple days really uncomfortable', 'feeling exhausted weak , seem get rid vomiting nausea , entirely lost appetite belly pains causing concern', 'experiencing constipation stomach ache , really difficult discomfort gotten worse , seriously interfering everyday life', 'vomiting diarrhea , lot difficulties staying hydrated high fever , well constipation headache', 'abdominal pain frequent really painful constipation vomiting also occurred quite worried health', 'severe stomach pain constipation every night , get headache chills last days really painful', 'distinct pain abdominal part sure also going constant vomiting feel nauseous', 'diarrhea quite fluid smelly , accompanied severe abdominal pain headache time , feel like vomiting', 'fever last couple days , starting experience severe pain stomach area suffering constipation', 'experiencing lot nausea vomiting , quite difficult eat anything entirely lost appetite , result , become quite weak', 'lot trouble sleeping high fever headache moreover , constant belly pain , go work', 'feeling really fatigued weak , seem get rid mild fever strange pain abdominal area understand happening', 'suffering constipation stomach discomfort , really uncomfortable last night , mild fever', 'also suffering diarrhea , really uncomfortable comes goes , accompanied stomach aches vomiting', 'experiencing chills , fever , extreme stomach discomfort generally unhappy , seem get rid symptoms', 'vomiting diarrhea , lot difficulties staying hydrated mild fever , , well stomach pain', 'developed diarrhea accompanied severe pain belly area feel like eating anything , time , mild headache', 'lot bloating constipation , really painful lot pressure pain stomach area get high fever chills every night', 'persistent stomach pain past week , healing even medication feel like vomiting eat anything , become extremely weak', 'severe stomach discomfort diarrhoea high fever along headache previous several days really unpleasant', 'terrible pain abdominal part , feeling really nauseated also experiencing mild fever really worried', 'experiencing constipation stomach ache discomfort gotten worse , seriously interfering everyday life feel like lost appetite eat anything', 'time feel fatigued want eat anything get high fever chills every night moreover , vomiting since yesterday', 'lost appetite noticed significant weight loss abdominal pain , especially area stomach intestines concerned health', 'stomach discomfort severe frequent vomiting constipation also happened concerned health', 'experiencing diarrhea loose , watery stools several times day lost appetite feel nauseated time starting get mild fever', 'feeling quite weak lot stomach discomfort constipation , really bothering strong urge vomit times , result , eat anything', 'strange pain stomach area know reason behind moreover , starting get mild fever along chills headaches', 'high fever , particularly night quite unpleasant little headache , well constipation diarrhea feel like eating anything', 'lot trouble staying hydrated vomiting diarrhea high fever , constipation , headache also starting get strange pain stomach area anything physical', 'getting headache past week growing worse accompanied stomach pains , constipation , diarrhea know happening really worried', 'lost lot weight last week eat much due nausea vomiting followed high fever , headache , stomach pain', 'diarrhea constipation , quite concerning stomach , severe , painful ache constantly exhausted feel like eating anything', 'diarrhoea loose , watery stools many times day lost appetite always sick also developing mild fever also , abdominal part pains lot know reason behind', 'experiencing intense itching skin , driving crazy also rash red inflamed', 'feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate', 'high fever past days know causing also , noticed rashes skin hard resist scratching', 'lost appetite seem eat anything worried health', 'small red spots body explain worrying feel extremely tired experience mild fever every night', 'lymph nodes swollen , causing discomfort neck armpits know causing', 'feeling really sick uncomfortable like something wrong inside know could noticed small red spots arms , itches touch', 'itching making hard sleep night get rest also lost appetite feel lethargic', 'worried rash skin spreading rapidly causing lot discomforts hardly sleep night itching ,', 'energy lost appetite feeling really sick know wrong', 'skin rash red inflamed , spreading body experiencing intense itching , especially arms legs', 'high fever past days , starting worry know causing also , red spots arms legs , swollen', 'skin rash red swollen , spreading body mild fever causing lot discomforts', 'feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate', 'small red spots body explain bumps itchy uncomfortable seem spread rapidly worrying', 'itching making hard sleep night seem get rest rash itchy uncomfortable feeling really tired exhausted', 'energy lost appetite high fever severe headache know wrong', 'high fever swollen lymph nodes causing much discomfort headache feel weak fatigued hard concentrate fever', 'rash skin causing lot discomforts red inflamed , spreading body rash accompanied intense itching , especially arms legs', 'red spots body explain spots itchy starting swell , spreading rapidly', 'small lymph nodes arms face itching making day uncomfortable', 'energy lost appetite feeling really sick know wrong also , small red spots starting show skin', 'mild fever past days , starting worry fever accompanied severe headache feel weak lethargic', 'swollen lymph nodes red spots body , causing discomfort also mild fever feel tired time', 'suffering severe itching body , driving insane also red irritating rash', 'seen rashes skin , difficult scratch also , high fever several days sure causing', 'little red spots body understand worries lost appetite every night , exhausted severe headache', 'feeling really sick lost appetite seen little red patches arms , neck face itch touch', 'red spots arms legs itching makes difficult sleep night also severe headaches mild fever', 'enlarged lymph nodes giving great deal pain rashes body sleep night', 'skin rash giving lot pain discomfort red swollen , spreading throughout body', 'high fever mild headache tired time completely lost appetite', 'arms face small lymph nodes , starting swell day made really miserable constant itching pain', 'arms neck large lymph nodes , itch touch itching made day extremely uncomfortable', 'skin rash causing great deal pain also small red spots developing near neck since yesterday , severe fever , headache fatigue', 'starting develop tiny red spots face neck area , itches touch itching making day uncomfortable', 'lost appetite completely seem eat anything feel like vomiting feel exhausted noticed rashes skin , really concerning', 'high fever severe headache seem eat anything feel like vomiting also red spots developing arms really worried', 'worried red spots skin spreading rapidly causing lot problems also developed mild fever headache every night', 'feeling really nauseous uneasy sure might seen rashes arms legs lost appetite feel exhausted every day', 'swollen red lymph nodes arms legs itch touch also suffering terrible headache mild fever feel like eating anything lost appetite', 'really exhausted lacking energy hardly keep eyes open day mild fever feel like eating anything think lost appetite', 'exhausted lost appetite feel vomiting eat anything addition , little red spots beginning appear skin near neck really worried health', 'small red spots body spots itchy uncomfortable also mild fever headache', 'suffering severe itching body , along fever headache red spots starting swell getting really uncomfortable every day', 'feel tired every day red spots arms back itches touch really worried sure', 'high fever , swollen lymph nodes headache causing lot trouble feel like eating anything feel weak fatigued hard concentrate daily life', 'high fever red spots rashes body feel exhausted completely lost appetite , made weak lethargic really worried', 'seen rashes arms neck itches scratch also high fever days idea causing itching causing lot discomforts', 'red swollen spots body itches touch moreover , also high fever headache always feel exhausted', 'developed skin rash face neck rash made red sores blistering worried health', 'developed skin rashes made blistering sores blistering sores raised , fluid filled lesions painful touch also suffering high fever', 'high fever red sores developing near nose sores painful yellow rust colored ooze coming', 'rashes around nose , large red sores noticed rash spreading parts body also , high fever every night', 'suffering high fever last couple days sores developing near nose sores painful feeling uncomfortable days', 'skin developed rashes , mainly near nose rash spreading parts body really worried', 'experiencing extreme fatigue high fever rashes near nose mouth rash itchy makes difficult sleep', 'suffering extreme fever weakness developed sores face sores itchy uncomfortable often , yellow colored ooze comes sores', 'noticed sores taking longer heal prone infection sores face swollen tender touch uncomfortable handle', 'red sores face near nose noticed rash spreading quickly neck chest', 'sores around nose become crusted difficult touch yellow rust coloured ooze used come sores taking much time handle', 'developed minor rash near nose days ago , rash accompanied burning sensation redness skin feel kind infection', 'initially , developed small red sores near nose neck , high fever sores become painful inflamed past days', 'noticed skin rash face made blistering sore today observed yellow colored fluid coming sores , sure', 'sores face beginning weep clear fluid also , every night get high fever chills , sleep night', 'initially rashes face near nose rash spreading arms legs', 'high fever every night developed sores face , particularly near nose noticed sores taking longer heal prone infection', 'sores around nose surrounded red , inflamed skin rash caused skin become dry flaky , visible yellow colored fluid coming sores', 'also experiencing flu like symptoms , fever body pain noticed red rashes blistering sores near nose lips itchy uncomfortable', 'suffering mild fever headache small sores near nose rashes neck going tough time right', 'rash particularly bad around nose , large red sores painful yellow rust colored ooze coming', 'sores face mostly near nose lips sores causing discomfort pain , discharge yellow rust colored fluid', 'developing sores face nose area sure causing sores face swollen tender touch , burning sensation redness skin', 'rash face become painful inflamed past days , sores beginning weep clear fluid getting extremely painful day', 'rashes face starting small sores around nose often yellow fluid comes sores sores becoming extremely painful', 'feeling really sick high fever headache noticed rashes arms face extremely worried today , observed red sores near nose', 'suffering high fever past days sores forming around nose rashes different parts body sores severe , feeling really uneasy days', 'high fever really weak face gotten sores blisters itchy painful yellow ooze frequently leaks wounds', 'experiencing skin rashes burning sores blistering sores fluid filled , elevated , red colored lesions unpleasant touch also high fever', 'believe skin disease rashes face small sores near nose sores become red , painful kind yellow ooze discharges', 'noticed sores face healing slowly likely become infected cheek sores large , painful touch , extremely difficult handle seem get rid sores', 'high fever skin rash face , neck arms rash made burning red lesions concerned health', 'acquired skin rashes blistering sores blistering sores fluid filled , elevated lesions unpleasant touch also running high fever', 'running high temperature near nose , red sores forming lesions painful , yellow rust colored fluid oozing', 'rashes around nose , well huge red sores rash spreading places body , seen addition , high temperature every night', 'cheeks nose covered red sores observed rash neck chest spreading faster also developing mild fever', 'nasal sores crusted become difficult touch wounds used leak yellow rust coloured fluid taking lot longer deal using medication', 'days ago , experienced tiny rash around nose rash accompanied burning feeling skin redness discharge fluid believe sort infection', 'small red sores appeared near nose neck first high temperature , sores gotten painful inflamed recent days', 'rash developed around nose lips , huge red lesions painful emit yellow rust colored fluid', 'face covered sores near nose lips lesions causing discomfort suffering , yellow rust colored fluid oozing', 'started getting sores face nose idea causing cheek sores large irritating touch , burning feeling skin redness', 'last two days , rash face gotten severe inflamed , blisters begun bleed clear pus really painful deal', 'feel skin condition face rashes little blisters around nose wounds turned red painful , yellow liquid oozing', 'observed lesions face healing slower prone infection lesions cheeks huge , unpleasant touch , incredibly difficult treat seem get sores go away', 'running high temperature developed rash face , neck , arms rash consists painful red lesions health concern', 'last week , rash face gotten severe painful , sores begun discharge yellow colored fluid becoming increasingly painful day', 'rashes face developing little sores around nose , yellow ooze frequently oozing lesions become even painful', 'feeling quite ill high fever headache rashes appeared arms face quite concerned saw red sores around nose lips today', 'rashes face healing tried medications helping much recently , noticed small sores near nose painful difficult handle', 'facing severe joint pain vomitting developed skin rash covers entire body accompanied intense itching', 'experiencing chills shivering , despite warm environment back pains time red spots arms', 'experiencing severe joint pain makes difficult move perform daily activities also , lost apetite feel weak', 'vomiting frequently lost appetite result joints back pain time', 'high fever accompanied severe headache body pain experince chills every night distinct pain behind eyes', 'feeling extremely tired fatigued , energy anything developed rashes neck , itch upon touching', 'experiencing severe headache accompanied pain behind eyes lost apetite experience chills every night', 'feeling nauseous constant urge vomit strong pain behind eyes small red spots arms', 'developed red spots body itchy inflamed also experiencing high fever along chills shivering', 'experiencing muscle pain makes difficult move around lost apetite feel vomiting legs back pain lot', 'experiencing back pain worse sit stand long time also , rashes body pain behind eyes', 'skin rash developed accompanied redness swelling feel well severe fever accompanied body pain', 'chills shivering experiencing accompanied feeling coldness high fever also developed rashes arms red spots neck', 'joint pain experiencing severe feels like constant ache head aches time starting develope mild fever , accompanied chills', 'vomiting experiencing accompanied stomach cramps dizziness lost apetite feel weak result pain behind eyes', 'high fever experiencing accompanied sweating weakness muscles pain result work day', 'fatigue feeling extreme makes difficult perform even basic tasks feel vomitting developed rashes arms , neck legs', 'headache experiencing severe accompanied feeling pressure head mild fever along headache small red spots back', 'nausea feeling accompanied loss appetite feeling unease distinct pain back muscles pain', 'muscle pain experiencing severe feels like constant ache red spots body itching causing lot discomfort', 'developed skin rash covers entire body accompanied intense itching body pains mild fever , acompanied headache chills', 'experiencing extreme body pain , headache vomiting developed red spots covers entire body causes severe itching', 'back hurts time , arms neck rashes back eyes pain lot also fever making worried health', 'suffering significant joint pain , makes difficult walk carry everyday tasks also lost appetite , makes feel weak feel like vomitting', 'constant behind eyes developed red spots neck face rashes arms arms legs pain lot spots itchy uncomfortable worrying', 'feeling sick feel strong need vomit sharp ache behind eyes , swollen red dots back', 'shivers shivering accompanied sensation coldness high fever rashes arms red patches neck also appeared', 'suffering severe joint ache feel vomiting time , developing moderate fever chills fever seem come even medication', 'vomiting followed stomach pains dizziness lost appetite result feel weak arms , back , neck pain time', 'developed red spots arms legs itchy inflamed feeling nauseaus constant urge vomit accomapanied mild fever', 'developed skin rash covers entire body rash red swollen , worse certain areas arms legs also lost appetite', 'experiencing chills shivering strong pain back also behind eyes also noticed small red spots back neck', 'experiencing severe joint pain making day difficult feel like vomiting time mild headache', 'vomiting frequently lost appetite result rashes skin eyes pain , sleep properly', 'high fever along severe headache fever accompanied extreme body pain chills worried health know', 'feeling extremely tired fatigued , energy anything fatigue severe struggle get bed noticed small red spots arms legs', 'experiencing severe headache accompanied pain behind eyes feel tired fatigued work day worried health', 'feeling nauseous constant urge vomit , accompanied mild fever headache', 'developed rashes body itchy lost appetite feel tired day feel something wrong body', 'experiencing muscle pain headache muscle pain feels like constant ache worse try use affected muscles small red spots developing face , neck arms', 'back hurts , rashes arms armpits back eyeballs hurt lot also mild fever , making us concerned health', 'experiencing high fever chills every night really concerning moreover , feel like eating anything back , arms , legs pain lot strange pain behing eyes physical activities', 'result regular vomiting , lost appetite muscles , joints back constantly hurt starting fever really worried sure', 'experiencing severe fever accompanied pain behind eyes headache feel tired exhasuted work', 'whole body paining lot feel like eating anything mild fever get chills every night also , red spots developing back neck', 'joints back pain everyday feel like vomitting made weak body pain , able focus work feel like anything', 'body pain feeling extreme lost appetite developed rashes arms face back eyes pain lot', 'developed rashes body also experiencing high fever along chills headache joints back hurt strange pain back eyes', 'feeling nauseous constant urge vomit get high fever chills every night feel terrible also , feel lost appetite', 'rashes skin , itch touch feel good joints pain whole day night , mild fever get chills , sleep', 'raised lumps , rash looks red inflamed , discoloured areas skin different colours rest skin , itching skin', 'body , severe itching followed red , bumpy rash skin also darkened spots tiny , nodular breakouts happening several days becoming worse', 'rash skin looks like dischromic patches , also lot nodular eruptions really bad itching previous week , become worse', 'rash go away bothersome itching skin addition , seen color different areas bumps resemble knots lumps skin', 'rash body , stop scratching skin itchy skin also spots hue altered lumps knot like pimples', 'recently , skin quite itchy , rash body skin also spots hue altered lumps knot like pimples', 'skin itching lot developing rash additionally , areas skin different hue rest additionally , firm pimples breakouts skin', 'body itching like crazy , red areas additionally , patches different tone natural skin skin , lumps pimples developed', 'skin acting recently , becoming extremely itchy rashes prone additionally , certain spots deviate natural skin tone terms hue skin lumps bumps', 'arms legs , lot red pimples itchy skin skin also odd looking lesions occasionally bumps somewhat uncomfortable', 'itchy skin lots red bumps arms legs weird looking spots skin sometimes bumps feel kind hard', 'doctor , really itchy rash skin weird spots different color also bumps skin look like little knots', 'doctor , skin covered uncomfortable rash , along odd patches different hue skin also pimples resemble little knots', 'lots itchy spots skin , sometimes turn red bumpy also weird patches different colors rest skin , sometimes get weird bumps look like little balls', 'skin frequently develops itchy bumps occasionally turn red rough aside , skin occasionally develops strange pimples resemble small balls odd spots different hue rest skin', 'doctor , red rashes keep popping skin continuously itching addition , observed odd color different spots skin , well little nodules skin appear expanding', 'experiencing really intense itching body , along redness bumps skin also weird patches different colors rest skin , sometimes get nodules look like small bumps', 'body , scratching much skin become red developed pimples additionally , occasionally get nodules resemble little pimples , well strange patches different hue rest skin', 'experiencing lot itching , accompanied rash appears growing worse time also certain areas skin different colours rest , spotted several lumps resemble little nodes', 'lot problems itching , accompanied rash seems getting worse time also patches skin different colors rest , noticed bumps look like little nodes', 'doctor , skin covered uncomfortable rash odd patches skin different colour pimples skin resemble little knots', 'itching lot , accompanied rash looks getting worse time also patches skin different colours rest skin , well lumps resemble little nodes', 'skin acting lately , becoming exceedingly itchy prone rashes furthermore , several patches differ normal skin tone terms colour lumps bumps skin', 'rash appears developing throughout skin accompanying recent bouts intense itching discomfort skin , also dischromic spots little lumps seem appearing everywhere', 'skin always itches , occasionally becomes quite rough red addition , occasionally get little pimples resemble tiny balls certain spots different colour rest skin severely irritates itches', 'lot itching skin , sometimes gets really red bumpy also patches different colors rest skin , sometimes get little bumps look like little balls really annoying itchy', 'pretty irritating itch body , skin also red , bumpy areas also pimples resemble small balls spots different colour rest skin', 'pretty uncomfortable itch body , well red bumpy areas skin also certain patches skin different hue rest , pimples resemble little balls', 'really annoying itch body , red bumpy spots skin also areas different color rest skin , bumps look like little balls', 'pretty uncomfortable itch body , well red bumpy areas skin also certain patches epidermis distinct shade rest , pimples resemble little balls', 'really itchy lately rashy spots skin also areas look different shade rest skin , bumps kind hard', 'quite itchy recently , rashy patches skin also certain regions darker colour rest skin , got firm lumps', 'rather itchy recently , rashy blotches skin also certain regions dark color rest skin , got painful lumps', 'recently , scratching lot , skin covered rashy places additionally , pimples rather firm , certain spots body different shade brown rest skin', 'skin really itchy rashy spots also patches look different color rest skin , bumps kind hard', 'skin really scratchy , rashes body bumps quite firm , well areas darker shade rest skin extremely unpleasant', 'rashy areas skin , really irritating additionally , bumps fairly firm patches different colour rest skin', 'recently , scratching lot , skin covered rashy places addition , spots skin appear usual shade , experienced lumps quite painful', 'really itchy lately rashy spots skin also areas look like normal color skin , bumps kind hard', 'quite itchy recently , rashy places body also regions appear typical hue skin , experienced firm lumps', 'itching rashy patches skin recently also regions appear regular tone skin , experienced painful bumps', 'recently , itching lot , skin covered rashy patches furthermore , regions skin appear usual tone , experienced lumps exceptionally painful', 'constant itch red bumpy spots skin also patches different color rest skin , bumps kind like little lumps', 'red , bumpy areas skin , scratching nonstop additionally , bumps resemble little lumps spots different shade skin rest body', 'lot itching skin , occasionally turns rash also odd patches skin different hue rest , occasionally get little pimples resemble nodules', 'tendency itching skin , frequently turns rash also strange patches skin different tone rest skin , regularly get little lumps mimic nodules', 'experiencing lot itching skin , sometimes turns rash also strange patches skin different color rest , sometimes get little bumps look like nodules', 'body itching terribly , red spots everywhere patches also differ tone natural complexion lumps pimples appeared skin', 'skin really itchy lately , occasionally erupts rash addition , odd areas skin different coloration rest , occasionally develop little bumps look like nodules', 'red blotches body itching horribly patches also differ complexion natural skin lumps bumps developed skin', 'stop sneezing nose really runny also really cold tired time , coughing lot fever really high , like way normal', 'nose extremely runny , seem stop sneezing addition , constantly feel cold , exhausted , coughing lot fever also really high far normal', 'sneezing nonstop seem shake chill feeling really weak tired , cough go away fever really high', 'sneezing incessantly get chill go away feel weak exhausted , cough stop temperature really high', 'constantly sneezing body shaking cold tired barely move head killing fever roof', 'constantly sneezing , cold making body tremble exhausted hardly move , head hurts fever quite high', 'quite exhausted ill sneezing nonstop quite cold head throbbing , lack energy additionally , high fever feel like fire', 'feeling really tired sick sneezing lot seem get warm tired head killing fever really high , like boiling', 'quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak', 'quite exhausted ill sneezing lot trouble warming exhausted , head hurts feel like boiling high temperature', 'stop sneezing feel really tired crummy throat really sore lot gunky stuff nose throat neck feels swollen puffy', 'stop sneezing , exhausted sick throat really uncomfortable , lot junk nose throat neck also swollen puffy', 'keep sneezing , miserable exhausted lot gunky things nose throat , throat really hurting neck also feels puffy swollen', 'feeling really exhausted sick stomach really bad cough throat hurt lot experienced substantial sinus pressure congested nose really unpleasant worn', 'sneezing lot feeling really tired sick also lot gross stuff coming nose throat feels really scratchy neck feels swollen', 'wheezing lot generally feeling sick exhausted throat feels really scratchy , lot gross stuff flowing nose neck also feels bloated', 'sinuses feel incredibly congested , eyes continuously red constantly feel drained exhausted addition , lot uncomfortable phlegm throat lymph nodes feel bloated , breathing challenging', 'eyes really red sinuses feel congested energy throat really itchy also noticed lymph nodes swollen coughing lot phlegm', 'sinuses feel stuffy , eyes quite red simply lack energy , throat really scratchy along swelling lymph nodes , also coughing lot phlegm', 'eyes always red itchy , nose feels stuffy congested feel kind sick tired time , keep coughing gunk throat feels sore scratchy , noticed bumps neck bigger usual', 'nose always feels stuffy congested , eyes always red itching feeling unwell fatigued , keep hacking gunk scratchy , irritated throat , seen neck bumps larger usual', 'keep sneezing , eyes quit dripping incredibly difficult breathe feels like something trapped throat often feel exhausted , lately , lot phlegm moreover , lymph nodes enlarged', 'eyes red watery time also pressure sinuses go away always feeling tired lot trouble breathing also lot gunk throat lymph nodes swollen', 'eyes constantly red runny persistent tightness sinuses also bothering lot difficulties breathing constantly feel fatigued addition , lot throat mucus inflamed lymph nodes', 'nose feels quite clogged , eyes constantly red runny addition , chest hurts lot breathing problems addition , muscles feel quite painful , smell anything', 'eyes usually red runny , nose always stuffy also difficulty breathing chest hurts addition , smell anything muscles quite painful', 'eyes usually red inflamed , impression something clogging sinuses coughing lot gunk , chest hurts smell anything , muscles aching', 'eyes always red swollen , feel like something blocking sinuses coughing lot goo chest feels really heavy smell anything muscles really sore', 'coughing lot feeling chilly shivery nose quite clogged , experiencing facial pressure also lot phlegm , coughing pains chest smell anything , muscles aching', 'days , nasty cough cold sinuses clogged , facial pressure also creating phlegm , coughing pains chest smell anything , muscles aching', 'nasty cough cold days sinuses congested , facial pressure also coughing mucus , pains chest smell anything muscles aching', 'cough cold awful days sinuses congested , face strain additionally , coughing phlegm , hurts chest sense smell , muscles hurt lot', 'coughing nonstop shivering terribly stuffy nose face strain addition , throat coughing nasty gunk , chest hurts muscles hurt lot , smell anything', 'stop coughing feel really cold sinuses blocked lot mucus chest hurts smell anything muscles also really sore', 'coughing nonstop really chilly mucus production excessive , sinuses fully clogged smell anything , chest hurts muscles quite painful well', 'stop coughing freezing sinuses completely blocked , inundated mucous chest hurts , unable smell anything muscles also really achy', 'coughing lot finding difficult breathe throat hurts feel like lot phlegm trapped chest nose running lot , feeling really congested', 'quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak', 'experiencing severe weariness sickly sensation throat really painful fairly severe cough nose quite stuffy , significant sinus pressure really miserable extremely exhausted', 'feeling really sick lot fatigue really bad cough throat really sore lot sinus pressure nose really congested feel really run miserable', 'quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature simply put , feel really run feeble', 'really weary ill suffering severe cough sore throat got lot chills pretty high temperature simply feel tired run', 'quit sneezing , nose running also constantly chilly exhausted , coughing lot fever also really high , well usual', 'feeling awful , lot congestion runny nose coughing lot lot chest pain fever really high , experiencing severe muscular discomfort', 'neck swollen , exhausted throat scratchy , eyes burning red nose really clogged , experiencing facial pressure chest hurts , unable smell anything', 'lack energy feel like neck bloated eyes red , throat feels scratchy severe congestion nostrils , face pressure smell anything , chest hurts', 'feel quite weak , lymph nodes enlarged eyes burning , throat hurts sinuses strain , nose stuffy smell anything , chest hurts', 'terrible cough cold days face tired sinuses blocked addition , chest hurts phlegm coughing smell , muscles terrible pain', 'red , watery eyes time sinuses also bothered constant tightness breathing quite tough , feeling worn time lymph nodes irritated , also lot throat mucous', 'always get hot , puffy eyes feeling something obstructing sinuses chest feels quite heavy , coughing lot gunk sense smell , muscles hurt lot', 'feeling really cold tired lately , coughing lot chest pain heart beating really fast , cough , phlegm kind rusty color', 'coughing lot recently chest pain feeling incredibly chilly exhausted additionally , heart thumping rapidly , phlegm cough reddish hue', 'feeling really drained cold , stop coughing hurts chest , heart feels like racing mucus coughing gross brownish color', 'exhausted chilly , stop coughing , pains chest makes heart race coughing mucous disgusting brownish hue', 'chills feeling exhausted , seem shake cough chest hurts cough , heart feels like going million miles hour phlegm coughing dirty rust color', 'experiencing chills , feeling worn , seem get rid cough cough , chest aches heart feels like beating million miles per hour coughing nasty rust colored phlegm', 'feeling really weak cold lately , cough go away hurts chest cough , heart pounding mucus bringing rusty brown color', 'chills feeling really worn , cough go away chest hurts cough , heart racing mucus bringing gross brownish color', 'experiencing chills , feel really exhausted , cough go away cough , chest aches heart pounding disgusting brownish hue , mucous coming', 'really high fever , trouble breathing sweating lot feeling really cold tired heart beating really fast , brownish sputum', 'problems breathing high fever perspiring lot experiencing extreme fatigue chilly heart racing , coughing brownish mucus', 'temperature high , hard time breathing sweating profusely , shaking chills really tired , heart beating really fast also brownish phlegm coming', 'trouble breathing , fever really high drenched sweat shivering chill heart thumping rapidly , quite exhausted additionally , brownish phlegm', 'fever really high , trouble catching breath sweating lot , feeling cold tired , heart beating really fast also brownish phlegm coming', 'really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm', 'feeling really sick high fever , shortness breath , sweating , chills , extreme fatigue heart rate rapid , coughing lot brownish sputum', 'high temperature , shortness breath , sweating , chills , intense exhaustion , feeling quite poorly coughing lot brownish phlegm pulse rate racing', 'really hard time catching breath sweating lot feel really sick lot mucus throat chest hurts heart racing mucus coughing dark looks like rust', 'sweating profusely finding difficult catch breath feel quite ill , throat mucous heart pounding , chest aches coughing thick mucous resembles rust', 'lot trouble breathing really uneasy feeling unwell perspiring lot chest hurts lot mucus throat heart racing , hue mucus coughing', 'seem get enough air sweating lot feel well lot phlegm throat chest hurts heart racing mucus coughing reddish color', 'sweating profusely seem get enough air throat filled lot mucus , feel good heart pounding , chest aches coughing reddish colored mucous', 'seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing yellowish', 'dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing brownish mucous', 'hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish', 'trouble breathing quite uneasy throat filled lot phlegm , perspiring lot heart racing , chest aches coughing reddish mucous', 'seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing brownish stringy', 'dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing stringy , brownish mucous', 'drenched sweat struggling breathe feel well lot mucous throat chest aches , heart racing coughing mucus crimson colour', 'feeling lousy , high temperature , shortness breath , sweating , chills , extreme weariness heart beating , coughing lot brownish phlegm', 'really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm', 'fever really high , difficulty breathing drenched sweat shivering chills quite fatigued , heart racing also expecting brownish phlegm', 'getting chills , feeling tired , seem shake cough chest aches heart feels like racing million miles per hour cough coughing foul rusty phlegm', 'hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish', 'trouble breathing really uncomfortable sweating profusely lot mucus throat chest aches , heart racing coughing dark mucous', 'got high fever seem catch breath sweating profusely generally feeling ill weak also quite thick black phlegm chest aches , heart racing rapidly', 'lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark', 'recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick black phlegm', 'lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark', 'recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick red phlegm', 'chills , lethargy , cough , high temperature , difficulties breathing lately sweating profusely generally feeling ill weak also quite thick black phlegm', 'lot respiratory issues lately along chills , exhaustion , cough , high temperature sweating profusely generally feeling ill weak chest aches , heart racing rapidly', 'suffering chills , tiredness , cough recently sweating tremendously feeling overall unwell weak also thick , black phlegm chest aches , heart racing', 'running temperature seem catch breath sweating tremendously feeling overall unwell weak also thick , black phlegm heart beating frantically , chest hurts', 'drenched sweat seem catch breath throat clogged mucus , miserable heart racing , chest aches coughing brownish stringy mucus', 'saturated sweat struggling breathe throat blocked mucous , uncomfortable heart racing , chest aches coughing darkish stringy mucous', 'lot problems breathing feeling good , sweating lot lot mucous throat chest hurts breathing laboured , phlegm coughing odd tint', 'lot difficulty breathing feel well , perspiring lot chest hurts , lot mucus throat trouble breathing , phlegm coughing strange hue', 'coughing lot feeling incredibly chilly exhausted pretty high fever , difficult breathe perspiring lot generally feeling weak ill quite thick black phlegm', 'recently chills , exhaustion , cough , high temperature , breathing issues perspiring lot generally feeling weak ill quite thick black phlegm heart racing quite quickly', 'constipation , discomfort bowel motions , anus pain recently bothering anus quite inflamed , stool extremely bloody', 'lately experiencing constipation , pain bowel movements , pain anus stool also really bloody anus really irritated', 'recently , lot difficulty using restroom bowel movements extremely uncomfortable difficult anus quite inflamed , stool extremely bloody', 'lot trouble going bathroom lately really painful , blood stool also pain irritation around anus', 'recently , lot difficulty using restroom , hurts lot , noticed blood stool around anus , also experiencing discomfort itching', 'lately really constipated , really painful go bathroom also noticed blood stool , anus really irritated', 'suffering severe constipation lately , whenever go restroom , hurts lot aside , anus really itchy , observed blood stool', 'lot trouble going bathroom lately , really painful also noticed stool bloody anus really irritated', 'recently , lot discomfort difficulty using restroom additionally , noticed anus quite sore stool bloody', 'terribly constipated lately , go bathroom , hurts lot aside , anus really itchy , observed blood stool', 'quite constipated lately , going restroom excruciatingly uncomfortable also observed blood stool , anus aggravated', 'lot trouble going bathroom lately really painful experiencing pain anus stool also bloody anus really irritated', 'lot problems using restroom recently excruciatingly uncomfortable , feeling agony anus stool bloody well , anus really inflamed', 'trouble going restroom recently try go , really uncomfortable , anus hurts lot also blood stool , anus really uncomfortable', 'really hard time going bathroom lately really painful try go anus hurts lot also blood stool anus really itchy', 'experiencing problems using restroom recently quite difficult go , hurts also experiencing buttock soreness bloody stools anus also quite itching sensitive', 'recently , problems using restroom going incredibly difficult , hurts addition , experiencing butt soreness , stools bloody anus also quite itching aggravated', 'constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated', 'since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt', 'constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated', 'since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt', 'constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated', 'constipation made quite difficult use restroom stool bloody go , hurts addition , anus quite itchy inflamed , experiencing butt soreness', 'incredibly difficult use restroom , , hurts lot stools bloody , butt hurting anus also quite itching aggravated', 'lot trouble going bathroom really painful stool bloody pain butt anus really itchy irritated', 'trouble going bathroom really hard go hurts anus really sore bleeding go really painful really uncomfortable', 'finding challenging use restroom going quite difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'difficulty using restroom difficult go , aches anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable', 'recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'constipation soreness bowel motions bothering lately go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable', 'bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable', 'experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'bowel motions giving lot problems right going difficult , going hurts go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable', 'constipation bowel motions hurt recently go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable', 'bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad', 'experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go really painful really uncomfortable', 'getting lot bowel issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy', 'really hard time going bathroom lately really painful able go every days also lot pain anus around area stool really bloody anus feels really irritated', 'finding incredibly difficult recently use restroom go sporadically hurts much anus surrounding region also quite painful anus feels really aggravated , stool extremely bloody', 'lot trouble constipation pain trying go bathroom hurts lot anus area around stool bloody anus really irritated', 'constipation bowel movement discomfort common lately region surrounding anus ache lot anus really itchy , stool bloody', 'muscles feeling really weak , neck extremely tight experiencing lot stiffness walk joints swollen walking also really uncomfortable', 'feeling really weak muscles neck really stiff joints swelling lot stiffness move around also really painful walk', 'muscles quite weak , neck really stiff joints swollen experiencing lot stiffness move around walking also excruciatingly uncomfortable', 'feeling really weak muscles neck really stiff joints swelling hard move around walking really painful', 'muscles really weak , neck extremely stiff joints swollen , making difficult move walking excruciatingly uncomfortable', 'experiencing severe muscular weakness , neck really stiff difficult move since joints swollen really uncomfortable walk', 'muscles feeling really weak , neck extremely tight joints swollen , making difficult move hurt lot walk', 'neck tense , feeling like muscles incredibly weak trouble moving since joints enlarged walk quite painful', 'neck really stiff , terrible muscle weakness due swelling joints , challenging move walking quite unpleasant', 'feeling really weak muscles lately neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'recently , muscles felt quite weak , neck really tight swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'experiencing muscular weakness stiffness neck recently joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable', 'recently , suffering neck muscle weakness stiffness joints enlarged difficult walk without feeling stiff walking also excruciatingly uncomfortable', 'lately , neck tight muscles weakened swelling joints make difficult move without getting stiff also agonisingly painful walk', 'feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'muscles quite weak , neck really stiff joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable', 'muscles really weak , neck extremely stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable', 'muscles quite weak , neck really stiff joints swollen , making difficult move without becoming stiff walking quite uncomfortable well', 'neck really tight , muscles rather weak swelling joints make hard move without getting stiff additionally , walking quite unpleasant', 'feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'neck extremely tight muscles feeling extremely weak difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable', 'neck extremely stiff muscles extremely weak result swelling joints , find difficult move around without feeling stiff additionally , walking extremely uneasy', 'experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable', 'neck extremely tight muscles feeling extremely weak joints swollen walking around lot stiffness additionally , walking extremely uneasy', 'experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable', 'feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful', 'muscles quite weak , neck really stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable', 'experiencing severe muscular weakness , neck really stiff swollen joints find difficult move without becoming stiff also really uncomfortable walk', 'feeling really weak muscles lately neck really stiff joints swollen hard move around also painful walk', 'feeling truly frail muscles recently neck truly solid swollen joints make difficult move around walking also difficult', 'recently , muscles felt quite weak , neck really tight swollen joints , making difficult move walking also painful', 'experiencing muscular weakness stiffness neck recently joints enlarged , making difficult move walking also difficult', 'feeling truly frail muscles recently neck truly solid difficult move around joints swelling walking also extremely painful', 'muscles feeling feeble recently , neck rock solid joints become swollen , making difficult move walking quite uncomfortable well', 'muscles feeling rather weak lately , neck really strong joints swollen , making challenging move also excruciatingly difficult walk', 'neck extremely tight muscles felt quite weak recently difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable', 'experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf pine tree state run whereas getting stiff additionally , walking terribly uncomfortable', 'experiencing muscular weakness stiffness neck recently joints swollen , creating troublesome behalf run regarding changing stiff walking additionally agonizingly uncomfortable', 'muscles quite weak , neck stiff joints swollen , creating troublesome behalf steer concerning feeling stiff walking conjointly uncomfortable', 'muscles area unit quite weak , neck terribly stiff joints swollen , making hard behalf maine steer regarding whereas feeling stiff walking put together terribly uncomfortable', 'experiencing stiffness weakness neck muscles recently since joints grownup , onerous behalf run obtaining stiff addition , walking extraordinarily uncomfortable', 'neck tight muscles felt quite weak recently tough behalf maneuver around changing stiff thanks swollen joints walking additionally uncomfortable', 'recently , try walk , stiffness , stiff neck , swollen joints , muscular weakness walking also really uncomfortable', 'lately experiencing muscle weakness , stiff neck , swelling joints , stiffness attempt move around also painful steer', 'recently , muscles neck become tight weak difficult run since joints older without getting tight act walking also quite unpleasant', 'experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf american state run whereas getting stiff additionally , walking uncomfortable', 'recently , muscles neck become tight weak since joints matured , difficult american government run without becoming stiff walking also quite unpleasant', 'lately , stiffness weakness neck muscles since joints matured , difficult american state operate without becoming stiff furthermore , walking quite painful', 'really bad rash skin lately full pus filled pimples blackheads skin also scurring lot', 'developed severe rash skin clogged pus filled pimples blackheads skin also quite sensitive', 'skin breaking terrible rash lately blackheads pus filled pimples abound additionally , skin scurring lot', 'recently experiencing severe skin rash blackheads pimples packed pus everywhere additionally , skin scurring lot', 'unhealthy rash skin latterly filled pus filled pimples blackheads skin additionally scurring heaps', 'skin acquired nasty rash full pus filled pimples blackheads skin really sensitive well', 'nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive', 'recently experienced severe skin rash blackheads pimples filled pus clogging additionally , skin quite irritated', 'skin recently severely rashy blackheads pus filled pimples blocked skin quite delicate well', 'lately experiencing skin rash lot pus filled pimples blackheads skin also scurring lot', 'skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot', 'skin developed revolting rash pus filled pimples blackheads everywhere skin also really sensitive', 'skin developed horrible rash blackheads pus filled pimples everywhere furthermore , skin exceedingly sensitive', 'nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive', 'skin simply nonheritable nasty rash packed pus filled pimples blackheads skin sensitive moreover', 'skin developed terrible rash inherited lot blackheads pus filled pimples furthermore , skin exceedingly sensitive', 'recently , experiencing lot acne breakouts pimples contain pus also struggling blackheads', 'woke morning found really nasty rash skin ton blackheads pimples filled pus skin also really scurrying', 'noticing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying', 'dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'woke morning find really nasty rash skin ton blackheads pimples filled pus skin also really scurrying', 'struggling really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying', 'dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying', 'recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying everywhere', 'recently horrible rash skin several blackheads pus filled pimples skin also moving around lot', 'morning woke , discovered extremely bad rash body several pus filled pimples blackheads around skin also moving around lot', 'awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying', 'developed skin rash several pus filled pimples blackheads skin also quite sensitive', 'skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot', 'woke morning find terrible rash body blackheads pus filled pimples place additionally , skin changing lot', 'awoke morning , realised severe rash body many pus filled pimples blackheads place skin also scurring lot', 'recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying', 'awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying', 'morning woke , discovered extremely bad rash skin several pus filled pimples blackheads around skin also moving around lot', 'recently battling pretty itchy rash skin pus filled pimples blackheads skin also scurring lot', 'morning , realized major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot', 'woke today find major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot', 'woke morning find major rash body covered pus filled pimples blackheads , skin scurrying lot', 'morning , saw large rash body lot pus filled pimples blackheads face , skin scurrying lot', 'discovered significant rash body morning blackheads pus filled pimples proliferating , skin scurrying lot', 'yesterday , noticed enormous rash skin lot pus filled pimples blackheads face , skin scurrying lot', 'discovered huge rash skin yesterday face covered blackheads pus filled pimples , skin crawling lot', 'skin horrible rash absolutely nonheritable blackheads pus filled pimples abound addition , skin quite sensitive', 'skin merely developed uninherited rash lot pus filled pimples blackheads furthermore , skin quite sensitive', 'awoke morning , saw severe rash across skin many pus filled pimples blackheads place skin also shifting lot', 'woke morning , saw terrible rash skin blackheads pus filled pimples place additionally , skin shifting lot', 'recently struggled really irritating skin rash blackheads pus filled pimples additionally , skin scurring lot', 'recently dealing itching rash skin covered pus filled pimples blackheads skin also quite sensitive', 'feeling extremely tired weak , also coughing lot difficulty breathing fever high , producing lot mucus cough', 'got cough go away , exhausted coughing thick mucous fever also pretty high', 'persistent cough feeling quite fatigued fever roof , trouble breathing cough , also cough lot mucous', 'issues exhaustion , dry cough , breathing high fever coughing lot thick , mucoid phlegm', 'feel really fatigued weak , bad cough fever really high , breathing become shallow cough , lot saliva comes well', 'lot sleepiness , cough refuses go away , breathing difficulty coughing lot thick , mucoid saliva high fever', 'doctor , high fever since past days , saliva also became thick , dry cough , weakness also seen', 'cough continued days , feel really weak tired fever high , breath become strained cough , also generate lot mucus', 'mom , dad , feeling really tired weak lately , cough go away hard catch breath , fever really high cough , producing lot mucus', 'hey mom , hey dad , feeling really exhausted lately persistent cough breathing become shallow , fever high also coughing lot thick , mucoid sputum', 'recently , felt quite weak exhausted , also cough simply go away fever really high , challenging catch breath making lot mucous cough', 'felt terribly weak drained , also cough go away fever exceptionally high , challenging try catch breath creating lot mucous cough', 'feeling really tired weak lately , cough go away breathing become shallow , fever really high cough , producing lot thick , mucoid sputum', 'feeling extremely exhausted persistent cough hard catch breath , fever high also producing lot mucus cough', 'struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum', 'nagging cough go away , breathing become labored fever also high , feeling weak tired producing lot mucus cough', 'experiencing high fever , persistent cough , shortness breath also producing lot thick , mucoid sputum , feeling tired weak', 'breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling drained tired deal', 'cough lingering days difficulty breathing fever sky high , feeling weak tired also producing lot mucus cough , overwhelming deal symptoms getting frustrated', 'persistent cough days , also breathing problems weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything', 'struggling difficulty breathing , constant cough , fatigue fever extremely high , coughing lot thick , mucoid sputum hard deal , feeling drained worn', 'breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling exhausted tired cope', 'feeling really ill lately persistent cough difficulty breathing , fever charts also feeling extremely exhausted , producing lot mucus cough overwhelming deal symptoms', 'recently , feeling terrible fever roof , persistent cough breathing problems coughing lot phlegm also feeling quite weary dealing symptoms quite difficult', 'fever , cough go away , shortness breath addition , coughing lot thick , mucoid saliva feel quite worn weak', 'hey , dry cough , breathing difficulties , well high fever lot mucous produced , feel incredibly weak tired', 'recently , number concerning symptoms , including dry cough , impaired breathing , high fever , lot mucus also feel weak tired', 'currently dealing number health issues , including dry cough , difficulty breathing , high fever , increased mucus production also feeling weak tired', 'week , suffering continious health issues like dry cough , problems breathing , weakness throughout day', 'doctor , couple days able brethe propelry , lying bed due high fever , lot mucus gets please suggest medicines', 'experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling drained exhausted hard deal', 'weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything', 'must confess experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling quite drained exhausted rather tough deal , feeling quite sick moment', 'must admit high fever , persistent cough , shortness breath addition , coughing lot thick , mucoid saliva feeling really depleted worn', 'tough time constant cough , difficulty breathing , fatigue fever high , coughing lot thick , mucoid sputum rather draining exhausting , feeling quite sick moment', 'struggling persistent cough , breathing issues , exhaustion coughing lot thick , mucoid sputum high fever really tiring exhausting , right feeling rather ill', 'dealing bad cough , breathing issues , drowsiness coughing lot thick , mucoid sputum high fever really exhausting exhausting , right feeling rather ill', 'persistent cough , breathing problems , exhaustion making things difficult producing copious amounts thick , mucoid sputum also high fever currently feeling fairly ill everything tiring exhausting', 'persistent cough , respiratory issues , exhaustion , struggling high fever producing lot thick , mucoid sputum coughing currently feel rather sick result draining tiresome everything', 'fever roof , weak tired coughing lot mucous , managing symptoms really hard everything making upset', 'doctor due high fever , able breathe via nose mouth days feelinf tired please recommend medications', 'hey , got dry cough , trouble breathing , high fever producing lot mucus feeling quite weak exhausted', 'coughing nonstop days , also respiratory issues fever roof , weak worn symptoms really challenging control ,', 'addition sleepiness , trouble breathing due persistent cough coughing lot thick , mucoid sputum high fever', 'struggling breathe , coughing constantly , feeling worn high fever coughing lot thick , mucoid saliva simply feel worn exhausted trying deal everything', 'experiencing difficulty breathing , chronic cough , weariness producing lot thick , mucoid sputum also running high temperature due cope , simply feeling extremely worn exhausted', 'hello , mom father recently , felt incredibly worn cough go away fever really high , breathing become shallow additionally , coughing lot mucous , thick sputum', 'struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum', 'doctor due high fever , able breathe via nose mouth days feeling tired sometimes mucus seen please recommend medications', 'ongoing health problems week , including dry cough , breathing difficulties , general weakness', 'experiencing headache , chest pain , dizziness , difficulty maintaining balance also feel like trouble concentrating', 'along headache , chest pain , instability , balance issues , also feeling dizzy also think problems focusing', 'along head pain , chest pain , instability , balance issues , also feeling unwell also think problems focusing', 'addition head pain , chest pain , instability , balance issues , already feeling unwell also suppose issues focusing', 'experiencing balance issues , headache , chest pain , dizziness ability concentrate focus also challenging', 'headache , chest pain , dizziness , trouble balance also hard focus concentrate', 'encountering trouble walking , headache , chest pain , dizziness concentration skills focus also challenging', 'encountering poor balance , headache , chest pain , dizziness ability pay attention focus also problematic', 'coordination , experiencing headache , chest pain , dizziness additionally , trouble concentrating focusing', 'symptoms include headache , chest pain , dizziness , lack balance , trouble concentrating', 'experiencing symptoms headache , chest pain , dizziness , loss balance , difficulty focusing', 'suffering symptoms including headache , chest pain , dizziness , losing balance , trouble concentrating', 'headache , chest discomfort , dizziness , lack balance , difficulty concentrating symptoms', 'along headache chest pain , also experienced fainting balance issues additionally , discovered hard focus', 'experiencing balance issues , headache , chest pain , dizziness also realised trouble focusing', 'balance , headache , chest pain , dizziness also observed hard concentrate', 'experiencing balance issues , chest pain , headaches , pains trouble focusing well', 'experiencing chest pain , dizziness , headache feels like continual pressure forehead', 'feeling lightheaded unsteady feet , also noticed decline ability focus concentrate', 'experiencing dizziness shakiness , well loss attention span ability concentrate', 'experiencing dizziness anxiousness , well loss attention concentration ability concentrate', 'intense aches chest , headache go away , feeling dizzy unsteady', 'intense aches chest , head pain refuses go away , feeling dizzy unsteady', 'along chest pain , dizziness , headache feels like narrow zone around head , lot trouble', 'struggling headache feels like tight band around head , along chest pain dizziness', 'experiencing balance issues addition feeling disoriented dizzy headache also present nonstop', 'feeling disoriented dizzy , also trouble keeping balance headache constant presence well', 'experiencing balance issues along feeling dizzy lightheaded additionally , seen drop concentration focus', 'addition feeling dizzy lightheaded , problems keeping equilibrium capacity concentrate focus also slipping , noticed', 'experiencing headache feels like sharp pain temples , along chest pain dizziness', 'along chest pain dizziness , headache seems like sharp pain forehead', 'feeling fine day , suddenly developed headache , chest pain , dizziness walk hard focus concentrate since', 'taking walk , suddenly started experiencing headache , chest pain , dizziness feeling fine day since , challenging concentrate focus', 'woke morning headache chest pain , day gone , also feeling dizzy unsteady feet', 'headache chest pain morning , day wore , also started feel unsteady unstable feet', 'dealing headache chest pain days , today dizziness loss balance became much worse', 'days , suffering headache chest pain , today dizziness lack balance got considerably worse', 'work started feeling headache , chest pain , dizziness hard concentrate focus tasks since', 'first experienced headache , chest pain , lightheadedness , work since , challenging focus concentrate work', 'middle workout suddenly developed headache , chest pain , dizziness hard maintain balance since', 'instantly experienced headache , chest pain , dizziness working since , challenging keep balance', 'feeling fine day , suddenly developed headache , chest pain , dizziness driving home work hard focus concentrate road since', 'felt fine day , driving home work , suddenly started headache , chest discomfort , dizziness since , challenging concentrate focus driving', 'shopping started feeling headache , chest pain , dizziness hard focus concentrate tasks since', 'first experienced headache , chest pain , lightheadedness , shopping since , difficult concentrate work', 'woke morning feeling fine , day went , started experiencing headache , chest pain , dizziness hard focus concentrate work since', 'felt good woke morning , day wore , began feel headachey , sick stomach , dizzy since , challenging concentrate focus work', 'middle meeting suddenly developed headache , chest pain , dizziness hard focus concentrate discussion since', 'suddenly experienced headache , chest pain , dizziness middle conference since , challenging concentrate focus topic', 'feeling fine day , suddenly developed headache , chest pain , dizziness run hard maintain balance since', 'experiencing acidity indigestion meals , well frequent headaches blurred vision', 'getting frequent headaches hazy vision , well acid reflux indigestion meals', 'trouble vision , seeing things distorted experiencing visual disturbances', 'suffering visual disruptions , seeing things distorted , eyesight problems', 'facing visual disruptions , seeing things distorted , eyesight difficulties', 'feeling excessively hungry , even eating , stiff neck', 'facing visual disruptions , seeing things distorted , eyesight difficulties', 'grumpy gloomy lately , also noticed change vision', 'feeling depressed irritable , noticed change vision', 'irritated depressed lately , also noticed change vision', 'along recurrent headaches blurred vision , suffer acid reflux trouble digesting food', 'experiencing acid reflux difficulty digesting food , along regular headaches impaired vision', 'feeling hungry time sore neck , well problems vision', 'addition stiff neck eye issues , always hungry', 'experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance', 'along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux', 'along excessive appetite , stiff neck , depression , impatience , visual disturbance , also suffering indigestion , headaches , blurred vision , stomach problems', 'suffering acid reflux , indigestion , frequent headaches , impaired vision , well excessive hunger , sore neck , depression , irritability , visual disturbance', 'along increased hunger , sore neck , melancholy , impatience , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , blurred eyesight', 'together increased hunger , sore neck , anxiety , irritation , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , impaired eyesight', 'experiencing digestive issues , including acidity indigestion , well regular headaches distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'addition recurrent headaches blurred vision , increased appetite , stiff neck , sadness , irritability , visual disturbance , stomach problems , including indigestion acidity', 'add frequent headaches blurred vision , increased appetite , stiff neck , anxiety , irritability , visual disturbance , stomach problems , including indigestion acidity', 'struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also experiencing blurred distorted vision', 'along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also feeling blurred distorted vision', 'experiencing digestive issues , including acidity indigestion , well frequent headaches impaired vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'acidity indigestion among digestive problems , along regular headaches , blurred vision , increased hunger , stiff neck , sadness , impatience , visual disruption', 'suffering acid reflux , indigestion , regular headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'along distorted eyesight , excessive appetite , painful neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , regular headaches', 'along distorted eyesight , excessive appetite , painful neck , anxiety , irritability , regular headaches , also battling acid reflux , indigestion , regular headaches', 'experiencing acidity , indigestion , frequent headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'stomach acid , indigestion , frequent headaches , hazy distorted vision , increased appetite , stiff neck , depression , irritation , visual distortion bothering', 'struggling digestive issues , including acid reflux indigestion , well regular headaches impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'experiencing frequent headaches , blurred vision , excessive appetite , sore neck , sadness , irritability , digestive problems including indigestion acid reflux', 'enduring frequent headaches , blurred vision , excessive appetite , sore neck , anxiety , irritability , digestive difficulties including indigestion acid reflux', 'experiencing acidity , indigestion , headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance', 'along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion', 'along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion', 'suffering acid reflux , indigestion , frequent headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance', 'along impaired eyesight , increased appetite , sore neck , melancholy , impatience , regular headaches , also experiencing heartburn , acid reflux , indigestion', 'along impaired seeing , excessive eating , sore neck , melancholy , impatience , constant headaches , also fighting heartburn , acid reflux , indigestion', 'experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort', 'along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms bothering interfering usual activities', 'well excessive appetite , tense neck , depression , irritability , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms disturbing interfering usual activities', 'suffering acid reflux , indigestion , regular headaches , well impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot distress making difficult go daily activities', 'along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent migraines regular activities made challenging symptoms , causing great deal distress', 'along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent dizziness regular activities made tough symptoms , causing great deal distress', 'experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort', 'struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot problems making difficult concentrate function normally', 'experiencing severe back pain , persistent cough , weakness limbs neck also hurts feeling dizzy balance', 'along chronic cough limb weakness , dealing excruciating back discomfort experiencing neck pain well vertigo instability', 'suffering back pain , hacking cough , weakness arms legs additionally , neck hurts issues dizziness maintaining balance', 'back pain , hacking cough , numbness arms legs bothering addition , neck hurts , trouble staying balanced without getting lightheaded', 'back pain , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy', 'pain typically , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy', 'struggling back pain , cough go away , weakness extremities neck hurts problems dizziness losing balance', 'back discomfort , persistent cough , weakness limbs bothering issues vertigo losing equilibrium , neck hurts', 'back discomfort , breathing difficulty , weakness limbs hurting issues vertigo losing balance , neck hurts', 'experiencing intense back pain , dry cough , lack strength limbs neck hurts feeling dizzy unsteady feet', 'struggling severe back pain , dry cough , limb weakness feeling lightheaded wobbly feet , neck hurts', 'battling back pain , dry cough , limb weakness feeling dizzy unstable feet , neck hurts', 'struggling back pain , chronic cough , limb weakness feeling disoriented weak feet , neck hurts', 'suffering back pain , productive cough , weakness limbs neck sore issues dizziness balance', 'back pain , productive cough , limb weakness bothering balance dizzy concerns , neck hurts', 'backache , difficulty breathing , limb weakness bothering balance dizzy concerns , neck suffers', 'struggling back pain , persistent cough , weakness muscles neck hurts problems dizziness loss balance', 'back pain , lingering cough , muscle weakness bothering issues dizziness losing equilibrium , neck hurts', 'back pain , chronic cough , muscle weakness bothering concerns dizziness losing position , neck hurts', 'experiencing severe back pain , cough comes goes , weakness limbs neck also hurts feeling dizzy balance', 'intermittent coughing fits , significant back pain , limb weakness experiencing neck pain well dizzy unsteady sensation', 'periodic coughing fits , terrible back pain , limb weakness feeling neck pain well dizzy unstable sensation', 'dealing back pain , cough go away , weakness arms legs neck hurts problems dizziness maintaining balance', 'back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts', 'back pain , dry cough , stiffness arms legs bothering problems staying balanced experience dizziness , neck hurts', 'experiencing back pain , persistent cough , numbness arms legs trouble staying balanced managing vertigo , neck hurts', 'arms legs weak , suffering back pain persistent cough addition experiencing neck pain balance issues , also suffer dizziness', 'back pain , persistent cough , arm leg weakness bothering experiencing neck pain , balance issues , dizziness', 'back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts', 'suffering back pain , dry cough , lack strength muscles neck sore feeling dizzy unsteady feet', 'back pain , dry cough , lack muscle strength bothering neck hurts , feeling lightheaded shaky', 'muscles lack strength , experiencing back pain dry cough experiencing neck pain feeling lightheaded unstable feet', 'muscles strong , experiencing back ache feeling lightheaded wobbly feet , neck hurts', 'experiencing back pain , dry cough , muscle weakness experiencing neck pain , feeling lightheaded , trouble standing still', 'struggling intense back pain , chronic cough , weakness arms legs neck sore problems dizziness loss balance', 'terrible back pain , persistent cough , weakness arms legs issues dizziness balance loss , neck hurts', 'suffering severe back pain , persistent cough , numbness arms legs experiencing issues vertigo balance issues , neck hurts', 'along persistent cough , weakness arms legs , severe back pain , lot trouble experienced issues vertigo balance loss , neck hurting', 'experiencing severe back pain , cough produces phlegm , weakness muscles neck also hurts feeling dizzy unsteady feet', 'addition excruciating back pain , also coughing mucus feeling weak feeling lightheaded unstable feet , neck hurts well', 'muscles quite weak , coughing phlegm along significant back discomfort addition feeling weak disoriented , neck hurting', 'along phlegmy cough muscle weakness , dealing excruciating back pain addition feeling woozy shaky feet , neck hurting', 'dealing back pain , persistent cough , weakness limbs neck sore issues dizziness loss balance', 'back ache , chronic cough , limb weakness bothering troubles disorientation balance loss , neck hurts', 'back pain , cough go away , limb weakness experiencing neck pain , instability , balance concerns', 'suffering back pain , chronic cough , weakness arms legs neck hurts feeling dizzy balance', 'back pain , persistent cough , numbness arms legs bothering neck hurts , feeling lightheaded unsteady', 'back pain , persistent cough , weakness arms legs neck hurts , feeling balance woozy', 'struggling back pain , productive cough , weakness muscles neck sore problems dizziness unsteady balance', 'back pain , productive cough , muscle weakness bothering issues dizziness uneven balance , neck hurts', 'experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain', 'felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow additionally , stomach hurting', 'extreme itchiness , sickness , exhaustion plaguing addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache', 'severe itching vomiting also tired lost weight fever high skin turned yellow urine dark experiencing abdominal pain', 'experiencing intense itching nausea lost weight also really exhausted skin become yellow , severe fever dark urine , stomach pain', 'throwing experiencing intense itching along losing weight , also really exhausted skin become yellow , fever really high stomach pain pee black', 'strong itchiness nausea bothering also lost weight really exhausted high fever , skin becoming yellow addition feeling stomach ache , pee black', 'experiencing terrible itching nausea lost weight also really exhausted skin become yellow severe temperature dark urine stomach ache', 'feeling itchy vomiting also fatigued lost weight fever high skin become yellow urine dark abdominal pain', 'feeling scratchy throwing lost weight also really exhausted skin become yellow , severe fever stomach ache black urine', 'itchy throwing along losing weight , also really exhausted skin turned yellow , fever high additionally , get stomach ache dark urine', 'scratchy stomach throwing aside losing weight , also really exhausted high fever yellow skin besides stomach ache , pee black', 'itchy throwing addition , lost weight feel really exhausted skin become yellow severe temperature abdominal ache black urine', 'exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain', 'suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain', 'itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache', 'nausea , vomiting , exhaustion additionally , lost weight temperature urine black skin turned yellow also stomach pain', 'experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'constantly feeling scratchy , sick , tired addition , lost weight temperature urine dark , skin turned yellow furthermore , experiencing stomach pain', 'felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain', 'severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain', 'experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts', 'extreme itchiness , nausea , exhaustion bothering addition , developed fever lost weight pee black , developed yellow rash ache stomach also present', 'extreme itchiness , nausea , fatigue troubling moreover , experienced fever lost weight pee black , developed yellow rash ache stomach also present', 'feeling itchy vomiting also tired lost weight fever high skin become yellow experiencing abdominal pain well', 'itchy throwing along losing weight , also really exhausted skin turned yellow , fever high stomach also hurting recently', 'scratchy stomach throwing also lost weight really exhausted high fever yellow skin well , stomach pain', 'itchy throwing lost weight also really exhausted skin become yellow severe temperature stomach also hurting', 'exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain', 'suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain', 'itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache', 'experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well', 'feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain', 'felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain', 'severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain', 'feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain', 'experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts', 'experiencing itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain', 'losing weight experiencing nausea , itching , exhaustion skin become yellow , severe fever dark urine , stomach pain', 'suffering intense itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain', 'losing weight experiencing severe itching , nausea , exhaustion skin become yellow , severe fever dark urine , stomach pain', 'experiencing severe itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain', 'losing weight , feeling really fatigued , throwing lot skin become yellow , severe fever dark urine , stomach pain', 'experiencing severe itching , chills , vomiting , high fever also sweating lot headache feel nauseous muscles really sore', 'high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot', 'high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot', 'strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot muscles quite sore , feel sick', 'along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , muscles hurt lot , feel queasy', 'high fever , chills , intense itching addition , headache perspiring lot muscles hurt lot , feel sick', 'intense itching body , accompanied chills vomiting fever really high sweating excessively also headache feel nauseous muscles really painful', 'experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort', 'along severe body itchiness , chills , nausea , experiencing severely perspiring high fever feeling queasy also headache really hurting muscles', 'experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort', 'experiencing severe body itchiness , along chills nausea perspiring lot extremely high fever feel sick stomach headache muscles hurting lot', 'suffering intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also bothering', 'high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness', 'high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache', 'strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot bothered nausea well muscle ache', 'high fever , chills , severe itching addition , headache perspiring lot also bothered nausea muscular ache', 'high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness', 'high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache', 'experiencing severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing discomfort', 'high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache', 'strong itchiness , chills , nausea , high temperature plaguing along headache , also perspiring lot also bothered nausea muscle ache', 'along intense scratching , chills , nausea , high fever , also feeling really unwell headache also perspiring lot uncomfortable nausea muscle ache ,', 'high fever , chills , intense itching addition , headache perspiring lot suffering nausea well muscle ache', 'high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache', 'intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable', 'experiencing lot scratching , chills , vomiting , fever also headache perspiring lot terrible nausea soreness muscles', 'experienced severe itching , chills , nausea , high fever besides headache , also perspiring lot terrible nausea muscle ache', 'high fever , chills , severe itching along headache excessive sweating , terrible nausea muscle ache', 'high fever , chills , severe itching addition , headache perspiring lot feeling awful nausea muscle ache', 'experiencing severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain causing lot discomfort', 'high temperature , vomiting , chills , intense itching also headache perspiring lot really uncomfortable lately nausea muscle ache', 'strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot suffering severe muscle pain nausea', 'along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , suffering severe muscle pain nausea', 'high fever , chills , intense itching addition , headache perspiring lot lot agony muscle ache nausea', 'intense itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also bothering', 'experiencing lot scratching , chills , vomiting , fever also headache perspiring lot additionally hurting nausea muscle soreness', 'experienced severe itching , chills , nausea , high fever along headache , also perspiring lot also bothered nausea muscle ache', 'high fever , chills , severe itching headache also perspiring lot bothered nausea well muscle ache', 'experiencing severe itching , chills , vomiting , high fever addition , headache perspiring lot also bothered nausea muscular ache', 'suffering severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also causing discomfort', 'high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache', 'high fever , severe itching , chills , vomiting addition , perspiring lot headache also bothered nausea muscle ache', 'strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot uncomfortable nausea muscle ache ,', 'strong itchiness , chills , nausea , high fever part current condition addition , headache perspiring lot suffering nausea well muscle ache', 'high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache', 'experiencing intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable', 'intense scratching , chills , nausea , high temperature plaguing also headache perspiring lot terrible nausea soreness muscles', 'along high fever , chills , vomiting , severe itching besides headache , also perspiring lot terrible nausea muscle ache', 'along high fever , chills , vomiting , severe itching along headache excessive sweating , feeling awful nausea muscle ache', 'severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing lot discomfort', 'frequent urges urinate little output , pain urination , cloudy bloody urine , strong foul smelling urine , pelvic pain , low fever , nausea vomiting', 'get frequent urges urinate night little output , lot pain urination urine coludy bloody sometime foul smelling , get nauseous', 'get burning sensation pee sometimes lot pain foul smelling urine getting urges urinate night', 'getting blood pee sometimes get nauseous peeing often almost coincides high temperature', 'pee looks cloudy storng foul smell frequently get urge urinate night , getting high temperatures since symptoms strted showing', 'pain abdomen , often get feverish sudden strong urges pee pain almost constant , often increases night time pee almost always foul smell', 'frequently getting sudden strong urges pee blood pee sometimes foul smelling think infection ,', 'get blood pee sometimes sometimes get nauseous whie peeing also bad smell pee sometimes get high temperatures nights , help', 'pain lower abdomen , get buring sensation pee also getting low temperatures since started get symptoms weak', 'blood urine low fever head hurts almost time get strong uncontrollable urges pee pain lower back also', 'low temperatures bloody pee since days head hurts like crazy pee also smells foul almost control peeing get sudden urges', 'pain near pelvic region vomit lot sometimes blood pee almost foul smell urine sometimes get headches trouble sleeping due', 'constantly go bathroom relieve , cant seem empty bladder get strong uncontrollable urges pee sometimes get dark bloody pee', 'low temperatues foul smelling pee area near kidneys hurt lot cant seem hold pee often get uncontrollable urges', 'go bathroom time , urine output low often drops stomach hurts lot cant seem able control urges pee', 'pee dark often bloody often unfathomable smell temperature fluctuations pretty frequently often able sleep night', 'pain bladder getting', 'urinating blood occasionally feel queasy urinating frequently almost fever time', 'pee strong , unpleasant scent hazy appearance since symptoms started appearing , regularly feel desire urinate night experiencing high temperatures', 'stomach hurts , frequently acquire temperature experience sudden , intense cravings urinate discomfort virtually always frequently gets worse night pee nearly always smells bad', 'experiencing frequent , intense , abrupt cravings urinate sometimes get blood pee , smells awful believe infection', 'occasionally urinate blood occasionally feel queasy help also occasionally get high temps night terrible odour coming pee', 'lower abdominal ache bursting sensation urinate since began experience additional symptoms , also experiencing low body temperatures weak result', 'mild temperature blood pee head hurts almost constantly , frequently experience severe , involuntary desires urinate additionally , experiencing lower back ache', 'since days ago , experiencing low temperatures bloody urination head excruciating pain , urine smells awful hardly control urinate , impulses come suddenly', 'frequently vomit get discomfort pelvic area urine occasionally smells almost unbearably bad , occasionally blood headaches times , problems falling asleep', 'use restroom frequently relieve , seem get bladder empty occasionally get severe , uncontrolled desires urinate , well black crimson urine', 'experiencing really low moods bad urine odour seem keep urine back , area near kidneys hurts lot frequently experience irrational cravings', 'use restroom frequently , yet drops pee usually produced stomach aches lot , seem control desire urinate', 'urine frequently black , red , really strange odour experiencing temperature changes regularly , usually prevents sleeping night', 'blood found urination sometimes nausea urinating regularly feel like almost feverish', 'pee smells strongly cloudy appearance high temperatures regular urge urinate night since symptoms first materialised', 'frequent , strong , sudden urges urinate occasionally urinate blood , stench horrible ought think infected', 'rare occasions , pee blood mild nausea help also occasionally experience high nighttime temperatures dreadful urine odour', 'lower abdomen hurts , urinate , feels like exploding low body temps ever since started new symptoms , weak', 'blood pee , low body temperature practically continual headaches often strong , uncontrollable need urinate addition , started lower back pain', 'low temps bloody urine past four days pee smells terrible , head hurts like hell scarcely control urinate , urges strike without warning', 'regularly vomit get pelvic pain occasionally blood pee , occasionally absolutely intolerable odour occasionally trouble falling asleep migraines', 'need relieve regularly , seem get bladder empty sometimes , get intense , uncontrollable urges urinate , along dark red urine', 'spirits incredibly low , pee smells awful kidney region hurts lot , seem hold urine get unreasonable urges time', 'go bathroom lot , generally drops urine come severe stomach pains overwhelming want urinate', 'urine often weird odour , crimson black colour , body temperature fluctuating often , typically keeps night', 'noticed blood urinating occasionally feel sick urinating frequently feel though fever', 'pee strong odour hazy look since symptoms started , high temperatures frequent nighttime urges urinate', 'occasionally urinate blood feel little queasy help also occasionally get horrible pee odours excessive overnight temps', 'lower abdomen aches , feels like may explode urinate since began experiencing new symptoms , body temperature consistently low weak', 'last four days , experienced low temperatures blood pee head hurts much urine smells awful desires urinate seldom come cue , hardly ever control', 'pee frequently odd smell either red black , frequent changes body temperature usually keep awake night', 'pee smells strongly seems cloudy fevers frequent overnight urination needs ever since symptoms began', 'low temps blood urine past three days pee smells terrible , head hurts much urinary urges seldom occur cue , almost never control', 'runny nose sneezing time eyes itchy often watery , coughing time head hurts time', 'sore throat sneezing time sometimes swelling face like lips near eyes cant stop sneezing start sneezing', 'hace difficulty breething shortness breath cough uncontrollably get itchy eyes swelling face body parts', 'nasal congestion blocked nose sometimes night chest pain tightness also lost sense smell taste', 'asthma like symptoms like wheezing difficulty breathing often get fever headaches feel tired time', 'feel tired time , lost taste really sore throat also get feverish often muscle aches sometimes whole body cramps', 'experiencing loss appetite difficulty swallowing food suffering sore throat runnny nose also', 'feel fatigued time , tingling sensation throat also developed flaky skin sometimes get puffy eyes sometimes puffs', 'stomach cramps , nausea diarrhea throat swollen , difficulty breathing sometimes night night get chest pain nauseous', 'itchy red skin sometimes result flaking face lips puff causes lot inconvinience get watery eyes sometimes headches puffing gets severe', 'often sneeze runny nose eyes scratchy frequently runny , frequently cough head hurts constantly', 'often sneeze sore throat lips area around eyes occasionally swell start sneezing , stop', 'trouble breathing get short breath dry , hacking cough , itchy eyes , swelling face body', 'plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability taste smell', 'get symptoms asthma , wheezing breathing problems frequently headaches fever time , feel exhausted', 'always feel exhausted , bad taste , extremely scratchy throat also muscular pain heat entire body simply cramps occasionally', 'losing appetite , also trouble swallowing nose running , sore throat', 'always worn experiencing tingle throat also started dry skin eyes occasionally swell', 'feel queasy , nauseous , dizzy swelling throat breathing issues occasionally chest discomfort nausea night', 'skin red scratchy occasionally flake cheeks lips swell , really annoying occasionally headaches runny eyes puffing', 'frequently sneeze , nose runs constantly cough , eyes sore watery head hurts time', 'sore throat frequently sneeze sometimes skin around eyes lips swells stop sneezing get going', 'respiratory issues experience breathlessness face torso swollen , eyes itching , dry , hacking cough', 'nasal congestion blocked nose occasion , night , stiffness chest pain additionally , lost senses taste smell', 'get breathing issues wheezing , asthma symptoms regularly fevers headaches constantly feel worn', 'always feel worn , unpleasant taste mouth , really itchy throat muscles also hot hurting sometimes whole body cramps', 'along losing appetite , swallowing issues sore throat , nose running', 'always feel exhausted tickle throat skin also started feel dry occasionally get ocular swelling', 'dizzy , nauseated , shaky trouble breathing since throat swollen occasion , throughout night , chest hurts feel sick', 'skin irritated inflamed sometimes , flake lips cheeks expand , really unpleasant puffing , occasionally headaches wet eyes', 'nose runs sneeze lot eyes wet hurt , cough time head aches constantly', 'sneeze lot sore throat lips skin surrounding eyes occasionally swell start , stop sneezing', 'breathing problems become breath easily eyes ache , dry , hacking cough , face body bloated', 'plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability smell taste', 'get wheezing breathing difficulties , asthma symptoms frequently headaches fever continuously exhausted', 'always feel exhausted , bad taste mouth , throat itches lot also heated painful muscles entire body cramp times', 'losing appetite trouble swallowing nose running , sore throat', 'always get tickle throat feel fatigued skin begun feel dry well ocular edema occasion', 'feel queasy , sick , wobbly throat enlarged making difficult breathe chest occasionally pains night , occasionally feel ill', 'skin swollen itchy may occasionally flake hurts lot cheeks lips swell occasionally get headaches watery eyes puffing', 'sneeze lot nose running eyes ache damp , frequently croak head hurts time', 'sore throat lot sneezing times skin around eyes lips swell find start , stop', 'trouble breathing easily get breath face torso swollen , eyes hurt , dry , hacking cough', 'nasal congestion blocked nose occasion , night , stiffness chest pain also lost senses taste smell', 'get breathing issues wheezing , asthma symptoms regularly fevers headaches always worn', 'frequently exhaustion , terrible taste mouth , throat itchiness muscles also burning uncomfortable sometimes cramps throughout body', 'appetite decreased , swallowing issues sore throat , nose running', 'throat always tickles , worn additionally , skin started feel dry ocular inflammation occasionally affects', 'nauseous , ill , shaky huge throat , makes tough breathe occasionally nighttime chest aches occasional sickness', 'skin itching swollen sometimes , could flake lips cheeks swelling aches lot puffing occasionally gives headaches runny eyes', 'often get aburning sensation throat especially eating sometimes also leaves sour bitter taste mouth get nauseos beacuse', 'heartburn indigestion often vomit whatever eat difficultly swallowing food , beacuse food gets stuck throat nagging pain upper abdomen', 'frequent belching burping chest pain often radiates back neck , jaw arm get feeling tightness pressure chest', 'persistent sour taste mouth , even eaten anything acidic get frequent hiccups feeling lump throat', 'chronic bad breath sour taste mouth , sometimes gets difficult swallow food tingling sensation throat', 'get frequent heartburn indigestion , especially eating spicy foods fatty foods get chest pain gets worse lie bend also often chest pain', 'loss appetite difficulty swallowing often persistent feeling fullness , even eating small meals usually throw get heartburn tingling sensation throat', 'sore throat hoarseness , especially morning chronic nagging pain throat bad breath also frequent belching', 'feeling food acid backing throat chest pain gets worse lie get frequent heartburn indigestion , eating food vomit', 'feel uneasiness eating usually vomit whatever eaten always pain abdomen really bad acid reflux', 'throat frequently feels like burning , especially eating additionally , occasionally get sour bitter aftertaste , causes feel queasy', 'indigestion heartburn frequently vomit everything eat , trouble swallowing food gets caught throat upper abdomen bothering', 'burping belching frequent frequently get chest discomfort spreads back neck , jaw , arm pressure tension chest', 'even anything acidic stomach , constantly sour taste mouth frequently hiccups lump throat', 'always foul breath sour taste mouth , occasionally , tingling throat makes difficult swallow meals', 'frequently heartburn indigestion , particularly consuming spicy fatty foods lie stoop , chest discomfort worsens chest hurts quite bit', 'feel like eating , swallowing challenging even eating little meals , frequently get lingering sense fullness typically , heartburn , nausea , tingling throat', 'often wake sore throat scratchy voice throat hurts constantly , also poor breath also frequently burp', 'feel though acid food backing throat chest hurts , lying makes worse eating , frequently heartburn indigestion throw', 'eating , get queasy frequently throw everything eaten always get severe abdominal ache terrible acid reflux', 'especially eating , throat regularly feels like burning also occasionally get bitter sour aftertaste , makes feel sick', 'heartburn indigestion regularly vomit everything eat , food gets stuck throat , making difficult swallow pain upper abdomen', 'belching burping common often get chest pain radiates back neck , jaw , arm chest , pressure stress', 'get sour taste mouth time , even nothing acidic stomach often get hiccups lump throat', 'periodically find challenging swallow food due tingling throat , bad breath , bad taste mouth', 'regularly indigestion heartburn , especially eating spicy fatty foods chest pain worse hunch lie additionally , chest hurts lot', 'mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling', 'frequently get scratchy voice painful throat wake bad breath continual sore throat also vomit lot', 'throat feels though food acid backing lying makes chest pain regularly heartburn indigestion eating puke', 'often feel sick eating puke entire meal constantly get excruciating acid reflux severe stomach pain', 'throat often feels like burning , especially eating bitter sour aftertaste occasionally experience also makes feel unwell', 'indigestion heartburn frequently vomit everything eat , hard swallow since food gets caught throat upper abdomen discomfort', 'tendency belch burp frequently frequently get chest pain spreads arm , jaw , back neck pressure stress chest', 'even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups', 'periodically , tingling throat , poor breath , bad taste mouth make difficult swallow meals', 'routinely experience heartburn indigestion , particularly consuming spicy fatty foods lean forward lie , chest discomfort becomes worse chest hurts lot well', 'feel like eating , swallowing challenging even little meals , frequently get lingering sensation fullness normal symptoms include nausea , heartburn , tingling throat', 'regularly wake scratchy voice sore throat throat constantly irritated , horrible breath frequently throw', 'feels like food acid backing throat chest discomfort becomes worse lying eating , frequently heartburn indigestion throw', 'eating , frequently feel unwell throw entire meal suffer painful acid reflux excruciating stomach discomfort time', 'especially eating , throat frequently feels scorching occasionally get bitter sour aftertaste makes feel sick', 'heartburn indigestion regularly throw everything eat , swallowing difficult since food gets stuck throat experiencing pain upper abdomen', 'tendency burp belch regularly often get chest discomfort radiates arm , jaw , neck chest feels tight stressed', 'always get sour taste mouth , even anything acidic stomach regularly hiccups knot throat', 'occasionally trouble swallowing food tingling throat , terrible breath , bad taste mouth', 'frequently indigestion heartburn , especially eating spicy fatty foods chest hurts lean forward lying additionally , chest hurts lot', 'regularly feel sick eating puke entire meal constantly get horrible acid reflux agony stomach discomfort', 'throat often feels like fire , especially eating occasionally get aftertaste sour bitter makes feel nauseous', 'even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups', 'mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling', 'metallic taste mouth , also sense change taste smell sometimes get unbearable joint pain muscle pain', 'headaches migraines , difficulty sleeping muscle twitching tremors sometimes get lightheaded', 'fever feel dizzy lightheaded heart beating fast feel confused able think clearing everything feels foggy', 'rashes skin flake time time leaves prone infection fingers start twitching sometimes experience tremors', 'feel nauseous chest pain recently experiencing chest pain feel uneasy often sweat profusely', 'itching body , rashes chest back get flaky skin time time often leaves marks body', 'hair loss significant change texture hair dry itchy sclap increased dandruff skin also getting dry', 'experiencing decrease sex drive difficulty fucntion sexually feel light headed confused often experince brain fog', 'experiencing changes menstrual cycle unexpected vaginal discharge often get mood swings feel agitated time time', 'experinenced significant weight gain become obese changes appetite cravings different foods', 'difficulty maintianing concentration low mental clarity often forget things general difficulty remembering things', 'addition experiencing change taste fragrance , also metallic aftertaste tongue occasionally get excruciating joint muscular pain', 'suffer migraines headaches , trouble falling asleep muscles trembling twitching sometimes feel dizzy', 'feeling really lightheaded dizzy temperature mind completely muddled , heart racing find difficult think clearly , everything seems quite hazy', 'skin occasionally peels rashes makes vulnerable infections hands begin shake , occasionally tremors', 'severe nausea chest discomfort chest discomfort lately often shiver lot feel really nervous', 'rashes chest back itch body occasionally flaky skin , frequently creates markings body', 'hair texture significantly changed , experiencing hair loss scalp dry itching , dandruff becoming worse skin also becoming really dry', 'sex desire decreased , finding harder function sexually regularly brain fog feel quite dizzy disoriented', 'monthly cycle changed , unexpected vaginal discharge frequently experience mood swings experience occasional agitation', 'gained lot weight quite fat appetite varies , desires various things', 'struggle maintain focus , mental clarity really poor trouble remembering things frequently forget stuff', 'tongue also metallic aftertaste addition change taste scent occasionally get acute muscle joint ache', 'headaches migraines , difficulties sleeping entire body shaking twitching sometimes become lightheaded', 'fever , feel quite woozy lightheaded heart pounding , head absolutely foggy ability think properly impaired , everything appears somewhat blurry', 'rashes occasionally cause skin peel susceptible illnesses result start tremble sometimes , hands start shake', 'chest pain extreme nausea present recently , chest hurting frequently shiver lot really anxious', 'body itches , rashes back chest skin flaky sometimes , commonly results body marks', 'losing hair , hair texture considerably altered dandruff becoming worse , dry , itchy scalp skin getting quite dry well', 'desire sex dropped , trouble sex frequently get brain fog , well feeling somewhat bewildered', 'noticed difference monthly cycle unexpected vaginal discharge become irritable every , moods swing lot', 'put lot weight obese different urges different appetites', 'terrible mental clarity find difficult stay focused regularly forget things problems remembering things', 'along change taste smell , tongue also metallic aftertaste occasionally get severe joint muscular pain', 'suffer migraines headaches , trouble falling asleep whole body trembling shivering times , dizziness', 'quite queasy dizzy temperature brain completely cloudy , heart racing trouble thinking straight , everything seems little fuzzy', 'sometimes skin starts flake rashes prone becoming sick result occasion , hands begin quiver begin tremble', 'severe nausea chest discomfort chest aching lately really nervous shiver lot time', 'rashes back chest , entire body itches skin may dry flaky times , frequently leaves body marks', 'shedding hair , texture hair changed significantly dry , itchy scalp dandruff becoming worse skin also becoming pretty dry', 'longer want sex , difficult regularly brain fog sense confusion', 'monthly cycle changed , unexpected vaginal discharge occasionally lose temper , moods change lot', 'gained lot weight currently quite fat many inclinations cravings', 'awful mental clarity trouble focusing frequently forget things struggle memory', 'tongue also changes taste scent , leaving metallic aftertaste excruciating joint muscle pain', 'headaches migraines , difficulties sleeping shaking shivering sometimes become lightheaded', 'temperature , feel pretty nauseous lightheaded heart pounding , mind absolutely foggy everything feels little hazy , difficulties thinking clearly', 'rashes occasionally cause skin start fall likely get ill result hands occasionally start tremble , start shake', 'chest pain severe nausea present recently , chest hurting tremble lot quite anxious', 'entire body itches , rashes back chest sometimes skin might dry flaky , often results body stains', 'burning sensation upper abdomen , ofetn night heartburn indigestion often feel nauseous', 'bloating feeling uneasiness experiencing weight loss loss appetite sometimes dark tarry stools blood vomit', 'difficulty swallowing food often get sensation food getting stuck throat constant belching bloating persitent sour taste mouth', 'bloody stools resulted bloos loss loss iron thiis caused anemia feel weak general', 'persistant , gnawing hunger apetite sometimes get abdominal cramps spasms bloating gas eating causes great deal uneasiness', 'changes bowel movements , constipation diarrhea loss appetite energy often feel fatigued', 'abdominal pain gets worse bend lie feel discomfort eat certain foods spicy acidic food sometimes get loose stools', 'difficulty sleeping due abdominal pain discomfort loss appetite feel fatigued going bathroom feel tited time', 'sour acidic taste mouth frequent belching burping feeling pressure fullness upper abdomen last hours', 'unintended weight loss difficulty gaining weight pain discomfort relieved taking antacids mouth tastes bad', 'occasionally throughout day night , burning upper abdomen get indigestion , heartburn , frequent bouts extreme nausea', 'bloating unease present losing weight losing interest food occasionally get tarry , black stools vomit contains blood', 'trouble swallowing , frequently feel like food getting stuck throat feel bloated belch constantly always get sour taste mouth', 'bloody stools caused lose iron bloos , among things anaemia , generally feel quite weak', 'hunger appetite persistent ravenous periodically , stomach may cramp spasm eating , bloating gas , makes quite uncomfortable', 'bowel motions changed constipated diarrhoeal lack energy , appetite , frequently feel really exhausted', 'stomach ache , bending lying makes worse consume certain meals , spicy acidic cuisine , discomfort sometimes causes loose stools', 'trouble falling staying asleep stomach ache using restroom , feel drained lose appetite constantly feel really anxious', 'mouth filled sour , acidic flavour burping belching frequent hours , get pressure fullness upper belly', 'lose weight unintentionally find challenging acquire weight use antacids ease pain discomfort experience mouth feels horrible', 'occasionally burning upper abdomen throughout day night get heartburn , indigestion , regular episodes severe nausea', 'feel bloated uneasy time losing weight , longer like eating occasionally get bloody vomit dark , tarry stools', 'often feel like food getting caught throat problems swallowing feel bloated frequently belch constantly bitter aftertaste', 'lost lot stuff bloody stools , including iron bloos , anaemia usually feel fairly weak', 'appetite chronic hunger ferocious stomach may occasionally ache spasm gas bloating eating , really painful', 'bowel movements become constipated diarrheal often feel quite tired lack energy appetite', 'bending reclining makes stomach feel pain eating foods , hot acidic food occasionally get loose stools result', 'due stomach discomfort , problems sleeping staying asleep exhausted using bathroom lose appetite quite nervous time', 'sour , acidic taste mouth belching burping common pressure fullness upper abdomen hours', 'unknowingly lose weight find difficult gain weight relieve pain discomfort feel , take antacids mouth hurts much', 'occasion , throughout day night , burning upper abdomen frequently get extreme nauseous episodes , heartburn , indigestion', 'bloating unease longer like eating losing weight sometimes vomit blood tarry , black stools', 'frequently get swallowing issues sensation food getting stuck throat regularly belch feel bloated aftertaste unpleasant time', 'bloody stools caused lose lot things , including iron bloos anaemia result , typically feel rather weak', 'appetite ongoing hunger fierce times stomach hurts cramps following meal , painful gas bloating', 'constipated diarrheal bowel motions happening frequently lack energy appetite', 'stomach feels worse stoop recline eating particular meals , spicy acidic cuisine , discomfort occasionally causes loose stools', 'stomach ache keeps falling staying asleep using restroom , feel worn lose interest food constantly pretty anxious', 'mouth filled acidic , sour flavour burping belching frequent hours , upper abdomen felt pressured full', 'inadvertently lose weight hard time gaining back use antacids get rid pain discomfort experience aches much mouth', 'occasionally burning upper abdomen throughout day night regularly get severe heartburn , indigestion , nausea', 'feeling bloated uneasy losing weight , longer like eating occasionally get tarry , black stools blood vomit', 'regularly trouble swallowing , sometimes feel like food becoming trapped throat frequently feel bloated belch every time , bad aftertaste', 'lost lot stuff bloody stools , including iron bloos result , anaemia generally feel rather weak', 'strong appetite constantly hungry stomach occasionally aches cramps really painful gas bloating eating', 'experiencing bowel movements constipated diarrhoeic often lack eat energy', 'hunch lie stomach hurt pain eating certain foods , hot acidic food occasionally get loose stools result', 'get sleep remain asleep stomach pain get exhausted using bathroom stop hungry worry lot time', 'mouth filled sour , acidic flavour frequent belching burping upper abdomen felt pressed full past hours', 'unintentionally lose weight find challenging gain back relieve pain discomfort feel , take antacids mouth hurts severely right', 'increased thirst frequent urination often dry mouth throat recently increased hunger appetite', 'blurred vision seems getting worse feel fatigued tired time also feel dizzy light headed times', 'dry mouth throat also experiencing increased appetite hunger however feel tired times', 'slow healing wounds cuts tingling sensation hand numbness hands feet', 'mood changes difficulty concentrating mind feels hazy foggy times gets difficult even regular chores', 'feeling tremors muscle twitching decreased sense smell taste feel fatigued sometimes feeling rapid hearbeat palipatations', 'rashes skin irritations especially folds skin also slow healing cuts bruises skin', 'frequent need urinate often uncontrollable urges feel dizzy often confused also loss visuals', 'difficulty breathing especially physical activity unusual sweating flushing frequently get yeast infections', 'persistent dry cough infections dont seem healing palpitations also problem sore throat seem go away', 'drinking water urinating frequently throat mouth frequently dry recently , appetite hunger grown', 'vision foggy , seems growing worse constantly feeling worn exhausted additionally , occasionally severe lightheadedness dizziness', 'throat mouth dry also feeling hungry hungry sometimes feel quite exhausted', 'sluggish wound reduced healing rate hands feet numb tingling sensation', 'struggle focus emotional swings times , head seems cloudy foggy , making challenging even simple tasks', 'feel muscles trembling shaking feel worn senses taste smell diminished sometimes palpitations quick heartbeat', 'experience skin irritations rashes , especially skin creases wounds bruises skin also heal quite slowly', 'frequently feel want urinate frequently strong cravings frequently feel woozy bewildered also sight loss', 'trouble breathing , especially exercising flushed sweating unexpected way yeast infections lot', 'chronic dry cough palpitations infections appear getting better also painful throat issue , although seem go away', 'water intake frequency urination increased mouth throat regularly feel dry appetite hunger increased recently', 'blurry vision , seems getting worse continuously fatigued worn also occasionally acute lightheadedness vertigo', 'mouth throat dry additionally , growing increasingly hungry occasion , feel rather worn', 'wound healing slowly slower rate hands feet numb tingling time', 'trouble focusing , emotions fluctuate brain might seem murky foggy times , making difficult complete even straightforward chores', 'body shaking trembling senses taste smell gotten weaker , feel exhausted occasionally palpitations rapid pulse', 'rashes skin irritations , especially crevices skin skin bruises cuts also take long time heal', 'often feel want urinate experience intense desires often feel dizzy confused also lost sight', 'respiratory issues , especially unexpectedly , sweating flushed frequently yeast infections urinary tract infections', 'constantly dry cough infections seem healing , palpitations throat hurts occasionally , appear get better', 'drinking water urinating frequently throat mouth frequently feel dry recently , hunger appetite grown', 'vision foggy , appears growing worse feel exhausted worn time also severe dizziness lightheadedness occasion', 'throat mouth dry also getting hungry , however , occasionally feel rather exhausted', 'wound recovering slowly hands feet tingling going numb feel weak', 'emotions change , difficulties focusing times , mind might cloudy hazy , making challenging even simple tasks', 'entire body trembling shaky lost ability taste smell , worn sometimes get racing heart palpitations', 'get skin irritations rashes , especially skin crevices cuts bruises skin also take heal', 'frequently feel want urinate strong cravings get woozy disoriented lot moreover , lost vision considerably', 'breathing problems , especially outside suddenly flushed perspiring experience yeast infections urinary tract infections rather regularly', 'dry cough never stops palpitations infections appear getting better sometimes throat hurts , seems get better', 'water intake frequency urination increased mouth throat feel dry lot hunger appetite increased recently', 'vision blurry , feels like getting worse time , feel worn fatigued occasionally extreme lightheadedness vertigo well', 'mouth throat dry additionally , growing increasingly hungry however , get periodic bouts exhaustion', 'wound healing slowly days feet hands tingling becoming numb feel really fragile', 'emotions fluctuate , hard concentrate mind foggy foggy times , making difficult perform even simple chores', 'shaking trembling lost sense taste smell , exhausted occasionally get palpitations speeding heart', 'particularly crevices skin , skin rashes irritations skin bruises cuts take heal well', 'regularly experience intense urges want urinate frequently feel drowsy lost also significantly lost vision', 'trouble breathing , especially outside start feel hot start sweat frequently urinary tract infections yeast infections', 'constantly sneeze dry cough infections seem healing , palpitations throat ache occasionally , usually gets better']\n" + ] + } + ], + "source": [ + "symptoms_list = data['cleaned_text'].tolist()\n", + "print(symptoms_list)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "53a08f5a-d648-4050-9487-fdeb464f2f7a", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter symptoms to classify: stomach pain , ulcers tongue , vomiting , cough , chest pain\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Input Symptoms: stomach pain , ulcers tongue , vomiting , cough , chest pain -> Predicted Label: GERD\n", + "['stomach pain , ulcers tongue , vomiting , cough , chest pain']\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "# Function to predict new symptoms\n", + "def predict_symptoms(new_symptoms):\n", + " # Ensure new_symptoms is a list\n", + "\n", + " preprocessed_text = preprocess_text(new_symptoms)\n", + "\n", + " if isinstance(preprocessed_text, str):\n", + " new_symptoms = [preprocessed_text]\n", + " \n", + " # Vectorize the new symptoms\n", + " new_symptoms_vectorized = vectorizer.transform(new_symptoms)\n", + "\n", + " \n", + " # Make predictions\n", + " predictions = model.predict(new_symptoms_vectorized)\n", + " \n", + " return predictions,new_symptoms\n", + "\n", + "# Get user input\n", + "user_input = input(\"Enter symptoms to classify: \")\n", + "\n", + "# Make a prediction\n", + "predictions,new_symptoms = predict_symptoms(user_input)\n", + "\n", + "print(f\"Input Symptoms: {user_input} -> Predicted Label: {predictions[0]}\")\n", + "print(new_symptoms)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1d6c180a-30a9-4a44-a50f-b38cb90a406a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "697a4928-44ec-4ec9-9975-6caa5bdf5219", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "50" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data['label'].nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a4189b0f-a7fb-4eba-bdd3-9d102b0915bb", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86196dc1-32cf-44ae-93d0-9cd431e90c2b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "da12cf2d-1413-4dda-a8c2-af4d11c5262a", + "metadata": {}, + "outputs": [], + "source": [ + "." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Symptoms_Detection/Symptom2Disease.csv b/Symptoms_Detection/Symptom2Disease.csv new file mode 100644 index 0000000000000000000000000000000000000000..474d1bf691d44fcec72cfdf4205af982a8edf3b2 --- /dev/null +++ b/Symptoms_Detection/Symptom2Disease.csv @@ -0,0 +1,1201 @@ +,label,text +0,Psoriasis,"I have been experiencing a skin rash on my arms, legs, and torso for the past few weeks. It is red, itchy, and covered in dry, scaly patches." +1,Psoriasis,"My skin has been peeling, especially on my knees, elbows, and scalp. This peeling is often accompanied by a burning or stinging sensation." +2,Psoriasis,"I have been experiencing joint pain in my fingers, wrists, and knees. The pain is often achy and throbbing, and it gets worse when I move my joints." +3,Psoriasis,"There is a silver like dusting on my skin, especially on my lower back and scalp. This dusting is made up of small scales that flake off easily when I scratch them." +4,Psoriasis,"My nails have small dents or pits in them, and they often feel inflammatory and tender to the touch. Even there are minor rashes on my arms." +5,Psoriasis,The skin on my palms and soles is thickened and has deep cracks. These cracks are painful and bleed easily. +6,Psoriasis,"The skin around my mouth, nose, and eyes is red and inflamed. It is often itchy and uncomfortable. There is a noticeable inflammation in my nails." +7,Psoriasis,My skin is very sensitive and reacts easily to changes in temperature or humidity. I often have to be careful about what products I use on my skin. +8,Psoriasis,"I have noticed a sudden peeling of skin at different parts of my body, mainly arms, legs and back. Also, I face severe joint pain and skin rashes." +9,Psoriasis,"The skin on my genitals is red and inflamed. It is often itchy, burning, and uncomfortable. There are rashes on different parts of the body too." +10,Psoriasis,"I have experienced fatigue and a general feeling of malaise. I often feel tired and have a lack of energy, even after a good night's sleep." +11,Psoriasis,"The rash on my skin has spread to other parts of my body, including my chest and abdomen. It is itchy and uncomfortable, and it is often worse at night. I am also facing skin peeling." +12,Psoriasis,The rash on my skin is worse in the winter months when the air is dry. I find that I have to moisturize more frequently and use humidifiers to keep my skin hydrated. +13,Psoriasis,"I have experienced difficulty sleeping due to the itching and discomfort caused by the rash. There are small dents in my nails, which is really concerning." +14,Psoriasis,"My skin is prone to infections due to dry, flaky patches. I am experiencing a strong pain in my joints. The skin on my knees and elbows is starting to peel off." +15,Psoriasis,"I am starting to have rashes on my skin. The rash often bleeds when I scratch or rub it. Moreover, I have noticed small dents in my nails." +16,Psoriasis,"I have noticed that my skin has become more sensitive than it used to be. There is a silver like dusting on my skin, especially on my back and elbows." +17,Psoriasis,"I am worried about the constant peeling of the skin on my palm, elbow and knee. I have developed rashes on my arms, which itch if I touch them. All of these are making my life quite discomforting and miserable." +18,Psoriasis,"There is strange pain in my joints. Also, I have noticed strange peeling of skin in different parts of my body. I am afraid there is something wrong going on with my body." +19,Psoriasis,"My nails have small dents on them. Even my joints have started to pain severely. There is a silver like dusting on my skin, particularly in my back." +20,Psoriasis,"The rashes on my skin are not healing. Moreover, I have noticed a sudden peeling of the skin, especially the skin on my elbows and knees. I am really worried about this." +21,Psoriasis,"For the past few weeks, I've had a skin rash on my arms, legs, and chest. It's red and irritating, with dry, scaly spots. I have a strange pain in my joints too." +22,Psoriasis,"My skin is peeling, particularly on my knees, elbows, and scalp. This peeling is frequently accompanied by a stinging or burning feeling." +23,Psoriasis,"I'm having joint discomfort in my fingers, wrists, and knees. The pain is frequently aching and throbbing, and it worsens when I move my joints." +24,Psoriasis,"My skin has a silvery film, particularly on my back, arms and scalp. This dusting is composed of tiny scales that easily peel off when scratched." +25,Psoriasis,"I have red and inflammatory skin around my mouth, nose, and eyes. It is frequently irritating and unpleasant. Recently, it has got very painful." +26,Psoriasis,My skin is extremely sensitive and quickly irritated by changes in temperature or humidity. My nails have developed dents on them. I am worried about this sudden change. +27,Psoriasis,"I've seen a sudden peeling of skin on various regions of my body, mostly my arms, legs, and back. In addition, I have significant joint pain and skin rashes. The rash is spreading to different parts of my body." +28,Psoriasis,"My genital skin is red and irritated. It is frequently irritating, burning, and unpleasant. There are also rashes in various places of the body. Also, I have a strange pain in my joints." +29,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. There is a noticeable inflammation in my nails." +30,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in excruciating agony. The skin on my knees and elbows is beginning to flake." +31,Psoriasis,"My skin is breaking out in rashes. When I scratch or rub the rash, it frequently bleeds. In addition, I've observed little dents in my nails. There is a noticeable inflammation in my nails." +32,Psoriasis,"I've observed that my skin is more sensitive now than it used to be. My skin has a silvery film, especially on my back and elbows." +33,Psoriasis,"My palms and soles have grown and developed severe fissures. These cracks are unpleasant and frequently bleed. Also, the skin is starting to peel off." +34,Psoriasis,"My nails are starting to have small pits on them. I am worried and don't know what is causing it. Also, my joints pain and there are rashes on my arms and back." +35,Psoriasis,"There is a silver like dusting on my skin. Moreover, the skin on my arms and back are starting to peel off. This is strange and really concerning me." +36,Psoriasis,"My skin rash has extended to other areas of my body, including my chest and belly. It is irritating and unpleasant, and it is frequently worst at night. I'm also experiencing skin flaking." +37,Psoriasis,"My skin rash gets worse in the winter when the air is dry. To keep my skin moisturized, I have to moisturize more regularly and use humidifiers. I am also facing joint pain." +38,Psoriasis,I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents. I am also experiencing skin peeling in different parts of my body. +39,Psoriasis,"My skin is peeling in places, especially on my knees, elbows, and arms. This peeling is often accompanied by a painful or burning sensation. I am also developing small dents on my nails, which is really concerning." +40,Psoriasis,"My skin has a silvery layer over it, especially on my back and arms. This dusting is made up of small scales that peel off readily when rubbed. Also, there are rashes all over my body." +41,Psoriasis,"My arms, face and back are all red and irritated. It is frequently irritating and unpleasant. My nails have a strange inflammation and have developed small dents. I have never seen anything like this." +42,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. Moreover, my joints pain everyday and I have no idea what is causing it." +43,Psoriasis,My fingers and soles have pretty thick skin that is cracked severely. These fractures hurt and bleed frequently. The fractures are itchy and covered with scales. +44,Psoriasis,"My skin has changed from being less sensitive to being more sensitive. My skin has a silvery coating, especially on my back, elbows and knees." +45,Psoriasis,"My nails are slightly dented. Even my joints are now experiencing excruciating discomfort. My skin has a silver-like powder, especially on my back and elbows. " +46,Psoriasis,"I've had trouble falling asleep because of the rash's pain and itching. The skin on my fingers are starting to peel off. My nails have a few tiny cracks, which is really worrying. " +47,Psoriasis,"My joints are experiencing an unusual discomfort. Additionally, I've experienced weird skin peeling in various places on my body. I'm concerned that something is wrong with my body. " +48,Psoriasis,"I am starting to have rashes on my arms and neck. The rash often bleeds and hurts when I scratch it. I have also developed small dents in my nails, which is very strange." +49,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in extreme pain . My knees and elbows' skin are starting to peel off." +50,Varicose Veins,"I have a rash on my legs that is causing a lot of discomforts. It seems there is a cramp and I can see prominent veins on the calf. Also, I have been feeling very tired and fatigued in the past couple of days." +51,Varicose Veins,"My calves have been cramping up when I walk or stand for long periods of time. There are bruise marks on my calves, which is making me worried. I feel tired very soon." +52,Varicose Veins,"There is bruising on my legs that I cannot explain. I can see strange blood vessels below the skin. Also, I am slightly obese and I am really worried." +53,Varicose Veins,I am overweight and have noticed that my legs are swollen and the blood vessels are visible. My legs have swollen and I can see a stream of swollen veins on my calves. +54,Varicose Veins,"The veins on my calves have become very prominent and causing discomfort. I can't stand for long periods of time, as it causes pain in my legs, similar to cramps." +55,Varicose Veins,The skin around the veins on my legs is red and inflamed. I believe I can see some of the swollen blood vessels. I am really worried about it. +56,Varicose Veins,Standing or walking for long periods of time causes a lot of pain in my legs. I get cramps upon doing physical activities. There are bruise marks on my legs too. +57,Varicose Veins,The cramps in my calves are making it difficult for me to walk. I feel fatigued after working for some time. I believe obesity is the reason behind this. +58,Varicose Veins,"The swelling in my legs has gotten worse over the past few weeks. Now, a large number of veins are noticeable on my calves, which is making me worried." +59,Varicose Veins,The veins on my legs are very noticeable and cause me discomfort. It seems like there is a major bruise and I get cramps when I run. +60,Varicose Veins,The skin on my calves has become inflamed and red. My legs hurt if I try to run or do any physical activities. +61,Varicose Veins,"Recently, the pain in my calves has been constant and becomes worse when I stand or walk for long periods of time. My legs have started to swell and also some blood vessels are quite noticeable." +62,Varicose Veins,The veins in my legs are causing discomfort and difficulty sleeping at night. I have no idea why it is happening. I get cramps when I sprint. +63,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes. I can't sprint or stand for long periods of time. I can see some swollen blood vessels. +64,Varicose Veins,I have noticed cramps in my calves are becoming more frequent and intense. It is causing me a lot of discomforts. I am also overweight and my legs have started to swell. +65,Varicose Veins,The veins on my legs cause a lot of discomforts when I sit for long periods of time. +66,Varicose Veins,The rash on my legs is spreading and becoming more severe. It has become very difficult for me to run. +67,Varicose Veins,My legs are causing a lot of discomforts when I exercise. I get frequent cramps and the blood vessels have become quite noticeable. +68,Varicose Veins,The prominent blood vessels on my calves are causing self-consciousness and embarrassment. I believe the problem is because of my overweight. +69,Varicose Veins,The skin around the veins on my legs is dry and flaky. It seems there is a major bruise and my legs have started to swell. +70,Varicose Veins,I have been experiencing a rash on my legs that is causing a lot of irritation and discomfort. It is red and inflamed and appears to be spreading. +71,Varicose Veins,"Recently, my calves have been cramping up frequently, especially when I am walking or standing for long periods of time. Also, the veins are very noticeable." +72,Varicose Veins,I have noticed that there are bruises on my legs that I cannot explain. They are not painful but are concerning to me. +73,Varicose Veins,"As I am overweight, I have noticed that my legs are swollen and the blood vessels are more visible than usual. The swelling seems to be getting worse over time." +74,Varicose Veins,The veins on my calves are very prominent and are causing me a lot of discomforts. They are swollen and protrude from my skin. +75,Varicose Veins,"The skin around the veins on my legs is red, inflamed, and itchy. It is causing a lot of discomforts and I am starting to get regular cramps." +76,Varicose Veins,Standing or walking for long periods of time has been causing a lot of pain in my legs. It feels like a cramp and becomes worse the longer I am on my feet. +77,Varicose Veins,The cramps in my calves have been making it difficult for me to walk and do my daily activities. They come on suddenly and last for several minutes. +78,Varicose Veins,The swelling in my legs has gotten worse over the past few weeks and is causing me difficulty fitting into my shoes. It is also causing discomfort when I sit for long periods of time. +79,Varicose Veins,"The veins on my legs are very noticeable and are causing me a lot of discomforts. They are swollen and protrude from my skin, making them visible through my clothing." +80,Varicose Veins,"The skin on my calves is itchy and inflamed, causing a lot of discomfort and difficulty sleeping at night. The blood vessels have started to protrude out, which is concerning." +81,Varicose Veins,The pain in my calves is constant and becomes worse when I stand or walk for long periods of time. I am getting constant cramps and can't run for longer periods of time. +82,Varicose Veins,"The veins in my legs are causing discomfort and difficulty sleeping at night. They are swollen and protruding from my skin, making them noticeable and painful." +83,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes and is causing discomfort when I sit for long periods of time. +84,Varicose Veins,"The cramps in my calves are becoming more frequent and intense, making it difficult for me to walk and do my daily activities." +85,Varicose Veins,"The veins on my legs are causing a lot of discomforts when I sit for long periods of time. They are swollen and protruding from my skin, making them painful and noticeable." +86,Varicose Veins,"The rash on my legs is spreading and becoming more severe. It is red, inflamed, and itchy, causing a lot of discomfort and difficulty sleeping at night." +87,Varicose Veins,"My legs have been causing a lot of discomforts when I exercise. They feel heavy and swollen, and the veins are prominent and painful. I feel fatigued all the time." +88,Varicose Veins,"The prominent veins on my calves are causing self-consciousness and embarrassment. They are swollen and protrude from my skin, making them very noticeable." +89,Varicose Veins,"The skin around the veins on my legs is dry and flaky, causing discomfort and irritation. I am also starting to get frequent cramps." +90,Varicose Veins,"I have a rash on my legs that is giving me a lot of pain. There appears to be a cramp, and I can see visible veins on the calf." +91,Varicose Veins,My veins of legs have become more visible and swollen than normal. They are visible through my skin and it hurts when I move. +92,Varicose Veins,"Walking is tough for me because of cramps in my calves. Obesity, I believe, is the cause of this. After a while of working, I'm exhausted." +93,Varicose Veins,The blood vessels on my legs are quite visible and give me a lot of pain. They're large and protrude from my skin. It is unusual and I am worried about it. +94,Varicose Veins,"I have noticed that the blood vessels in my legs are getting more noticeable than usual. It is a little concerning to me. Moreover, I am experiencing cramps every day." +95,Varicose Veins,My legs' swelling has become worse over the last couple of days. I can see the blood vessels protruding out of the skin. This is quite unusual. +96,Varicose Veins,Long durations of standing or walking have caused severe discomfort in my legs. It's a burning ache that gets worse the longer I'm on my feet. +97,Varicose Veins,"My legs' skin around the veins is unusual. There appears to be a large bruise. Nowadays, I get frequent cramps when I sprint or run." +98,Varicose Veins,"I am experiencing too many cramps in the last couple of days. I think something is not right. I believe there is a small bruise on my calves, but I am not sure about it." +99,Varicose Veins,"The veins in my calves are protruding out quite unusually. I am worried about it. Also, I am overweight and I believe this is the reason behind all of this." +100,Typhoid,"I have constipation and belly pain, and it's been really uncomfortable. The belly pain has been getting worse and is starting to affect my daily life. Moreover, I get chills every night, followed by a mild fever." +101,Typhoid,"I've also had some diarrhea, which has been really unpleasant. It's been coming and going, and it's been accompanied by abdominal cramps and bloating." +102,Typhoid,"I have been experiencing chills and fever, along with severe abdominal pain. I've been feeling really miserable overall, and I just can't seem to shake these symptoms." +103,Typhoid,I've been having a lot of trouble keeping hydrated because of the vomiting and diarrhea. There is a mild fever along with constipation and headache. +104,Typhoid,"I've lost a lot of weight in the past week because I haven't been able to eat much due to nausea and vomiting. This is followed by mild fever, headache and belly pain. I'm really concerned about my health." +105,Typhoid,"The fatigue has been really uncomfortable, and I've had a lot of difficulties doing my usual activities. I've also been feeling really depressed and irritable. There is mild pain in the abdominal part too." +106,Typhoid,"I've had a persistent headache for the past week, and it's been getting worse. It's been accompanied by belly aches, constipation and diarrhea." +107,Typhoid,"I've been experiencing high fever, especially at night. It's been really uncomfortable. There is a mild headache along with constipation and diarrhea." +108,Typhoid,"I've been having a lot of difficulty breathing, and I feel like I'm constantly nauseous. I also have mild belly pain. It's been terrifying at times." +109,Typhoid,"Diarrhea has been really watery and foul-smelling, and it's been accompanied by abdominal pain. I feel like vomiting most of the time." +110,Typhoid,"I've been having a lot of trouble sleeping because of the high fever, headache and chills. I wake up every day having a terrible pain in my belly area." +111,Typhoid,"I've also been experiencing some diarrhea and constipation, which has been really worrying. It feels like a sharp, stabbing pain in my belly area. I feel tired all the time." +112,Typhoid,"I have had some constipation and belly pain, which has been really uncomfortable. The pain has been getting worse and it's really affecting my daily life." +113,Typhoid,"I am experiencing a lot of belly pain and constipation, which has been really annoying. Sometimes, I feel a strong urge to vomit, and because of all of these, I am feeling very weak." +114,Typhoid,"The abdominal pain has been coming and going, and it's been really unpleasant. It's been accompanied by constipation and vomiting. I feel really concerned about my health." +115,Typhoid,"I have been experiencing a lot of bloating and constipation, and it's been really uncomfortable. It feels like there's a lot of pressure and pain in my belly area." +116,Typhoid,"I am experiencing extreme belly pain and constipation. Every night, I have a severe fever along with chills and headaches. The last couple of days has been really uncomfortable." +117,Typhoid,"I've been feeling exhausted and weak, and I can't seem to get rid of it. Because of the vomiting and nausea, I've entirely lost my appetite. My belly pains which are causing me concern." +118,Typhoid,"I am experiencing constipation and stomach ache, which has been really difficult. The discomfort has gotten worse, and it is seriously interfering with my everyday life." +119,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. I have a high fever, as well as constipation and headache." +120,Typhoid,The abdominal pain has been frequent and really painful. Constipation and vomiting have also occurred. I'm quite worried about my health. +121,Typhoid,"I'm having severe stomach pain and constipation. Every night, I get a headache and chills. The last few days have been really painful." +122,Typhoid,There is a distinct pain in my abdominal part. I am not sure what it is. I am also going through constant vomiting and feel nauseous. +123,Typhoid,"The diarrhea has been quite fluid and smelly, and it has been accompanied by severe abdominal pain and headache. Most of the time, I feel like vomiting." +124,Typhoid,"I have had a fever for the last couple of days. Now, I am starting to experience a severe pain in my stomach area and suffering from constipation." +125,Typhoid,"I am experiencing a lot of nausea and vomiting, and it's been quite difficult for me to eat anything. I've entirely lost my appetite, and as a result, I have become quite weak." +126,Typhoid,"I am having a lot of trouble sleeping because of the high fever and the headache. Moreover, I have constant belly pain, because of which I can't go to work." +127,Typhoid,"I have been feeling really fatigued and weak, and I can't seem to get rid of it. I have a mild fever and a strange pain in my abdominal area. I can't understand what is happening." +128,Typhoid,"I've been suffering from constipation and stomach discomfort, which has been really uncomfortable. Last night, I had a mild fever too." +129,Typhoid,"I've also been suffering from diarrhea, which has been really uncomfortable. It comes and goes, and it's accompanied by stomach aches and vomiting." +130,Typhoid,"I've been experiencing chills, fever, and extreme stomach discomfort. I've been generally unhappy, and I can't seem to get rid of these symptoms." +131,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. There is a mild fever, too, as well as stomach pain." +132,Typhoid,"I have developed diarrhea. It is accompanied by severe pain in my belly area. I don't feel like eating anything, and most of the time, I have a mild headache." +133,Typhoid,"I've had a lot of bloating and constipation, which has been really painful. There is a lot of pressure and pain in my stomach area. I get a high fever and chills every night." +134,Typhoid,"I've had a persistent stomach pain for the past week, and it is not healing even with medication. I feel like vomiting and can't eat anything, and because of which I have become extremely weak." +135,Typhoid,I am having severe stomach discomfort and diarrhoea. I have a high fever along with a headache. The previous several days have been really unpleasant. +136,Typhoid,"I am having a terrible pain in my abdominal part, and I've been feeling really nauseated. I'm also experiencing a mild fever. I am really worried." +137,Typhoid,"I am experiencing constipation and stomach ache. The discomfort has gotten worse, and it is seriously interfering with my everyday life. I feel like I have lost my appetite to eat anything." +138,Typhoid,"Most of the time I feel fatigued. I don't want to eat anything. I get a high fever and chills every night. Moreover, I have been vomiting since yesterday." +139,Typhoid,"I have lost my appetite and have noticed a significant weight loss. I have abdominal pain, especially in the area of my stomach and intestines. I am concerned about my health." +140,Typhoid,The stomach discomfort has been severe and frequent. Vomiting and constipation have also happened. I'm concerned about my health. +141,Typhoid,"I have been experiencing diarrhea and have had loose, watery stools several times a day. I have lost my appetite and feel nauseated all the time. I am starting to get a mild fever too." +142,Typhoid,"I am feeling quite weak. I'm having a lot of stomach discomfort and constipation, which is really bothering me. I have a strong urge to vomit at times, and as a result, I can't eat anything." +143,Typhoid,"There is strange pain in my stomach area. I don't know what the reason behind this is. Moreover, I am starting to get a mild fever along with chills and headaches." +144,Typhoid,"I've had a high fever, particularly at night. It's been quite unpleasant. There is a little headache, as well as constipation and diarrhea. I don't feel like eating anything." +145,Typhoid,"I've been having a lot of trouble staying hydrated because of the vomiting and diarrhea. I have a high fever, constipation, and a headache. I am also starting to get a strange pain in my stomach area and I can't do anything physical." +146,Typhoid,"I have been getting a headache for the past week that has been growing worse. It has been accompanied by stomach pains, constipation, and diarrhea. I don't know what is happening and I am really worried about it." +147,Typhoid,"I've lost a lot of weight in the last week because I couldn't eat much due to nausea and vomiting. This is followed by a high fever, headache, and stomach pain." +148,Typhoid,"I am having some diarrhea and constipation, which has been quite concerning. In my stomach, there is a severe, painful ache. I'm constantly exhausted and don't feel like eating anything." +149,Typhoid,"I've been having diarrhoea and loose, watery stools many times a day. I've lost my appetite and am always sick. I'm also developing a mild fever. Also, my abdominal part pains a lot. I don't know what the reason behind all of these is." +150,Chicken pox,"I've been experiencing intense itching all over my skin, and it's driving me crazy. I also have a rash that's red and inflamed." +151,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself." +152,Chicken pox,"I've had a high fever for the past few days. I don't know what's causing it. Also, I noticed rashes on my skin and it's hard for me to resist scratching." +153,Chicken pox,I've lost my appetite and can't seem to eat anything. I'm worried about my health. +154,Chicken pox,There are small red spots all over my body that I can't explain. It's worrying me. I feel extremely tired and experience a mild fever every night. +155,Chicken pox,"My lymph nodes are swollen, causing discomfort in my neck and armpits. I don't know what's causing it." +156,Chicken pox,"I'm feeling really sick and uncomfortable like something is wrong inside. I don't know what it could be. I noticed small red spots on my arms, which itches if I touch them." +157,Chicken pox,The itching is making it hard for me to sleep at night. I can't get any rest. I have also lost my appetite and feel lethargic. +158,Chicken pox,"I'm worried about this rash on my skin. It's spreading rapidly and causing a lot of discomforts. I can hardly sleep at night because of the itching," +159,Chicken pox,I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. +160,Chicken pox,"I have a skin rash that's red and inflamed, and it's spreading all over my body. I've been experiencing intense itching, especially on my arms and legs." +161,Chicken pox,"I've had a high fever for the past few days, and it's starting to worry me. I don't know what's causing it. Also, I have red spots all over my arms and legs, some of which are swollen." +162,Chicken pox,"I have a skin rash that's red and swollen, and it's spreading all over my body. I have a mild fever and it is causing me a lot of discomforts." +163,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself." +164,Chicken pox,There are small red spots all over my body that I can't explain. The bumps are itchy and uncomfortable and seem to spread rapidly. It's worrying me. +165,Chicken pox,The itching is making it hard for me to sleep at night. I can't seem to get any rest because the rash is so itchy and uncomfortable. I'm feeling really tired and exhausted. +166,Chicken pox,I have no energy and have lost my appetite. I have a high fever and severe headache and don't know what's wrong. +167,Chicken pox,The high fever and swollen lymph nodes are causing me much discomfort. I have a headache and feel weak and fatigued. It's hard for me to concentrate because of the fever. +168,Chicken pox,"The rash on my skin is causing a lot of discomforts. It's red and inflamed, spreading all over my body. The rash is accompanied by intense itching, especially on my arms and legs." +169,Chicken pox,"There are red spots all over my body that I can't explain. The spots are itchy and starting to swell, and they are spreading rapidly." +170,Chicken pox,I have small lymph nodes on my arms and face. The itching is making my day very uncomfortable. +171,Chicken pox,"I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. Also, there are small red spots starting to show on my skin." +172,Chicken pox,"I've had a mild fever for the past few days, and it's starting to worry me. The fever has been accompanied by a severe headache. I feel weak and lethargic." +173,Chicken pox,"I have swollen lymph nodes and red spots all over my body, and they are causing discomfort. I also have a mild fever and feel tired most of the time." +174,Chicken pox,"I've been suffering from severe itching all over my body, and it's driving me insane. I also have a red and irritating rash." +175,Chicken pox,"I have seen rashes on my skin, and it's difficult for me not to scratch. Also, I've had a high fever for several days. I'm not sure what's causing it." +176,Chicken pox,"I have little red spots all over my body that I don't understand. It worries me. I have lost my appetite and every night, I am exhausted and have a severe headache." +177,Chicken pox,"I'm feeling really sick and lost my appetite. I've seen little red patches on my arms, neck and face that itch when I touch them." +178,Chicken pox,I have red spots on my arms and legs and itching them makes it difficult for me to sleep at night. I also have severe headaches and a mild fever. +179,Chicken pox,Enlarged lymph nodes are giving me a great deal of pain. I have rashes all over my body and because of which I cannot sleep all night. +180,Chicken pox,"My skin rash is giving me a lot of pain and discomfort. It's red and swollen, and it's spreading throughout my body." +181,Chicken pox,I have a high fever and a mild headache. I'm tired most of the time and completely lost my appetite. +182,Chicken pox,"My arms and face have small lymph nodes, which are starting to swell. My day has been made really miserable by the constant itching and pain." +183,Chicken pox,"My arms and neck have large lymph nodes, which itch when I touch them. The itching has made my day extremely uncomfortable." +184,Chicken pox,"My skin rash is causing me a great deal of pain. There are also small red spots developing near my neck. Since yesterday, I have had a severe fever, headache and fatigue." +185,Chicken pox,"I am starting to develop tiny red spots all over my face and neck area, and it itches when I touch them. The itching is making my day very uncomfortable." +186,Chicken pox,"I have lost my appetite completely and can't seem to eat anything. I feel like vomiting and feel exhausted. I noticed rashes on my skin, which is really concerning me." +187,Chicken pox,I have a high fever and a severe headache. I can't seem to eat anything and feel like vomiting. There are also some red spots developing on my arms. I am really worried. +188,Chicken pox,I'm worried about these red spots on my skin. It's spreading rapidly and causing a lot of problems. I also developed a mild fever and headache every night. +189,Chicken pox,I'm feeling really nauseous and uneasy. I'm not sure what it might be. I've seen rashes on my arms and legs. I have lost my appetite and feel exhausted every day. +190,Chicken pox,I have swollen red lymph nodes on my arms and legs that itch when I touch them. I'm also suffering from a terrible headache and a mild fever. I don't feel like eating anything and have lost my appetite. +191,Chicken pox,I'm really exhausted and lacking in energy. I can hardly keep my eyes open during the day. I have a mild fever and don't feel like eating anything. I think I have lost my appetite. +192,Chicken pox,"I am exhausted and have lost my appetite. I feel vomiting and can't eat anything. In addition, little red spots are beginning to appear on my skin and near the neck. I am really worried about my health." +193,Chicken pox,There are small red spots all over my body. The spots are itchy and uncomfortable. I also have a mild fever and headache. +194,Chicken pox,"I've been suffering from severe itching all over my body, along with a fever and headache. The red spots are starting to swell and it is getting really uncomfortable every day." +195,Chicken pox,I feel tired every day. There are red spots all over my arms and back and it itches if I touch them. I am really worried and not sure what to do. +196,Chicken pox,"The high fever, swollen lymph nodes and headache are causing me a lot of trouble. I don't feel like eating anything and feel weak and fatigued. It's hard for me to concentrate on my daily life." +197,Chicken pox,"I have a high fever and red spots and rashes all over my body. I feel exhausted and have completely lost my appetite, which has made me weak and lethargic. I am really worried." +198,Chicken pox,I have seen rashes on my arms and neck and it itches if I scratch them. I've also had a high fever for a few days. I have no idea what is causing it. The itching is causing me a lot of discomforts. +199,Chicken pox,"There are red swollen spots all over my body. It itches if I touch them. Moreover, I also have a high fever and headache and always feel exhausted." +200,Impetigo,I have developed a skin rash on my face and neck. The rash is made up of red sores that are blistering. I am worried about my health. +201,Impetigo,"I have developed skin rashes made up of blistering sores. The blistering sores are raised, fluid-filled lesions and they are painful to touch. I am also suffering from a high fever." +202,Impetigo,I have a high fever. There are red sores developing near my nose. The sores are painful and have yellow rust-colored ooze coming out from them. +203,Impetigo,"There are rashes around my nose, with large red sores. I noticed that the rash was spreading to other parts of my body. Also, I have a high fever every night." +204,Impetigo,I have been suffering from a high fever for the last couple of days. Sores are developing near my nose. The sores are painful and I am feeling very uncomfortable these days. +205,Impetigo,"My skin has developed rashes, mainly near the nose. The rash is spreading to other parts of my body. I am really about worried about this." +206,Impetigo,I have been experiencing extreme fatigue and a high fever. There are rashes near my nose and mouth. The rash is itchy and makes it very difficult for me to sleep. +207,Impetigo,"I am suffering from extreme fever and weakness. I have developed sores on my face. The sores itchy and uncomfortable. Often, a yellow colored ooze comes out of the sores." +208,Impetigo,I have noticed that the sores are taking longer to heal and are more prone to infection. The sores on my face are swollen and tender to the touch and very uncomfortable to handle. +209,Impetigo,There are red sores on my face and near my nose. I have noticed that the rash is spreading more quickly on my neck and chest. +210,Impetigo,The sores around my nose have become crusted over and are difficult to touch. A yellow-rust coloured ooze used to come out of the sores. It is taking much more time to handle. +211,Impetigo,"I developed a minor rash near my nose a few days ago. Now, the rash is accompanied by a burning sensation and redness of the skin. I feel it is some kind of an infection." +212,Impetigo,"Initially, I developed small red sores near my nose and neck. Now, I am having a high fever and the sores have become more painful and inflamed over the past few days." +213,Impetigo,"I noticed a skin rash on my face. It was made up of a blistering sore. Today I observed a yellow colored fluid coming out of the sores, I am not sure what it is." +214,Impetigo,"The sores on my face are beginning to weep clear fluid. Also, every night I get a high fever and chills, because of which I cannot sleep all night." +215,Impetigo,I initially had rashes on my face and near my nose. But now the rash is spreading down my arms and legs. +216,Impetigo,"I have a high fever every night and developed sores on my face, particularly near my nose. I have noticed that the sores are taking longer to heal and are more prone to infection." +217,Impetigo,"The sores around my nose are now surrounded by red, inflamed skin. The rash has caused my skin to become dry and flaky, with a visible yellow colored fluid coming out of the sores." +218,Impetigo,"I have also been experiencing flu-like symptoms, such as fever and body pain. I have noticed red rashes and blistering sores near my nose and lips. It's itchy and uncomfortable." +219,Impetigo,I am suffering from mild fever and headache. There are small sores near my nose and rashes on my neck. I am going through a very tough time right now. +220,Impetigo,"There is a rash particularly bad around my nose, with large red sores that are painful and have yellow rust-colored ooze coming from them." +221,Impetigo,"There are sores on my face and mostly near my nose and lips. The sores are causing discomfort or pain, and there is a discharge of yellow or rust-colored fluid from them." +222,Impetigo,"I have been developing sores on my face and nose area. I am not sure what is causing this. The sores on my face are swollen and tender to the touch, and I have a burning sensation and redness of the skin." +223,Impetigo,"The rash on my face has become more painful and inflamed over the past few days, and the sores are beginning to weep clear fluid. It is getting extremely painful with each day." +224,Impetigo,I have rashes on my face. I am starting to have small sores around my nose and often a yellow fluid comes out of the sores. The sores are becoming extremely painful. +225,Impetigo,"I am feeling really sick. I have a high fever and headache. I noticed rashes on my arms and face. I am extremely worried about this. Today, I observed red sores near my nose." +226,Impetigo,"I've been suffering from a high fever for the past few days. Sores are forming around my nose and there are rashes on different parts of my body. The sores are severe, and I'm feeling really uneasy these days." +227,Impetigo,I have a high fever and am really weak. My face has gotten sores. The blisters are itchy and painful. A yellow ooze frequently leaks from the wounds. +228,Impetigo,"I am experiencing skin rashes with burning sores. The blistering sores are fluid-filled, elevated, red colored lesions that are unpleasant to touch. I also have a high fever." +229,Impetigo,"I believe I have some skin disease. There are rashes on my face and small sores near my nose. The sores have become red, and painful and some kind of a yellow ooze discharges from them." +230,Impetigo,"I have noticed that the sores on my face are healing more slowly and are more likely to become infected. My cheek sores are large, painful to the touch, and extremely difficult to handle. I can't seem to get rid of these sores." +231,Impetigo,"I am having a high fever. I've had a skin rash on my face, neck and arms. The rash is made up of burning red lesions. I'm concerned about my health." +232,Impetigo,"I've acquired skin rashes with blistering sores. The blistering sores are fluid-filled, elevated lesions that are unpleasant to touch. I'm also running a high fever." +233,Impetigo,"I'm running a high temperature. Near my nose, red sores are forming. The lesions are painful, and yellow rust-colored fluid is oozing from them." +234,Impetigo,"I have rashes around my nose, as well as huge red sores. The rash is spreading to other places on my body, as I've seen. In addition, I have a high temperature every night." +235,Impetigo,My cheeks and nose are covered with red sores. I've observed that the rash on my neck and chest is spreading faster. I am also developing a mild fever. +236,Impetigo,My nasal sores have crusted up and become difficult to touch. The wounds used to leak a yellow-rust coloured fluid. It is taking a lot longer to deal with using medication. +237,Impetigo,"A few days ago, I experienced a tiny rash around my nose. The rash is now accompanied by a burning feeling and skin redness and discharge of fluid. I believe it is some sort of infection." +238,Impetigo,"Small red sores appeared near my nose and neck at first. I now have a high temperature, and the sores have gotten more painful and inflamed in recent days." +239,Impetigo,"A rash has developed around my nose and lips, with huge red lesions that are painful and emit a yellow rust-colored fluid." +240,Impetigo,"My face is covered in sores. Most of them are near my nose and lips. The lesions are causing discomfort or suffering, and a yellow or rust-colored fluid is oozing from them." +241,Impetigo,"I've started getting sores on my face and nose. I have no idea what is causing this. My cheek sores are large and irritating to the touch, and I have a burning feeling and skin redness." +242,Impetigo,"Over the last two days, the rash on my face has gotten more severe and inflamed, and the blisters have begun to bleed clear pus. It is really painful to deal with." +243,Impetigo,"I feel I have a skin condition. My face has rashes and little blisters around my nose. The wounds have turned red and painful, and a yellow liquid is oozing from them." +244,Impetigo,"I've observed that the lesions on my face are healing slower and are more prone to infection. The lesions on my cheeks are huge, unpleasant to the touch, and incredibly difficult to treat. I can't seem to get these sores to go away." +245,Impetigo,"I'm running a high temperature. I've developed a rash on my face, neck, and arms. The rash consists of painful red lesions. My health is a concern for me." +246,Impetigo,"Over the last week, the rash on my face has gotten more severe and painful, and the sores have begun to discharge a yellow colored fluid. It's becoming increasingly painful by the day." +247,Impetigo,"I've had rashes on my face. I'm developing little sores around my nose, and a yellow ooze is frequently oozing from them. The lesions have become even more painful." +248,Impetigo,I'm feeling quite ill. I have a high fever and a headache. Rashes appeared on my arms and face. I'm quite concerned about this. I saw red sores around my nose and lips today. +249,Impetigo,"The rashes on my face are not healing. I tried some medications but it is not helping much. Recently, I noticed small sores near my nose. They are painful and very difficult to handle." +250,Dengue,I am facing severe joint pain and vomitting. I have developed a skin rash that covers my entire body and is accompanied by intense itching. +251,Dengue,"I have been experiencing chills and shivering, despite being in a warm environment. My back pains all the time and there are red spots on my arms." +252,Dengue,"I have been experiencing severe joint pain that makes it difficult for me to move and perform my daily activities. Also, I have lost my apetite because of which I feel weak." +253,Dengue,I have been vomiting frequently and have lost my appetite as a result. My joints and back pain all the time. +254,Dengue,I have a high fever accompanied with severe headache and body pain. I experince chills every night. There is a distinct pain behind my eyes too. +255,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. I have developed rashes on my neck, which itch upon touching. " +256,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I have lost my apetite and experience chills every night. +257,Dengue,I have been feeling nauseous and have a constant urge to vomit. There is a strong pain behind my eyes and there are small red spots all over my arms. +258,Dengue,I have developed red spots on my body that are itchy and inflamed. I am also experiencing high fever along with chills and shivering. +259,Dengue,I have been experiencing muscle pain that makes it difficult for me to move around. I have lost my apetite and feel vomiting. My legs and back pain a lot. +260,Dengue,"I have been experiencing back pain that is worse when I sit or stand for a long time. Also, there are rashes all over my body. There is a pain behind my eyes too." +261,Dengue,The skin rash I have developed is accompanied by redness and swelling. I don’t feel well as I have severe fever accompanied with body pain. +262,Dengue,The chills and shivering I have been experiencing are accompanied by a feeling of coldness and high fever. I have also developed rashes on my arms and red spots on my neck. +263,Dengue,"The joint pain I have been experiencing is severe and feels like a constant ache. My head aches most of the time and I am starting to develope mild fever, accompanied with chills. " +264,Dengue,The vomiting I have been experiencing is accompanied by stomach cramps and dizziness. I have lost my apetite and feel weak as a result. There is a pain behind my eyes too. +265,Dengue,The high fever I have been experiencing is accompanied by sweating and weakness. My muscles pain as a result I cannot work all day. +266,Dengue,"The fatigue I have been feeling is extreme and makes it difficult for me to perform even basic tasks. I feel vomitting and developed rashes on my arms, neck and legs. " +267,Dengue,The headache I have been experiencing is severe and is accompanied by a feeling of pressure in my head. I have mild fever along with headache. There are small red spots on my back. +268,Dengue,The nausea I have been feeling is accompanied by a loss of appetite and feeling of unease. There is a distinct pain in my back and muscles pain too. +269,Dengue,The muscle pain I have been experiencing is severe and feels like a constant ache. There are red spots all over my body and the itching is causing me a lot of discomfort. +270,Dengue,"I have developed a skin rash that covers my entire body and is accompanied by intense itching. My body pains and I have a mild fever, acompanied with headache and chills." +271,Dengue,"I'm experiencing extreme body pain, headache and vomiting. I've developed red spots that covers my entire body and causes severe itching." +272,Dengue,"My back hurts all the time, and my arms and neck have rashes. The back of eyes pain a lot. I also have fever and it is making we worried about my health." +273,Dengue,"I've been suffering from significant joint pain, which makes it difficult for me to walk and carry out my everyday tasks. I've also lost my appetite, which makes me feel weak and feel like vomitting." +274,Dengue,There is a constant behind my eyes. I have developed red spots on my neck and face and rashes on my arms. My arms and legs pain a lot. . The spots are itchy and uncomfortable and it is worrying me. +275,Dengue,"I've been feeling sick and feel a strong need to vomit. There is a sharp ache behind my eyes, and swollen red dots all over my back." +276,Dengue,My shivers and shivering have been accompanied with a sensation of coldness and a very high fever. Rashes on my arms and red patches on my neck have also appeared. +277,Dengue,"I have been suffering from severe joint ache. I feel vomiting most of the time, and I am developing a moderate fever with chills. The fever that doesn't seem to come down even with medication." +278,Dengue,"The vomiting I've been having has been followed by stomach pains and dizziness. I've lost my appetite and as a result feel weak. My arms, back, neck pain most of the time." +279,Dengue,I have developed red spots on my arms and legs that are itchy and inflamed. I have been feeling nauseaus and have a constant urge to vomit. This is accomapanied by mild fever. +280,Dengue,"I have developed a skin rash that covers my entire body. The rash is red and swollen, and is worse in certain areas such as my arms and legs. I have also lost my appetite. " +281,Dengue,I have been experiencing chills and shivering. There is a strong pain in my back and also behind my eyes. I have also noticed small red spots on my back and neck. +282,Dengue,I have been experiencing severe joint pain that is making my day very difficult. I feel like vomiting all the time and have a mild headache too. +283,Dengue,"I have been vomiting frequently and have lost my appetite as a result. There are rashes on my skin and my eyes pain, because of which I cannot sleep properly." +284,Dengue,I have a high fever along with a severe headache. The fever is accompanied by extreme body pain and chills. I am worried about my health and don’t know what to do. +285,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. The fatigue is so severe that I struggle to get out of bed. I have noticed small red spots on my arms and legs. " +286,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I feel tired and fatigued because of which I cannot work all day. I am worried about my health. +287,Dengue,"I have been feeling nauseous and have a constant urge to vomit, which is accompanied with mild fever and headache. " +288,Dengue,I have developed rashes on my body that are itchy and. I have lost my appetite and feel very tired all day. I feel something is wrong with my body. +289,Dengue,"I have been experiencing muscle pain and headache. The muscle pain feels like a constant ache and is worse when I try to use the affected muscles. There are small red spots developing on my face, neck and arms." +290,Dengue,"My back hurts, and I have rashes on my arms and armpits. The back of my eyeballs hurt a lot. I also have a mild fever, which is making us concerned about my health. " +291,Dengue,"I am experiencing very high fever and chills every night. It is really concerning me. Moreover, I don’t feel like eating anything and my back, arms, legs pain a lot. There is a strange pain behing my eyes. I can’t do any physical activities. " +292,Dengue,"As a result of my regular vomiting, I've lost my appetite. My muscles, joints and back constantly hurt. I am starting to have fever too. I am really worried and not sure what to do." +293,Dengue,I have been experiencing a severe fever that is accompanied by pain behind my eyes and headache. I feel tired and exhasuted because of which I cannot do any work. +294,Dengue,"My whole body is paining a lot and I don’t feel like eating anything. I have mild fever and get chills every night. Also, there are some red spots developing on my back and neck." +295,Dengue,"My joints and back pain everyday. I feel like vomitting and this has made me very weak. Because of my body pain, I am not able to focus on my work and don’t feel like doing anything." +296,Dengue,The body pain I have been feeling is extreme. I has lost my appetite and developed rashes on my arms and face. The back of my eyes pain a lot. +297,Dengue,I have developed rashes on my body. I am also experiencing high fever along with chills and headache. My joints and back hurt and there is a strange pain in the back of my eyes. +298,Dengue,"I have been feeling nauseous and have a constant urge to vomit. I get high fever and chills every night and feel terrible because of this. Also, I feel I have lost my appetite." +299,Dengue,"There are rashes on my skin, which itch if I touch them. I don’t feel good as my joints pain whole day. At night, I have mild fever and get chills, because of which I can’t sleep too." +0,Fungal infection,"I have raised lumps, a rash that looks red and inflamed, discoloured areas of skin that are different colours from the rest of my skin, and itching on my skin." +1,Fungal infection,"All over my body, there has been a severe itching that has been followed by a red, bumpy rash. My skin also has a few darkened spots and a few tiny, nodular breakouts. It has been happening for several days and is becoming worse." +2,Fungal infection,"I've had a rash on my skin that looks like dischromic patches, and I also have a lot of nodular eruptions and really bad itching. During the previous week, it has become worse." +3,Fungal infection,"I've had a rash that won't go away and a bothersome itching on my skin. In addition, I've seen some color-different areas and bumps that resemble knots or lumps on my skin." +4,Fungal infection,"I have a rash all over my body, and I can't stop scratching because my skin is itchy. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples." +5,Fungal infection,"Recently, my skin has been quite itchy, and I have a rash all over my body. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples." +6,Fungal infection,"My skin has been itching a lot and developing a rash. Additionally, I have a few areas of my skin that are a different hue than the rest of it. Additionally, I have a few firm pimples or breakouts on my skin." +7,Fungal infection,"All over my body has been itching like crazy, and now there are red areas all over. Additionally, some of the patches have a different tone than my natural skin. And on my skin, there are these lumps or pimples that have developed." +8,Fungal infection,"My skin has been acting up recently, becoming extremely itchy and rashes-prone. Additionally, there are certain spots that deviate from my natural skin tone in terms of hue. And now my skin has these lumps or bumps that weren't there before." +9,Fungal infection,"On my arms and legs, I have a lot of red pimples and itchy skin. My skin also has a few odd-looking lesions. And occasionally there are bumps that are somewhat uncomfortable." +10,Fungal infection,I have an itchy skin and lots of red bumps on my arms and legs. There are some weird looking spots on my skin too. And sometimes there are bumps that feel kind of hard. +11,Fungal infection,"Doctor, I have a really itchy rash on my skin and there are some weird spots that are a different color. There are also some bumps on my skin that look like little knots" +12,Fungal infection,"Doctor, My skin is covered in a very uncomfortable rash, along with some odd patches of a different hue. My skin also has a few pimples that resemble little knots" +13,Fungal infection,"I have lots of itchy spots on my skin, and sometimes they turn red or bumpy. There are also some weird patches that are different colors than the rest of my skin, and sometimes I get these weird bumps that look like little balls." +14,Fungal infection,"My skin frequently develops itchy bumps that can occasionally turn red or rough. Aside from that, my skin occasionally develops strange pimples that resemble small balls and some odd spots that are a different hue from the rest of my skin." +15,Fungal infection,"Doctor, I have these red rashes that keep popping up and my skin is continuously itching. In addition, I've observed some odd color-different spots on my skin, as well as some little nodules on my skin that appear to be expanding." +16,Fungal infection,"I have been experiencing some really intense itching all over my body, along with redness and bumps on my skin. There are also these weird patches that are different colors than the rest of my skin, and sometimes I get these nodules that look like small bumps." +17,Fungal infection,"All over my body, I've been scratching so much that my skin has become red and developed pimples. Additionally, I occasionally get these nodules that resemble little pimples, as well as these strange patches that are a different hue from the rest of my skin." +18,Fungal infection,"I've been experiencing a lot of itching, which has been accompanied with a rash that appears to be growing worse over time. There are also certain areas of skin that are different colours from the rest, and I've spotted several lumps that resemble little nodes." +19,Fungal infection,"I've been having a lot of problems with itching, and it's been accompanied by a rash that seems to be getting worse over time. There are also some patches of skin that are different colors than the rest, and I've noticed some bumps that look like little nodes." +20,Fungal infection,"Doctor, My skin is covered in an uncomfortable rash and has a few odd patches of skin that are a different colour. There are a few pimples on my skin that resemble little knots." +21,Fungal infection,"I've been itching a lot, and it's been accompanied with a rash that looks to be getting worse over time. There are also some patches of skin that are different colours from the rest of the skin, as well as some lumps that resemble little nodes." +22,Fungal infection,"My skin has been acting up lately, becoming exceedingly itchy and prone to rashes. Furthermore, several patches differ from my normal skin tone in terms of colour. And now I have lumps or bumps on my skin that weren't there before." +23,Fungal infection,"A rash that appears to be developing throughout my skin has been accompanying my recent bouts of intense itching and discomfort. On my skin, I also have some dischromic spots and little lumps that seem to be appearing everywhere." +24,Fungal infection,"My skin always itches, and occasionally it becomes quite rough and red. In addition, I occasionally get little pimples that resemble tiny balls and certain spots that are a different colour from the rest of my skin. It severely irritates me and itches." +25,Fungal infection,"I have a lot of itching all over my skin, and sometimes it gets really red and bumpy. There are also some patches that are different colors than the rest of my skin, and sometimes I get these little bumps that look like little balls. It's really annoying and itchy." +26,Fungal infection,"I have a pretty irritating itch all over my body, and my skin also has a few red, bumpy areas. I've also had some pimples that resemble small balls and other spots that are a different colour than the rest of my skin. " +27,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my skin that are a different hue than the rest of it, and I've had some pimples that resemble little balls." +28,Fungal infection,"I've been having this really annoying itch all over my body, and I have red and bumpy spots on my skin too. There are also some areas that are a different color than the rest of my skin, and I've had some bumps that look like little balls." +29,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my epidermis with a distinct shade than the rest of it, and I've had some pimples that resemble little balls." +30,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that look different in shade than the rest of my skin, and I've had some bumps that are kind of hard." +31,Fungal infection,"I've been quite itchy recently, and I have rashy patches all over my skin. There are also certain regions that are darker in colour than the rest of my skin, and I've got some firm lumps." +32,Fungal infection,"I've been rather itchy recently, and I have rashy blotches all over my skin. There are also certain regions that are more dark in color than the rest of my skin, and I've got some painful lumps." +33,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. Additionally, I've had a few pimples that are rather firm, and there are certain spots on my body that have a different shade of brown than the rest of my skin." +34,Fungal infection,"My skin has been really itchy and there are these rashy spots all over. There are also some patches that look different in color than the rest of my skin, and I've had some bumps that are kind of hard." +35,Fungal infection,"My skin has been really scratchy, and there are rashes all over my body. I have some bumps that are quite firm, as well as some areas that are a darker shade from the rest of my skin. It's extremely unpleasant." +36,Fungal infection,"There are rashy areas all over my skin, which has been really irritating. Additionally, I have some bumps that are fairly firm and some patches that are a different colour from the rest of my skin." +37,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. In addition, there are a few spots where my skin doesn't appear to be its usual shade, and I've experienced a few lumps that are quite painful." +38,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that don't look like the normal color of my skin, and I've had some bumps that are kind of hard" +39,Fungal infection,"I've been quite itchy recently, and I have rashy places all over my body. There are also some regions that don't appear to be the typical hue of my skin, and I've experienced some firm lumps." +40,Fungal infection,"I've been itching and have rashy patches all over my skin recently. There are also some regions that don't appear to be the regular tone of my skin, and I've experienced some painful bumps." +41,Fungal infection,"Recently, I've been itching myself a lot, and my skin is covered with rashy patches. Furthermore, there are a few regions where my skin doesn't appear to be its usual tone, and I've experienced a few lumps that are exceptionally painful." +42,Fungal infection,"I've been having this constant itch and there are these red and bumpy spots on my skin. There are also some patches that are a different color than the rest of my skin, and I've had some bumps that are kind of like little lumps." +43,Fungal infection,"There are red, bumpy areas on my skin, and I've been scratching myself nonstop. Additionally, I have some bumps that resemble little lumps and some spots that are a different shade of skin than the rest of my body." +44,Fungal infection,"I've had a lot of itching on my skin, which occasionally turns into a rash. There are also some odd patches of skin that are a different hue than the rest of me, and I occasionally get little pimples that resemble nodules." +45,Fungal infection,"I've had a tendency of itching on my skin, that frequently turns into a rash. There are also some strange patches of skin that are a different tone than the rest of my skin, and I regularly get little lumps that mimic nodules." +46,Fungal infection,"I've been experiencing a lot of itching on my skin, and sometimes it turns into a rash. There are also some strange patches of skin that are a different color than the rest of me, and sometimes I get little bumps that look like nodules." +47,Fungal infection,"My body has been itching terribly all over, and there are now red spots everywhere. Some of the patches also differ in tone from my natural complexion. And there are these lumps or pimples that have appeared on my skin." +48,Fungal infection,"My skin has been really itchy lately, and it occasionally erupts into a rash. In addition, I have a few odd areas of skin that are a different coloration from the rest of me, and occasionally I develop little bumps that look  like nodules." +49,Fungal infection,There are now red blotches all over my body where I have been itching horribly all over. A few of the patches also differ in complexion from my natural skin. And these lumps or bumps have developed on my skin. +50,Common Cold,"I can't stop sneezing and my nose is really runny. I'm also really cold and tired all the time, and I've been coughing a lot. My fever is really high too, like way above normal." +51,Common Cold,"My nose is extremely runny, and I can't seem to stop sneezing. In addition, I constantly feel cold, exhausted, and I've been coughing a lot. My fever is also really high far above normal." +52,Common Cold,"I've been sneezing nonstop and I can't seem to shake this chill. I'm feeling really weak and tired, and my cough won't go away. My fever is really high" +53,Common Cold,"I've been sneezing incessantly and I just can't get this chill to go away. I feel so weak and exhausted, and my cough won't stop. My temperature is really high." +54,Common Cold,I'm constantly sneezing and my body is shaking from being cold. I'm so tired I can barely move and my head is killing me. My fever is through the roof +55,Common Cold,"I'm constantly sneezing, and the cold is making my body tremble. I'm so exhausted that I can hardly move, and my head hurts. My fever is quite high." +56,Common Cold,"I've been quite exhausted and ill. I'm sneezing nonstop and am quite cold. My head is throbbing, and I lack energy. Additionally, I have a very high fever and feel like I am on fire." +57,Common Cold,"I've been feeling really tired and sick. I've been sneezing a lot and I can't seem to get warm. I'm so tired and my head is killing me. And my fever is really high, like I'm boiling." +58,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak" +59,Common Cold,"I've been quite exhausted and ill. I have been sneezing a lot and am having trouble warming up. I'm so exhausted, and my head hurts. And I feel like I am boiling over with my high temperature." +60,Common Cold,I can't stop sneezing and I feel really tired and crummy. My throat is really sore and I have a lot of gunky stuff in my nose and throat. My neck feels swollen and puffy too. +61,Common Cold,"I can't stop sneezing, and I'm exhausted and sick. My throat is really uncomfortable, and there is a lot of junk in my nose and throat. My neck is also swollen and puffy." +62,Common Cold,"I keep sneezing, and I'm miserable and exhausted. I have a lot of gunky things in my nose and throat, and my throat is really hurting. My neck also feels puffy and swollen." +63,Common Cold,I've been feeling really exhausted and sick to my stomach. I've had a really bad cough and my throat has hurt a lot. I've experienced substantial sinus pressure and a congested nose. I'm really unpleasant and worn out. +64,Common Cold,I've been sneezing a lot and feeling really tired and sick. There's also a lot of gross stuff coming out of my nose and my throat feels really scratchy. And my neck feels swollen too. +65,Common Cold,"I've been wheezing a lot and am generally feeling sick and exhausted. My throat feels really scratchy, and a lot of gross stuff is flowing out of my nose. My neck also feels bloated." +66,Common Cold,"My sinuses feel incredibly congested, and my eyes are continuously red. I just constantly feel drained and exhausted. In addition, I have a lot of uncomfortable phlegm in my throat. My lymph nodes feel bloated, and breathing has been challenging." +67,Common Cold,My eyes have been really red and my sinuses feel congested. I just don't have any energy and my throat has been really itchy. I've also noticed my lymph nodes are swollen and I've been coughing up a lot of phlegm. +68,Common Cold,"My sinuses feel stuffy, and my eyes have been quite red. I simply lack energy, and my throat has been really scratchy. Along with the swelling in my lymph nodes, I've also been coughing up a lot of phlegm." +69,Common Cold,"My eyes are always red and itchy, and my nose feels all stuffy and congested. I just feel kind of sick and tired all the time, and I keep coughing up all this gunk. My throat feels sore and scratchy, and I've noticed that the bumps on my neck are bigger than usual" +70,Common Cold,"My nose always feels stuffy and congested, and my eyes are always red and itching. I have a feeling of being unwell and fatigued, and I keep hacking up this gunk. I have a scratchy, irritated throat, and I've seen that my neck's bumps are larger than usual." +71,Common Cold,"I keep sneezing, and my eyes don't quit dripping. It's incredibly difficult for me to breathe because it feels like there is something trapped in my throat. I often feel exhausted, and lately, I've had a lot of phlegm. Moreover, my lymph nodes are enlarged." +72,Common Cold,My eyes are red and watery all the time. I've also had this pressure in my sinuses that won't go away. I'm always feeling tired and I've been having a lot of trouble breathing. I've also had a lot of gunk in my throat and my lymph nodes are swollen. +73,Common Cold,"My eyes are constantly red and runny. A persistent tightness in my sinuses has also been bothering me. I've been having a lot of difficulties breathing and constantly feel fatigued. In addition, I have a lot of throat mucus and inflamed lymph nodes." +74,Common Cold,"My nose feels quite clogged, and my eyes are constantly very red and runny. In addition, my chest hurts and I've been having a lot of breathing problems. In addition, my muscles feel quite painful, and I can't smell anything." +75,Common Cold,"My eyes are usually red and runny, and my nose is always stuffy. I've also been having difficulty breathing and my chest hurts. In addition, I can't smell anything and my muscles are quite painful." +76,Common Cold,"My eyes are usually red and inflamed, and I have the impression that something is clogging my sinuses. I've been coughing up a lot of gunk, and my chest hurts. I can't smell anything, and my muscles are aching." +77,Common Cold,"My eyes are always red and swollen, and I feel like there's something blocking my sinuses. I've been coughing up a lot of goo and my chest feels really heavy. I can't smell anything and my muscles are really sore" +78,Common Cold,"I've been coughing a lot and feeling chilly and shivery. My nose has been quite clogged, and I am experiencing facial pressure. I also have a lot of phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching." +79,Common Cold,"For days, I've had a nasty cough and cold. My sinuses are clogged, and I have facial pressure. I've also been creating phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching." +80,Common Cold,"I've had a nasty cough and cold for days. My sinuses are congested, and I have facial pressure. I've also been coughing up mucus, and it pains my chest. I can't smell anything and my muscles are aching." +81,Common Cold,"My cough and cold have been awful for days. My sinuses are congested, and my face is under strain. Additionally, I've been coughing up phlegm, and it hurts in my chest. I have no sense of smell, and my muscles hurt a lot." +82,Common Cold,"I'm coughing nonstop and I'm shivering terribly. I have a stuffy nose and my face is under strain. In addition, my throat is coughing up some nasty gunk, and my chest hurts. My muscles hurt a lot, and I can't smell anything." +83,Common Cold,I can't stop coughing and I feel really cold. My sinuses are all blocked and I have a lot of mucus. My chest hurts and I can't smell anything. My muscles are also really sore. +84,Common Cold,"I'm coughing nonstop and am really chilly. My mucus production is excessive, and my sinuses are fully clogged. I can't smell anything, and my chest hurts. My muscles are quite painful as well." +85,Common Cold,"I can't stop coughing and I'm freezing. My sinuses are completely blocked, and I'm inundated with mucous. My chest hurts, and I'm unable to smell anything. My muscles are also really achy." +86,Common Cold,"I've been coughing a lot and finding it difficult to breathe. My throat hurts and I feel like I have a lot of phlegm trapped in my chest. My nose has been running a lot, and I've been feeling really congested." +87,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak" +88,Common Cold,"I've been experiencing severe weariness and a sickly sensation. My throat has been really painful and I've had a fairly severe cough. My nose has been quite stuffy, and I've had significant sinus pressure. I'm really miserable and extremely exhausted." +89,Common Cold,I've been feeling really sick and I've had a lot of fatigue. I've had a really bad cough and my throat has been really sore. I've had a lot of sinus pressure and my nose has been really congested. I just feel really run down and miserable. +90,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Simply put, I feel really run down and feeble." +91,Common Cold,I've been really weary and ill. I've been suffering from a severe cough and sore throat. I've got a lot of chills and a pretty high temperature. I simply feel tired and run down. +92,Common Cold,"I can't quit sneezing, and my nose is running. I'm also constantly chilly and exhausted, and I've been coughing a lot. My fever is also really high, well above usual." +93,Common Cold,"I've been feeling awful, with a lot of congestion and a runny nose. I've been coughing a lot and having a lot of chest pain. My fever has been really high, and I've been experiencing severe muscular discomfort." +94,Common Cold,"My neck is swollen, and I'm exhausted. My throat is scratchy, and my eyes are burning red. My nose is really clogged, and I am experiencing facial pressure. My chest hurts, and I'm unable to smell anything." +95,Common Cold,"I lack energy and feel like my neck is bloated. My eyes are red, and my throat feels scratchy. I have severe congestion in my nostrils, and my face is under pressure. I can't smell anything, and my chest hurts." +96,Common Cold,"I feel quite weak, and my lymph nodes are enlarged. My eyes are burning, and my throat hurts. My sinuses are under strain, and my nose is stuffy. I can't smell anything, and my chest hurts." +97,Common Cold,"I've had a terrible cough and cold for days. My face is tired and my sinuses are blocked. In addition, my chest hurts from the phlegm I've been coughing up. I can't smell, and my muscles are in terrible pain." +98,Common Cold,"I have red, watery eyes all the time. My sinuses have also been bothered by a constant tightness. My breathing has been quite tough, and I've been feeling worn out all the time. My lymph nodes are irritated, and I also have a lot of throat mucous." +99,Common Cold,"I always get hot, puffy eyes and the feeling that something is obstructing my sinuses. My chest feels quite heavy, and I've been coughing up a lot of gunk. I have no sense of smell, and my muscles hurt a lot." +100,Pneumonia,"I've been feeling really cold and tired lately, and I've been coughing a lot with chest pain. My heart is beating really fast too, and when I cough, the phlegm is kind of a rusty color." +101,Pneumonia,"I've been coughing a lot recently with chest pain and feeling incredibly chilly and exhausted. Additionally, my heart is thumping rapidly, and the phlegm I cough up has a reddish hue." +102,Pneumonia,"I've been feeling really drained and cold, and I can't stop coughing. It hurts in my chest when I do, and my heart feels like it's racing. The mucus I'm coughing up is a gross brownish color." +103,Pneumonia,"I've been exhausted and chilly, and I can't stop coughing. When I do, it pains in my chest and makes my heart race. My coughing mucous has a disgusting brownish hue." +104,Pneumonia,"I've been having chills and feeling exhausted, and I can't seem to shake this cough. My chest hurts when I cough, and my heart feels like it's going a million miles an hour. The phlegm I'm coughing up is a dirty rust color." +105,Pneumonia,"I've been experiencing chills, feeling worn out, and I can't seem to get rid of this cough. When I cough, my chest aches and my heart feels as like it is beating a million miles per hour. I'm coughing up a nasty rust-colored phlegm." +106,Pneumonia,"I've been feeling really weak and cold lately, and this cough won't go away. It hurts in my chest when I cough, and my heart is pounding. The mucus I'm bringing up is a rusty brown color." +107,Pneumonia,"I've been having chills and feeling really worn out, and this cough won't go away. My chest hurts when I cough, and my heart is racing. The mucus I'm bringing up is a gross brownish color." +108,Pneumonia,"I've been experiencing chills, feel really exhausted, and my cough just won't go away. When I cough, my chest aches and my heart is pounding. It's a disgusting brownish hue, the mucous I'm coming up." +109,Pneumonia,"I have a really high fever, and I'm having trouble breathing. I'm sweating a lot and feeling really cold and tired. My heart is beating really fast, and I have some brownish sputum" +110,Pneumonia,"I'm having problems breathing and have a very high fever. I'm perspiring a lot and experiencing extreme fatigue and chilly. My heart is racing, and I'm coughing up some brownish mucus." +111,Pneumonia,"My temperature is very high, and I'm having a hard time breathing. I'm sweating profusely, and I'm shaking with chills. I'm really tired, and my heart is beating really fast. I also have some brownish phlegm coming up" +112,Pneumonia,"I'm having trouble breathing, and my fever is really high. I'm drenched in sweat and shivering from the chill. My heart is thumping rapidly, and I'm quite exhausted. Additionally, I'm about to have some brownish phlegm." +113,Pneumonia,"My fever is really high, and I'm having trouble catching my breath. I'm sweating a lot, feeling cold and tired, and my heart is beating really fast. I also have some brownish phlegm coming up." +114,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm." +115,Pneumonia,"I've been feeling really sick with a high fever, shortness of breath, sweating, chills, and extreme fatigue. My heart rate is rapid, and I've been coughing up a lot of brownish sputum." +116,Pneumonia,"With a high temperature, shortness of breath, sweating, chills, and intense exhaustion, I've been feeling quite poorly. I've been coughing up a lot of brownish phlegm and my pulse rate is racing." +117,Pneumonia,I'm having a really hard time catching my breath and I'm sweating a lot. I feel really sick and have a lot of mucus in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is dark and looks like rust. +118,Pneumonia,"I'm sweating profusely and finding it difficult to catch my breath. I feel quite ill, and my throat is very mucous. My heart is pounding, and my chest aches. I'm coughing up thick mucous that resembles rust." +119,Pneumonia,"I'm having a lot of trouble breathing and am really uneasy. I'm feeling unwell and am perspiring a lot. My chest hurts and I have a lot of mucus in my throat. My heart is racing, and the hue of the mucus I'm coughing up is off." +120,Pneumonia,I can't seem to get enough air and I'm sweating a lot. I don't feel well and there's a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is reddish in color. +121,Pneumonia,"I'm sweating profusely and can't seem to get enough air. My throat is filled with a lot of mucus, and I don't feel good. My heart is pounding, and my chest aches. I'm coughing up reddish-colored mucous." +122,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is yellowish. +123,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up brownish mucous." +124,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish. +125,Pneumonia,"I'm having trouble breathing and am quite uneasy. My throat is filled with a lot of phlegm, and I'm perspiring a lot. My heart is racing, and my chest aches. I'm coughing up reddish mucous." +126,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is brownish and stringy. +127,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up a stringy, brownish mucous." +128,Pneumonia,"I'm drenched with sweat and struggling to breathe. I don't feel well and have a lot of mucous in my throat. My chest aches, and my heart is racing. I'm coughing up mucus that is crimson in colour." +129,Pneumonia,"I've been feeling very lousy, with a high temperature, shortness of breath, sweating, chills, and extreme weariness. My heart is beating, and I've been coughing up a lot of brownish phlegm." +130,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm." +131,Pneumonia,"My fever is really high, and I'm having difficulty breathing. I'm drenched in sweat and shivering with chills. I'm quite fatigued, and my heart is racing. I'm also expecting some brownish phlegm." +132,Pneumonia,"I've been getting chills, feeling tired, and I can't seem to shake this cough. My chest aches and my heart feels like it's racing at a million miles per hour when I cough. I'm coughing out a foul rusty phlegm." +133,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish. +134,Pneumonia,"I'm having trouble breathing and am really uncomfortable. I'm sweating profusely and have a lot of mucus in my throat. My chest aches, and my heart is racing. I'm coughing up dark mucous." +135,Pneumonia,"I've got a high fever and can't seem to catch my breath. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm. My chest aches, and my heart has been racing rapidly." +136,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark." +137,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm." +138,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark." +139,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and red phlegm." +140,Pneumonia,"I've had chills, lethargy, a cough, a high temperature, and difficulties breathing lately. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm." +141,Pneumonia,"I've been having a lot of respiratory issues lately along with chills, exhaustion, a cough, and a high temperature. I've been sweating profusely and generally feeling ill and weak. My chest aches, and my heart has been racing rapidly." +142,Pneumonia,"I've been suffering with chills, tiredness, and a cough recently. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My chest aches, and my heart has been racing." +143,Pneumonia,"I'm running a temperature and can't seem to catch my breath. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My heart has been beating frantically, and my chest hurts." +144,Pneumonia,"I'm drenched with sweat and can't seem to catch my breath. My throat is clogged with mucus, and I'm miserable. My heart is racing, and my chest aches. I'm coughing up a brownish stringy mucus." +145,Pneumonia,"I'm saturated with sweat and struggling to breathe. My throat is blocked with mucous, and I'm uncomfortable. My heart is racing, and my chest aches. I'm coughing up a darkish stringy mucous." +146,Pneumonia,"I'm having a lot of problems breathing. I'm not feeling good, and I'm sweating a lot. I have a lot of mucous in my throat and my chest hurts. My breathing is laboured, and the phlegm I'm coughing up has an odd tint." +147,Pneumonia,"I have a lot of difficulty breathing. I don't feel well, and I'm perspiring a lot. My chest hurts, and I have a lot of mucus in my throat. I'm having trouble breathing, and the phlegm I'm coughing up has a strange hue." +148,Pneumonia,"I've been coughing a lot and feeling incredibly chilly and exhausted. I have a pretty high fever, and it's difficult for me to breathe. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm." +149,Pneumonia,"I've recently had chills, exhaustion, a cough, a high temperature, and breathing issues. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm. My heart has been racing quite quickly." +150,Dimorphic Hemorrhoids,"Constipation, discomfort with bowel motions, and anus pain have all recently been bothering me. My anus has been quite inflamed, and my stool has been extremely bloody." +151,Dimorphic Hemorrhoids,"Lately I've been experiencing constipation, pain during bowel movements, and pain in my anus. My stool has also been really bloody and my anus has been really irritated." +152,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. My bowel movements have been extremely uncomfortable and difficult for me to have.  My anus has been quite inflamed, and my stool has been extremely bloody." +153,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately. It's really painful when I do, and there's been some blood in my stool. I've also been having some pain and irritation around my anus." +154,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. When I do, it hurts a lot, and I've noticed some blood in my stool. Around my anus, I've also been experiencing some discomfort and itching." +155,Dimorphic Hemorrhoids,"Lately I've been really constipated, and it's been really painful when I do go to the bathroom. I've also noticed some blood in my stool, and my anus has been really irritated." +156,Dimorphic Hemorrhoids,"I've been suffering from severe constipation lately, and whenever I do go to the restroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool." +157,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately, and it's been really painful. I've also noticed that my stool has been bloody and my anus has been really irritated." +158,Dimorphic Hemorrhoids,"Recently, I've been having a lot of discomfort and difficulty using the restroom. Additionally, I've noticed that my anus has been quite sore and that my stool has been bloody." +159,Dimorphic Hemorrhoids,"I've been terribly constipated lately, and when I do go to the bathroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool." +160,Dimorphic Hemorrhoids,"I've been quite constipated lately, and going to the restroom has been excruciatingly uncomfortable. I've also observed blood in my stool, and my anus has been aggravated." +161,Dimorphic Hemorrhoids,I've been having a lot of trouble going to the bathroom lately. It's been really painful and I've been experiencing pain in my anus. My stool has also been bloody and my anus has been really irritated. +162,Dimorphic Hemorrhoids,"I've been having a lot of problems using the restroom recently. It's been excruciatingly uncomfortable, and I've been feeling agony in my anus. My stool has been bloody as well, and my anus has been really inflamed." +163,Dimorphic Hemorrhoids,"I've been having trouble going to the restroom recently. When I try to go, it's really uncomfortable, and my anus hurts a lot. I've also had some blood in my stool, and my anus has been really uncomfortable." +164,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful when I try to go and my anus hurts a lot. There's also been some blood in my stool and my anus has been really itchy. +165,Dimorphic Hemorrhoids,"I've been experiencing problems using the restroom recently. It's quite difficult for me to go, and it hurts when I do. I've also been experiencing buttock soreness and bloody stools. My anus has also been quite itching and sensitive." +166,Dimorphic Hemorrhoids,"Recently, I've been having problems using the restroom. Going is incredibly difficult, and doing so hurts. In addition, I've been experiencing some butt soreness, and my stools have been bloody. My anus has also been quite itching and aggravated." +167,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +168,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt." +169,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +170,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt." +171,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +172,Dimorphic Hemorrhoids,"Constipation has made it quite difficult for me to use the restroom. My stool has been bloody when I do go, and it hurts. In addition, my anus has been quite itchy and inflamed, and I've been experiencing some butt soreness." +173,Dimorphic Hemorrhoids,"It's incredibly difficult for me to use the restroom, and when I do, it hurts a lot. My stools have been bloody, and my butt has been hurting. My anus has also been quite itching and aggravated." +174,Dimorphic Hemorrhoids,I'm having a lot of trouble going to the bathroom and it's really painful when I do. My stool has been bloody and I've had some pain in my butt. My anus has been really itchy and irritated too. +175,Dimorphic Hemorrhoids,I've been having trouble going to the bathroom. It's been really hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +176,Dimorphic Hemorrhoids,"I've been finding it challenging to use the restroom. Going has been quite difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +177,Dimorphic Hemorrhoids,"I've been having difficulty using the restroom. It's been difficult to go, and it aches when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +178,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +179,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +180,Dimorphic Hemorrhoids,"Constipation and soreness with bowel motions have been bothering me lately. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +181,Dimorphic Hemorrhoids,I've been having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +182,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +183,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +184,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +185,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +186,Dimorphic Hemorrhoids,"My bowel motions are giving me a lot of problems right now. Going is difficult, and going hurts when I do it. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +187,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +188,Dimorphic Hemorrhoids,"I've been having constipation and bowel motions that hurt recently. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +189,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +190,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +191,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +192,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +193,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +194,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's really painful and I'm really uncomfortable." +195,Dimorphic Hemorrhoids,"I've been getting a lot of bowel issues recently. It's difficult for me to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +196,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful and I'm only able to go every few days. There's also a lot of pain in my anus and around that area. My stool has been really bloody and my anus feels really irritated. +197,Dimorphic Hemorrhoids,"I've been finding it incredibly difficult recently to use the restroom. I can only go sporadically because it hurts so much. My anus and the surrounding region are also quite painful. My anus feels really aggravated, and my stool has been extremely bloody." +198,Dimorphic Hemorrhoids,I'm having a lot of trouble with constipation and pain while trying to go to the bathroom. It hurts a lot in my anus and the area around it. My stool has been bloody and my anus is really irritated. +199,Dimorphic Hemorrhoids,"Constipation and bowel movement discomfort have been very common for me lately. The region surrounding my anus and I both ache a lot. My anus is really itchy, and my stool has been bloody." +200,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I've been experiencing a lot of stiffness when I walk about and my joints have been swollen. Walking has also been really uncomfortable." +201,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and I've been having a lot of stiffness when I move around. It's also been really painful to walk. +202,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen and I've been experiencing a lot of stiffness when I move around. Walking has also been excruciatingly uncomfortable." +203,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's been hard to move around. Walking has been really painful. +204,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult to move about. Walking has been excruciatingly uncomfortable." +205,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. It has been difficult to move about since my joints have swollen. It has been really uncomfortable to walk." +206,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. My joints have swollen, making it difficult for me to move. It has hurt a lot to walk." +207,Arthritis,"My neck has been so tense, and I've been feeling like my muscles are incredibly weak. I have trouble moving since my joints have enlarged. To walk has been quite painful." +208,Arthritis,"My neck has been really stiff, and I've had terrible muscle weakness. Due to the swelling in my joints, it has been challenging to move about. Walking has been quite unpleasant." +209,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +210,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +211,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable." +212,Arthritis,"Recently, I've been suffering neck muscle weakness and stiffness. My joints have enlarged and it is difficult for me to walk without feeling stiff. Walking has also been excruciatingly uncomfortable." +213,Arthritis,"Lately, my neck has been tight and my muscles have been weakened. I have swelling joints that make it difficult for me to move about without getting stiff. It has also been agonisingly painful to walk." +214,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +215,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +216,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable." +217,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable." +218,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to move without becoming stiff. Walking has been quite uncomfortable as well." +219,Arthritis,"My neck has been really tight, and my muscles have been rather weak. I have swelling joints that make it hard for me to move without getting stiff. Additionally, walking has been quite unpleasant." +220,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +221,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +222,Arthritis,My neck has been extremely tight and my muscles have been feeling extremely weak. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable. +223,Arthritis,"My neck has been extremely stiff and my muscles have been extremely weak. As a result of swelling in my joints, I find it difficult to move around without feeling stiff. Additionally, walking has been extremely uneasy." +224,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable." +225,Arthritis,"My neck has been extremely tight and my muscles have been feeling extremely weak. My joints have been swollen and I've been walking around with a lot of stiffness. Additionally, walking has been extremely uneasy." +226,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable." +227,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +228,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable." +229,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +230,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swollen and it's hard for me to move around. It's also been painful to walk. +231,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. Swollen joints make it difficult for me to move around. Walking has also been difficult. +232,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints, making it difficult for me to move. Walking has also been painful." +233,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have enlarged, making it difficult for me to move. Walking has also been difficult." +234,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. It has been difficult for me to move around because my joints have been swelling. Walking has also been extremely painful. +235,Arthritis,"My muscles have been feeling feeble recently, but my neck has been rock solid. My joints have become swollen, making it difficult for me to move about. Walking has been quite uncomfortable as well." +236,Arthritis,"My muscles have been feeling rather weak lately, but my neck has been really strong. My joints have swollen, making it challenging for me to move about. It has also been excruciatingly difficult to walk." +237,Arthritis,My neck has been extremely tight and my muscles have felt quite weak recently. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable. +238,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of Pine Tree State to run whereas not getting stiff. additionally, walking has been terribly uncomfortable." +239,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, creating it troublesome on behalf of me to run regarding while not changing into stiff. Walking has additionally been agonizingly uncomfortable." +240,Arthritis,"My muscles are quite weak, and my neck has been very stiff. My joints have swollen, creating it troublesome on behalf of me to steer concerning while not feeling stiff. Walking has conjointly been very uncomfortable." +241,Arthritis,"My muscles area unit quite weak, and my neck has been terribly stiff. My joints have swollen, making it hard on behalf of Maine to steer regarding whereas not feeling stiff. Walking has put together been terribly uncomfortable." +242,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's onerous on behalf of me to run while not obtaining stiff. in addition, walking has been extraordinarily uncomfortable." +243,Arthritis,My neck has been very tight and my muscles have felt quite weak recently. it's tough on behalf of me to maneuver around while not changing into stiff thanks to my swollen joints. Walking has additionally been very uncomfortable. +244,Arthritis,"Recently, when I try to walk about, I have stiffness, a stiff neck, swollen joints, and muscular weakness. Walking has also been really uncomfortable." +245,Arthritis,"Lately i have been experiencing muscle weakness, a stiff neck, swelling joints, and stiffness after I attempt to move around. it is also been very painful to steer." +246,Arthritis,"Recently, the muscles in my neck have become tight and weak. It's difficult for me to run now since my joints are older without getting tight. The act of walking has also been quite unpleasant." +247,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of American state to run whereas not getting stiff. additionally, walking has been very uncomfortable." +248,Arthritis,"Recently, the muscles in my neck have become tight and weak. Since my joints have matured, it is difficult for the American government for me to run without becoming stiff. Walking has also been quite unpleasant." +249,Arthritis,"Lately, I've been having stiffness and weakness in my neck muscles. Since my joints have matured, it is difficult for the American state to operate without becoming stiff. Furthermore, walking has been quite painful." +250,Acne,I've been having a really bad rash on my skin lately. It's full of pus-filled pimples and blackheads. My skin has also been scurring a lot. +251,Acne,I've just developed a severe rash on my skin. It's clogged with pus-filled pimples and blackheads. My skin has also been quite sensitive. +252,Acne,"My skin has been breaking out in a terrible rash lately. Blackheads and pus-filled pimples abound on it. Additionally, my skin has been scurring a lot." +253,Acne,"I've recently been experiencing a severe skin rash. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been scurring a lot." +254,Acne,I've been having a very unhealthy rash on my skin latterly. It's filled with pus-filled pimples and blackheads. My skin has additionally been scurring heaps. +255,Acne,My skin has just acquired a nasty rash. It's full of pus-filled pimples and blackheads. My skin has been really sensitive as well. +256,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive." +257,Acne,"I recently experienced a severe skin rash. Blackheads and pimples filled with pus are clogging it. Additionally, my skin has been quite irritated." +258,Acne,My skin has recently been severely rashy. Blackheads and pus-filled pimples have blocked it. My skin has been quite delicate as well. +259,Acne,Lately I've been experiencing a skin rash with a lot of pus-filled pimples and blackheads. My skin has also been scurring a lot. +260,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot." +261,Acne,My skin has now developed a revolting rash. There are pus-filled pimples and blackheads everywhere. My skin has also been really sensitive. +262,Acne,"My skin has developed a horrible rash. There are blackheads and pus-filled pimples everywhere. Furthermore, my skin has been exceedingly sensitive." +263,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive." +264,Acne,My skin has simply nonheritable a nasty rash. It's packed with pus-filled pimples and blackheads. My skin has been very sensitive moreover. +265,Acne,"My skin has developed a terrible rash that is not inherited. It has a lot of blackheads and pus-filled pimples. Furthermore, my skin has been exceedingly sensitive." +266,Acne,"Recently, I've been experiencing a lot of acne breakouts with pimples that contain pus. I've also been struggling with blackheads." +267,Acne,I woke up this morning and found that I have a really nasty rash all over my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +268,Acne,I've been noticing a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +269,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +270,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +271,Acne,I woke up this morning to find a really nasty rash on my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +272,Acne,I've been struggling with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +273,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +274,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +275,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying everywhere. +276,Acne,I recently had a horrible rash on my skin. There are several blackheads and pus-filled pimples. My skin has also been moving around a lot. +277,Acne,"This morning when I woke up, I discovered that I have an extremely bad rash all over my body. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot." +278,Acne,I awoke this morning to see that I had a horrible rash all over my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about. +279,Acne,I've just developed a skin rash with several pus-filled pimples and blackheads. My skin has also been quite sensitive. +280,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot." +281,Acne,"I woke up this morning to find that I have a terrible rash all over my body. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been changing a lot." +282,Acne,"When I awoke this morning, I realised that I had a severe rash all over my body. There are many pus-filled pimples and blackheads all over the place. My skin has also been scurring a lot." +283,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying about. +284,Acne,I awoke this morning to see a horrible rash on my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about. +285,Acne,"This morning when I woke up, I discovered an extremely bad rash on my skin. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot." +286,Acne,I've recently been battling a pretty itchy rash on my skin. There are pus-filled pimples and blackheads all over it. My skin has also been scurring a lot. +287,Acne,"This morning, I realized that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot." +288,Acne,"I woke up today to find that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot." +289,Acne,"I woke up this morning to find that I had a major rash all over my body. It's covered in pus-filled pimples and blackheads, and my skin has been scurrying a lot" +290,Acne,"This morning, I saw a large rash all over my body. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot." +291,Acne,"I discovered that I had a significant rash all over my body this morning. Blackheads and pus-filled pimples are proliferating, and my skin has been scurrying a lot." +292,Acne,"Yesterday, I noticed an enormous rash all over my skin. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot." +293,Acne,"I discovered a huge rash on my skin yesterday. My face is covered of blackheads and pus-filled pimples, and my skin has been crawling a lot." +294,Acne,"My skin has a horrible rash that is absolutely nonheritable. Blackheads and pus-filled pimples abound on it. In addition, my skin has been quite sensitive." +295,Acne,"My skin has merely developed an uninherited rash. It has a lot of pus-filled pimples and blackheads. Furthermore, my skin has been quite sensitive." +296,Acne,"When I awoke this morning, I saw a severe rash across my skin. There are many pus-filled pimples and blackheads all over the place. My skin has also been shifting a lot." +297,Acne,"When I woke up this morning, I saw a terrible rash on my skin. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been shifting a lot." +298,Acne,"I've recently struggled with a really irritating skin rash. There are blackheads and pus-filled pimples all over it. Additionally, my skin has been scurring a lot." +299,Acne,I've recently been dealing with an itching rash on my skin. It's covered in pus-filled pimples and blackheads. My skin has also been quite sensitive. +0,Bronchial Asthma,"I have been feeling extremely tired and weak, and I've also been coughing a lot with difficulty breathing. My fever is very high, and I'm producing a lot of mucus when I cough." +1,Bronchial Asthma,"I've got a cough that won't go away, and I'm exhausted. I've been coughing up thick mucous and my fever is also pretty high." +2,Bronchial Asthma,"I have a persistent cough and have been feeling quite fatigued. My fever is through the roof, and I'm having trouble breathing. When I cough, I also cough up a lot of mucous." +3,Bronchial Asthma,"I've been having issues with exhaustion, a dry cough, and breathing. I have a very high fever and have been coughing up a lot of thick, mucoid phlegm." +4,Bronchial Asthma,"I feel really fatigued and weak, and I have a bad cough. My fever is really high, and my breathing has become shallow. When I cough, a lot of saliva comes out as well." +5,Bronchial Asthma,"I've had a lot of sleepiness, a cough that refuses to go away, and breathing difficulty. I've been coughing up a lot of thick, mucoid saliva and have a high fever." +6,Bronchial Asthma,"doctor, i have been having high fever since past few days , saliva also became thick , dry cough , weakness also seen" +7,Bronchial Asthma,"I have a cough that has continued for days, and I feel really weak and tired. My fever is high, and my breath has become strained. When I cough, I also generate a lot of mucus." +8,Bronchial Asthma,"Mom, Dad, I've been feeling really tired and weak lately, and I've had this cough that just won't go away. It's been hard for me to catch my breath, and my fever has been really high. When I cough, I've been producing a lot of mucus." +9,Bronchial Asthma,"Hey Mom, Hey Dad, I've been feeling really exhausted lately and have had this persistent cough. My breathing has become shallow, and my fever is very high. I've also been coughing up a lot of thick, mucoid sputum" +10,Bronchial Asthma,"Recently, I've felt quite weak and exhausted, and I've also had a cough that simply won't go away. My fever has been really high, and it has been challenging for me to catch my breath. I've been making a lot of mucous when I cough." +11,Bronchial Asthma,"I've felt terribly weak and drained, and I've also had a cough that that won't go away. My fever has been exceptionally high, and it has been challenging to try to catch my breath. I've been creating a lot of mucous when I cough." +12,Bronchial Asthma,"I'm feeling really tired and weak lately, and I've had this cough that just won't go away. My breathing has become shallow, and my fever has been really high. When I cough, I've been producing a lot of thick, mucoid sputum" +13,Bronchial Asthma,"feeling extremely exhausted and have had this persistent cough. It's been hard for me to catch my breath, and my fever is very high. I've also been producing a lot of mucus when I cough" +14,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum." +15,Bronchial Asthma,"I've had a nagging cough that won't go away, and my breathing has become labored. My fever is also very high, and I'm feeling very weak and tired. I've been producing a lot of mucus when I cough" +16,Bronchial Asthma,"I've been experiencing a high fever, a persistent cough, and shortness of breath. I've also been producing a lot of thick, mucoid sputum, and I'm feeling very tired and weak." +17,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so drained and tired from having to deal with all of this." +18,Bronchial Asthma,"I've had this cough that's been lingering for days and difficulty breathing. My fever is sky-high, and I'm feeling so weak and tired. I've also been producing a lot of mucus when I cough, and it's just been so overwhelming to deal with all of these symptoms. I'm getting so frustrated with all of this." +19,Bronchial Asthma,"I've had a persistent cough for days, and I also have breathing problems. I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything." +20,Bronchial Asthma,"I've been struggling with difficulty breathing, a constant cough, and fatigue. My fever is extremely high, and I've been coughing up a lot of thick, mucoid sputum. It's been so hard to deal with all of this, and I'm just feeling so drained and worn out" +21,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so exhausted and tired from having to cope with all of this." +22,Bronchial Asthma,"I've been feeling really ill lately. I've had this persistent cough and difficulty breathing, and my fever has been off the charts. I'm also feeling extremely exhausted, and I've been producing a lot of mucus when I cough. It's just been so overwhelming to deal with all of these symptoms" +23,Bronchial Asthma,"Recently, I've been feeling terrible. My fever has been through the roof, and I've had a persistent cough and breathing problems. I've been coughing up a lot of phlegm and am also feeling quite weary. Dealing with all of these symptoms has been quite difficult." +24,Bronchial Asthma,"I've had a fever, a cough that won't go away, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I feel quite worn out and weak." +25,Bronchial Asthma,"Hey, I've had a dry cough, breathing difficulties, as well as a high fever. a lot of mucous is being produced, and I feel incredibly weak and tired.""" +26,Bronchial Asthma,"Recently, I have had a number of concerning symptoms, including a dry cough, impaired breathing, a high fever, and a lot of mucus. I also feel very weak and tired." +27,Bronchial Asthma,"I am currently dealing with a number of health issues, including a dry cough, difficulty breathing, a high fever, and increased mucus production. I am also feeling very weak and tired" +28,Bronchial Asthma,"its been a week , i am suffering from continious health issues like dry cough , problems in breathing , weakness throughout the day." +29,Bronchial Asthma,"Doctor , from couple of days i am not able to brethe propelry , lying on bed due to high fever , lot of mucus gets out . please suggest me some medicines." +30,Bronchial Asthma,"I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling so drained and exhausted. It's been so hard to deal with all of this." +31,Bronchial Asthma," I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything." +32,Bronchial Asthma," must confess that I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling quite drained and exhausted. It's all been rather tough to deal with, and I'm feeling quite sick at the moment" +33,Bronchial Asthma,"I must admit that I have been having a high fever, a persistent cough, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I've been feeling really depleted and worn out." +34,Bronchial Asthma,"I've been having a tough time with this constant cough, difficulty breathing, and fatigue. My fever is high, and I've been coughing up a lot of thick, mucoid sputum. It's all been rather draining and exhausting, and I'm feeling quite sick at the moment." +35,Bronchial Asthma,"I've been struggling with a persistent cough, breathing issues, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really tiring and exhausting, and right now I'm feeling rather ill." +36,Bronchial Asthma,"I've been dealing with a bad cough, breathing issues, and drowsiness. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really exhausting and exhausting, and right now I'm feeling rather ill." +37,Bronchial Asthma,"My persistent cough, breathing problems, and exhaustion have been making things difficult for me. I've been producing copious amounts of thick, mucoid sputum while also having a high fever. I'm currently feeling fairly ill because everything has been so tiring and exhausting." +38,Bronchial Asthma,"With my persistent cough, respiratory issues, and exhaustion, I've been struggling. I have a high fever and have been producing a lot of thick, mucoid sputum while coughing. I currently feel rather sick as a result of how draining and tiresome everything has been." +39,Bronchial Asthma,"My fever is through the roof, and I'm so weak and tired out. I've been coughing up a lot of mucous, and managing all of these symptoms has been really hard. Everything is making me so upset." +40,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feelinf too tired. Please recommend some medications for me." +41,Bronchial Asthma,"Hey, I've got a dry cough, trouble breathing, and a high fever. I'm producing a lot of mucus and am feeling quite weak and exhausted." +42,Bronchial Asthma,"I've been coughing nonstop for days, and I also have respiratory issues. My fever is through the roof, and I'm so weak and worn out. All of these symptoms have been really challenging for me to control," +43,Bronchial Asthma,"In addition to sleepiness, I've been having trouble breathing due to a persistent cough. I've been coughing up a lot of thick, mucoid sputum and have a high fever." +44,Bronchial Asthma,"I've been struggling to breathe, coughing constantly, and feeling worn out. I have a very high fever and have been coughing up a lot of thick, mucoid saliva. I simply feel so worn out and exhausted from trying to deal with everything." +45,Bronchial Asthma,"I've been experiencing difficulty breathing, a chronic cough, and weariness. I've been producing a lot of thick, mucoid sputum while also running a very high temperature. Due to having to cope with all of this, I'm simply feeling extremely worn out and exhausted." +46,Bronchial Asthma,"Hello, Mom and Father Recently, I've felt incredibly worn out and have had a cough that won't go away. My fever is really high, and my breathing has become shallow. Additionally, I've been coughing up a lot of mucous, thick sputum." +47,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum." +48,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feeling too tired.sometimes mucus has been seen too.Please recommend some medications for me." +49,Bronchial Asthma,"I've had ongoing health problems for a week, including a dry cough, breathing difficulties, and general weakness." +50,Hypertension,"I have been experiencing a headache, chest pain, dizziness, and difficulty maintaining my balance. I also feel like I am having trouble concentrating" +51,Hypertension,"Along with a headache, chest pain, instability, and balance issues, I've also been feeling dizzy. I also think I'm having problems focusing." +52,Hypertension,"Along with a head pain, chest pain, instability, and balance issues, I've also been feeling unwell. I also think I'm having problems focusing." +53,Hypertension,"In addition to a head pain, chest pain, instability, and balance issues, I've already been feeling unwell. I also suppose I'm having issues focusing." +54,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. My ability to concentrate and focus has also been challenging." +55,Hypertension,"I have been having a headache, chest pain, dizziness, and trouble with my balance. It has also been hard for me to focus and concentrate." +56,Hypertension,"I've been encountering trouble walking, a headache, chest pain, and dizziness. My concentration skills and focus has also been challenging." +57,Hypertension,"I've been encountering poor balance, a headache, chest pain, and dizziness. My ability to pay attention and focus has also been problematic." +58,Hypertension,"My coordination has been off, and I've been experiencing a headache, chest pain, and dizziness. Additionally, I've had trouble concentrating and focusing." +59,Hypertension,"My symptoms include a headache, chest pain, dizziness, lack of balance, and trouble concentrating." +60,Hypertension,"I have been experiencing symptoms such as a headache, chest pain, dizziness, loss of balance, and difficulty focusing." +61,Hypertension,"I've been suffering from symptoms including a headache, chest pain, dizziness, losing my balance, and trouble concentrating." +62,Hypertension,"Headache, chest discomfort, dizziness, lack of balance, and difficulty concentrating are some of the symptoms I've been having." +63,Hypertension,"Along with a headache and chest pain, I also experienced fainting and balance issues. Additionally, I've discovered that it's hard for me to focus." +64,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. I've also realised that I'm having trouble focusing." +65,Hypertension,"My balance has been off, and I have a headache, chest pain, and dizziness. I've also observed that it's hard for me to concentrate." +66,Hypertension,"I've been experiencing balance issues, chest pain, headaches, and pains. I've been having trouble focusing as well." +67,Hypertension,"I have been experiencing chest pain, dizziness, and a headache that feels like a continual pressure in my forehead." +68,Hypertension,"I have been feeling lightheaded and unsteady on my feet, and have also noticed a decline in my ability to focus and concentrate." +69,Hypertension,"I've been experiencing dizziness and shakiness, as well as a loss in my attention span and ability to concentrate." +70,Hypertension,"I've been experiencing dizziness and anxiousness, as well as a loss in my attention and concentration and ability to concentrate." +71,Hypertension,"I've had intense aches in my chest, a headache that won't go away, and I've been feeling dizzy and unsteady." +72,Hypertension,"I've had intense aches in my chest, a head  pain that refuses to go away, and I've been feeling dizzy and unsteady." +73,Hypertension,"Along with chest pain, dizziness, and a headache that feels like a narrow zone around my head, I have been having a lot of trouble." +74,Hypertension,"I have been struggling with a headache that feels like a tight band around my head, along with chest pain and dizziness." +75,Hypertension,I've been experiencing balance issues in addition to feeling disoriented and dizzy. My headache has also been present nonstop. +76,Hypertension,"I have been feeling disoriented and dizzy, and have also had trouble keeping my balance. My headache has been a constant presence as well." +77,Hypertension,"I've been experiencing balance issues along with feeling dizzy and lightheaded. Additionally, I've seen a drop in my concentration and focus." +78,Hypertension,"In addition to feeling dizzy and lightheaded, I've been having problems keeping my equilibrium. My capacity to concentrate and focus has also been slipping, I've noticed." +79,Hypertension,"I have been experiencing a headache that feels like a sharp pain in my temples, along with chest pain and dizziness." +80,Hypertension,"Along with a chest pain and dizziness, I've had a headache that seems like a sharp pain in my forehead." +81,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a walk. It's been hard for me to focus and concentrate since then." +82,Hypertension,"While taking a walk, I suddenly started experiencing headache, chest pain, and dizziness after feeling fine all day. Since then, it has been challenging for me to concentrate and focus." +83,Hypertension,"I woke up this morning with a headache and chest pain, and as the day has gone on, I've also been feeling dizzy and unsteady on my feet" +84,Hypertension,"I had a headache and chest pain this morning, and as the day wore on, I also started to feel unsteady and unstable on my feet." +85,Hypertension,"I have been dealing with a headache and chest pain for a few days now, but today the dizziness and loss of balance became much worse." +86,Hypertension,"For a few days now, I've been suffering from a headache and chest pain, but today the dizziness and lack of balance got considerably worse." +87,Hypertension,"I was at work when I started feeling a headache, chest pain, and dizziness. It's been hard for me to concentrate and focus on my tasks since then." +88,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was at work. Since then, it has been challenging for me to focus and concentrate on my work." +89,Hypertension,"I was in the middle of a workout when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to maintain my balance since then" +90,Hypertension,"I instantly experienced a headache, chest pain, and dizziness while working out. Since then, it has been challenging for me to keep my balance." +91,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while driving home from work. It's been hard for me to focus and concentrate on the road since then." +92,Hypertension,"I felt fine all day, but when I was driving home from work, I suddenly started to have headache, chest discomfort, and dizziness. Since then, it has been challenging for me to concentrate and focus while driving." +93,Hypertension,"I was out shopping when I started feeling a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my tasks since then." +94,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was out shopping. Since then, it has been difficult for me to concentrate on my work." +95,Hypertension,"I woke up this morning feeling fine, but as the day went on, I started experiencing a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my work since then." +96,Hypertension,"I felt good when I woke up this morning, but as the day wore on, I began to feel headachey, sick to my stomach, and dizzy. Since then, it has been challenging for me to concentrate and focus on my work." +97,Hypertension,"I was in the middle of a meeting when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on the discussion since then." +98,Hypertension,"I suddenly experienced a headache, chest pain, and dizziness in the middle of a conference. Since then, it has been challenging for me to concentrate and focus on the topic." +99,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a run. It's been hard for me to maintain my balance since then" +100,Migraine,"I have been experiencing acidity and indigestion after meals, as well as frequent headaches and blurred vision." +101,Migraine,"I've been getting frequent headaches and hazy vision, as well as acid reflux and indigestion after meals." +102,Migraine,"I have been having trouble with my vision, seeing things as distorted and experiencing visual disturbances." +103,Migraine,"I've been suffering visual disruptions, seeing things as distorted, and eyesight problems." +104,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties." +105,Migraine,"I have been feeling excessively hungry, even after eating, and have had a stiff neck." +106,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties." +107,Migraine,"I've been grumpy and gloomy lately, and I've also noticed a change in my vision." +108,Migraine,"I have been feeling depressed and irritable, and have noticed a change in my vision." +109,Migraine,"I've been irritated and depressed lately, and I've also noticed a change in my vision." +110,Migraine,"Along with recurrent headaches and blurred vision, I suffer acid reflux and trouble digesting my food." +111,Migraine,"I have been experiencing acid reflux and difficulty digesting my food, along with regular headaches and impaired vision" +112,Migraine,"I have been feeling hungry all the time and have had a sore neck, as well as problems with my vision." +113,Migraine,"In addition to having a stiff neck and eye issues, I have been always hungry." +114,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +115,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux." +116,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been suffering indigestion, headaches, blurred vision, and stomach problems." +117,Migraine,"I have been suffering from acid reflux, indigestion, frequent headaches, and impaired vision, as well as excessive hunger, a sore neck, depression, irritability, and visual disturbance." +118,Migraine,"Along with increased hunger, a sore neck, melancholy, impatience, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and blurred eyesight." +119,Migraine,"Together with increased hunger, a sore neck, anxiety, irritation, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and impaired eyesight." +120,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as regular headaches and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +121,Migraine,"In addition to recurrent headaches and blurred vision, increased appetite, a stiff neck, sadness, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity." +122,Migraine,"In add to frequent headaches and blurred vision, increased appetite, a stiff neck, anxiety, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity." +123,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +124,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been experiencing blurred and distorted vision." +125,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been feeling blurred and distorted vision." +126,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as frequent headaches and impaired vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance" +127,Migraine,"Acidity and indigestion are among the digestive problems I've been having, along with regular headaches, blurred vision, increased hunger, stiff neck, sadness, impatience, and visual disruption." +128,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +129,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and regular headaches." +130,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, anxiety, irritability, and regular headaches, I have also been battling acid reflux, indigestion, and regular headaches." +131,Migraine,"I have been experiencing acidity, indigestion, and frequent headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +132,Migraine,"Stomach acid, indigestion, frequent headaches, hazy and distorted vision, increased appetite, stiff neck, depression, irritation, and visual distortion have all been bothering me." +133,Migraine,"I have been struggling with digestive issues, including acid reflux and indigestion, as well as regular headaches and impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance" +134,Migraine,"I have been experiencing frequent headaches, blurred vision, excessive appetite, a sore neck, sadness, irritability, and digestive problems including indigestion and acid reflux." +135,Migraine,"I have been enduring frequent headaches, blurred vision, excessive appetite, a sore neck, anxiety, irritability, and digestive difficulties including indigestion and acid reflux." +136,Migraine,"I have been experiencing acidity, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance" +137,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion." +138,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion." +139,Migraine,"I have been suffering from acid reflux, indigestion, and frequent headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +140,Migraine,"Along with impaired eyesight, increased appetite, a sore neck, melancholy, impatience, and regular headaches, I've also been experiencing heartburn, acid reflux, and indigestion." +141,Migraine,"Along with impaired seeing, excessive eating, a sore neck, melancholy, impatience, and constant headaches, I've also been fighting heartburn, acid reflux, and indigestion." +142,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort." +143,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been bothering me and interfering with my usual activities." +144,Migraine,"As well as with excessive appetite, a tense neck, depression, irritability, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been disturbing me and interfering with my usual activities." +145,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of distress and making it difficult to go about my daily activities." +146,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent migraines. My regular activities have been made more challenging by these symptoms, which have been causing me a great deal of distress." +147,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent dizziness. My regular activities have been made more tough by these symptoms, which have been causing me a great deal of distress." +148,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort." +149,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of problems and making it difficult to concentrate and function normally." +150,Cervical spondylosis,"I have been experiencing severe back pain, a persistent cough, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance." +151,Cervical spondylosis,"Along with a chronic cough and limb weakness, I've been dealing with excruciating back discomfort. I've been experiencing neck pain as well as vertigo and instability." +152,Cervical spondylosis,"I have been suffering from back pain, a hacking cough, and weakness in my arms and legs. Additionally, my neck hurts and I have had issues with dizziness and maintaining my balance." +153,Cervical spondylosis,"Back pain, a hacking cough, and numbness in my arms and legs have been bothering me. In addition, my neck hurts, and I've having trouble staying balanced and without getting lightheaded." +154,Cervical spondylosis,"Back pain, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy." +155,Cervical spondylosis,"Pain typically, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy." +156,Cervical spondylosis,"I have been struggling with back pain, a cough that won't go away, and weakness in my extremities. My neck hurts and I have had problems with dizziness and losing my balance." +157,Cervical spondylosis,"Back discomfort, a persistent cough, and weakness in my limbs have been bothering me. I have issues with vertigo and losing my equilibrium, and my neck hurts." +158,Cervical spondylosis,"Back discomfort, a breathing difficulty, and weakness in my limbs have been hurting me. I have issues with vertigo and losing my balance, and my neck hurts." +159,Cervical spondylosis,"I have been experiencing intense back pain, a dry cough, and a lack of strength in my limbs. My neck hurts and I have been feeling dizzy and unsteady on my feet." +160,Cervical spondylosis,"I've been struggling with severe back pain, a dry cough, and limb weakness. I've been feeling lightheaded and wobbly on my feet, and my neck hurts." +161,Cervical spondylosis,"I've been battling with back pain, a dry cough, and limb weakness. I've been feeling dizzy and unstable on my feet, and my neck hurts." +162,Cervical spondylosis,"I've been struggling with back pain, a chronic cough, and limb weakness. I've been feeling disoriented and weak on my feet, and my neck hurts." +163,Cervical spondylosis,"I have been suffering from back pain, a productive cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and balance." +164,Cervical spondylosis,"Back pain, a productive cough, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck hurts." +165,Cervical spondylosis,"Backache, a difficulty breathing, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck suffers." +166,Cervical spondylosis,"I have been struggling with back pain, a persistent cough, and weakness in my muscles. My neck hurts and I have had problems with dizziness and loss of balance." +167,Cervical spondylosis,"Back pain, a lingering cough, and muscle weakness have been bothering me. I have issues with dizziness and losing my equilibrium, and my neck hurts." +168,Cervical spondylosis,"Back pain, a chronic cough, and muscle weakness have been bothering me. I have concerns with dizziness and losing my position, and my neck hurts." +169,Cervical spondylosis,"I have been experiencing severe back pain, a cough that comes and goes, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance." +170,Cervical spondylosis,"I've been having intermittent coughing fits, significant back pain, and limb weakness. I've been experiencing neck pain as well as a dizzy and unsteady sensation." +171,Cervical spondylosis,"I've been having periodic coughing fits, terrible back pain, and limb weakness. I've been feeling neck pain as well as a dizzy and unstable sensation." +172,Cervical spondylosis,"I have been dealing with back pain, a cough that won't go away, and weakness in my arms and legs. My neck hurts and I have had problems with dizziness and maintaining my balance." +173,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts." +174,Cervical spondylosis,"Back pain, a dry cough, and stiffness in my arms and legs have been bothering me. I've had problems staying balanced and experience dizziness, and my neck hurts." +175,Cervical spondylosis,"I've been experiencing back pain, a persistent cough, and numbness in my arms and legs. I've been having trouble staying balanced and managing my vertigo, and my neck hurts." +176,Cervical spondylosis,"My arms and legs have been weak, and I have been suffering from back pain and a persistent cough. In addition to experiencing neck pain and balance issues, I also suffer dizziness." +177,Cervical spondylosis,"Back pain, a persistent cough, and arm and leg weakness have been bothering me. I've been experiencing neck pain, balance issues, and dizziness." +178,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts." +179,Cervical spondylosis,"I have been suffering from back pain, a dry cough, and a lack of strength in my muscles. My neck is sore and I have been feeling dizzy and unsteady on my feet" +180,Cervical spondylosis,"Back pain, a dry cough, and a lack of muscle strength have been bothering me. My neck hurts, and I've been feeling lightheaded and shaky." +181,Cervical spondylosis,"My muscles lack strength, and I have been experiencing back pain and a dry cough. I've been experiencing neck pain and feeling lightheaded and unstable on my feet." +182,Cervical spondylosis,"My muscles haven't been very strong, and I've been experiencing back ache. I've been feeling lightheaded and wobbly on my feet, and my neck hurts." +183,Cervical spondylosis,"I've been experiencing back pain, a dry cough, and muscle weakness. I've been experiencing neck pain, feeling lightheaded, and having trouble standing still." +184,Cervical spondylosis,"I have been struggling with intense back pain, a chronic cough, and weakness in my arms and legs. My neck is sore and I have had problems with dizziness and loss of balance." +185,Cervical spondylosis,"I've had terrible back pain, a persistent cough, and weakness in my arms and legs. I have issues with dizziness and balance loss, and my neck hurts." +186,Cervical spondylosis,"I've been suffering from severe back pain, a persistent cough, and numbness in my arms and legs. I've been experiencing issues with vertigo and balance issues, and my neck hurts." +187,Cervical spondylosis,"Along with a persistent cough, weakness in my arms and legs, and severe back pain, I've been having a lot of trouble. I've experienced issues with vertigo and balance loss, and my neck is hurting." +188,Cervical spondylosis,"I have been experiencing severe back pain, a cough that produces phlegm, and weakness in my muscles. My neck also hurts and I have been feeling dizzy and unsteady on my feet." +189,Cervical spondylosis,"In addition to having excruciating back pain, I've also been coughing up mucus and feeling weak all over. I've been feeling lightheaded and unstable on my feet, and my neck hurts as well." +190,Cervical spondylosis,"My muscles have been quite weak, and I've been coughing up phlegm along with significant back discomfort. In addition to feeling weak and disoriented, my neck has been hurting." +191,Cervical spondylosis,"Along with a phlegmy cough and muscle weakness, I've been dealing with excruciating back pain. In addition to feeling woozy and shaky on my feet, my neck has been hurting." +192,Cervical spondylosis,"I have been dealing with back pain, a persistent cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and loss of balance." +193,Cervical spondylosis,"Back ache, a chronic cough, and limb weakness have been bothering me. I have troubles with disorientation and balance loss, and my neck hurts." +194,Cervical spondylosis,"I've had back pain, a cough that won't go away, and limb weakness. I've been experiencing neck pain, instability, and balance concerns." +195,Cervical spondylosis,"I have been suffering from back pain, a chronic cough, and weakness in my arms and legs. My neck hurts and I have been feeling dizzy and off balance" +196,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. My neck hurts, and I've been feeling lightheaded and unsteady." +197,Cervical spondylosis,"I've had back pain, a persistent cough, and weakness in my arms and legs. My neck hurts, and I've been feeling off-balance and woozy." +198,Cervical spondylosis,"I have been struggling with back pain, a productive cough, and weakness in my muscles. My neck is sore and I have had problems with dizziness and unsteady balance." +199,Cervical spondylosis,"Back pain, a productive cough, and muscle weakness have been bothering me. I have issues with dizziness and uneven balance, and my neck hurts." +200,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain." +201,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +202,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach has been hurting." +203,Jaundice,"Extreme itchiness, sickness, and exhaustion have all been plaguing me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +204,Jaundice,I have been having severe itching and vomiting. I am also very tired and have lost weight. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain +205,Jaundice,"I've been experiencing intense itching and nausea. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +206,Jaundice,"I've been throwing up and experiencing intense itching. Along with losing weight, I'm also really exhausted. My skin has become yellow, and my fever is really high. I've been having stomach pain and my pee is black." +207,Jaundice,"Strong itchiness and nausea have been bothering me. I have also lost weight and am really exhausted. I have a high fever, and my skin is becoming yellow. In addition to feeling stomach ache, my pee is black." +208,Jaundice,I've been experiencing terrible itching and nausea. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. I have dark urine and stomach ache. +209,Jaundice,I have been feeling itchy and have been vomiting. I am also very fatigued and have lost weight. My fever is high and my skin has become yellow. My urine is dark and I have abdominal pain +210,Jaundice,"I've been feeling scratchy and throwing up. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have stomach ache and black urine." +211,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. Additionally, I get stomach ache and dark urine." +212,Jaundice,"I've had a scratchy stomach and been throwing up. Aside from losing weight, I am also really exhausted. I have a high fever and yellow skin. Besides having stomach ache, my pee is black." +213,Jaundice,"I've been itchy and throwing up. In addition, I have lost weight and feel really exhausted. My skin has become yellow and I have a severe temperature. I have abdominal ache and black urine." +214,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +215,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain" +216,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having" +217,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +218,Jaundice,"I've had nausea, vomiting, and exhaustion. Additionally, I've lost weight and have a temperature. My urine is black and my skin has turned yellow. I've also been having stomach pain." +219,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well." +220,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +221,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +222,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +223,Jaundice,"I've been constantly feeling scratchy, sick, and tired out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Furthermore, I have been experiencing stomach pain." +224,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain." +225,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain." +226,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain." +227,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts." +228,Jaundice,"Extreme itchiness, nausea, and exhaustion have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present." +229,Jaundice,"Extreme itchiness, nausea, and fatigue have been troubling me. In moreover, I experienced a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present." +230,Jaundice,I have been feeling itchy and have been vomiting. I am also very tired and have lost weight. My fever is high and my skin has become yellow. I have been experiencing abdominal pain as well. +231,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. My stomach has also been hurting recently." +232,Jaundice,"I've had a scratchy stomach and been throwing up. I have also lost weight and am really exhausted. I have a high fever and yellow skin. As well as you, I have been having stomach pain." +233,Jaundice,I've been itchy and throwing up. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. My stomach has also been hurting. +234,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +235,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain" +236,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having" +237,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +238,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well." +239,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +240,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain." +241,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain." +242,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain." +243,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts." +244,Jaundice,"I have been experiencing itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain." +245,Jaundice,"I've been losing weight and experiencing nausea, itching, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +246,Jaundice,"I have been suffering from intense itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain" +247,Jaundice,"I've been losing weight and experiencing severe itching, nausea, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +248,Jaundice,"I have been experiencing severe itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain" +249,Jaundice,"I've been losing weight, feeling really fatigued, and throwing up a lot. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +250,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. I feel nauseous and my muscles are really sore" +251,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot." +252,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot." +253,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. My muscles are quite sore, and I feel sick." +254,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, My muscles hurt a lot, and I feel queasy." +255,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. My muscles hurt a lot, and I feel sick." +256,Malaria,"I've had intense itching all over my body, accompanied by chills and vomiting. My fever is really high and I've been sweating excessively. I also have a headache and feel nauseous. My muscles are really painful." +257,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort." +258,Malaria,"Along with severe body itchiness, chills, and nausea, I've been experiencing. I've been severely perspiring and have a very high fever. I'm feeling queasy and also have a headache. Really hurting muscles are me." +259,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort." +260,Malaria,"I've been experiencing severe body itchiness, along with chills and nausea. I've been perspiring a lot and have an extremely high fever. I feel sick to my stomach and have a headache. My muscles are hurting a lot." +261,Malaria,"I'm suffering from intense itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been bothering me." +262,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +263,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +264,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been bothered by nausea as well as muscle ache." +265,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and have been perspiring a lot. I've also been bothered by nausea and muscular ache." +266,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +267,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +268,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me discomfort." +269,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +270,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache." +271,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. I have a headache and am also perspiring a lot. I've been uncomfortable from nausea and muscle ache, too." +272,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been suffering from nausea as well as muscle ache." +273,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +274,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable." +275,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles." +276,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache." +277,Malaria,"I have a high fever, chills, and severe itching. Along with my headache and excessive sweating, I've been terrible with nausea and muscle ache." +278,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and am perspiring a lot. I've been feeling awful with nausea and muscle ache." +279,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been causing me a lot of discomfort." +280,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I've been really uncomfortable lately from nausea and muscle ache." +281,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. I've been suffering from severe muscle pain and nausea." +282,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, I've been suffering from severe muscle pain and nausea." +283,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been in a lot of agony from muscle ache and nausea." +284,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been bothering me." +285,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +286,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache." +287,Malaria,"I have a high fever, chills, and severe itching. I have a headache and am also perspiring a lot. I've been bothered by nausea as well as muscle ache." +288,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. In addition, I have a headache and am perspiring a lot. I've also been bothered by nausea and muscular ache." +289,Malaria,"I'm suffering from severe itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been causing me discomfort." +290,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +291,Malaria,"I have a high fever, severe itching, chills, and vomiting. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +292,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been uncomfortable from nausea and muscle ache, too." +293,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. In addition, I have a headache and have been perspiring a lot. I've been suffering from nausea as well as muscle ache." +294,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +295,Malaria,"I've been experiencing intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable." +296,Malaria,"Intense scratching, chills, nausea, and a high temperature have been plaguing me. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles." +297,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache." +298,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Along with my headache and excessive sweating, I've been feeling awful with nausea and muscle ache." +299,Malaria,"I've had severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me a lot of discomfort." +0,urinary tract infection,"Frequent urges to urinate with little output, pain during urination, cloudy or bloody urine, strong or foul-smelling urine, pelvic pain, low fever, nausea and vomiting" +1,urinary tract infection,"I get frequent urges to urinate at night with little output, and a lot of pain during urination. The urine is coludy and bloody and sometime foul smelling, and I get nauseous" +2,urinary tract infection,I get a burning sensation when I pee. Sometimes a lot of pain and foul smelling urine. I have been getting more urges to urinate at night +3,urinary tract infection,I have been getting blood in my pee. Sometimes I get nauseous while peeing. This often almost coincides with me having a high temperature +4,urinary tract infection,"My pee looks cloudy and has storng and foul smell. I frequently get an urge to urinate at night, and have been getting high temperatures since these symptoms strted showing" +5,urinary tract infection,"I have pain in my abdomen, and often get feverish. I have sudden and strong urges to pee. The pain is almost constant, and often increases at night time. My pee almost always has a foul smell" +6,urinary tract infection,"I have been frequently getting sudden strong urges to pee. There is blood in my pee sometimes and it is very foul smelling. I think I have an infection, what do I do?" +7,urinary tract infection,"I get blood in my pee sometimes and sometimes get nauseous whie peeing. I also have a bad smell in my pee and sometimes get high temperatures at nights, help me" +8,urinary tract infection,"I have pain in my lower abdomen, and get a buring sensation in my pee. I also have been getting low temperatures since I started to get these other symptoms. I have been weak because of this" +9,urinary tract infection,There is blood in my urine and I have a low fever. My head hurts almost all the time and I get very strong uncontrollable urges to pee. I have been having pain in lower back also +10,urinary tract infection,I have been having low temperatures and bloody pee since some days now. My head hurts like crazy and pee also smells very foul. I have almost no control on my peeing and get very sudden urges +11,urinary tract infection,I have pain near my pelvic region and vomit a lot. Sometimes there is blood in my pee and there is almost a very foul smell in my urine.I sometimes get headches and have trouble sleeping due to this +12,urinary tract infection,"I have to constantly to go the bathroom to relieve myself, but cant seem to empty my bladder. I get these very strong and uncontrollable urges to pee and sometimes get dark or bloody pee" +13,urinary tract infection,I been having very low temperatues and a very foul smelling pee. The area near my kidneys hurt a lot and I cant seem to hold my pee. I often get these uncontrollable urges +14,urinary tract infection,"I have to go the bathroom all the time, but the urine output is very low often just a few drops. My stomach hurts a lot and and cant seem to be able to control my urges to pee" +15,urinary tract infection,My is pee is dark and often bloody and often has a very unfathomable smell. I have been having temperature fluctuations pretty frequently and often am not able to sleep at night because of this +16,urinary tract infection,I have been having pain in my bladder and have been getting +17,urinary tract infection,I have been urinating with blood in it. I occasionally feel queasy when urinating. I frequently almost have a fever at the same time. +18,urinary tract infection,"My pee has a strong, unpleasant scent and a hazy appearance. Since these symptoms started appearing, I regularly feel the desire to urinate at night and have been experiencing high temperatures" +19,urinary tract infection,"My stomach hurts, and I frequently acquire a temperature. I experience sudden, intense cravings to urinate. The discomfort is virtually always there and frequently gets worse at night. My pee nearly always smells bad." +20,urinary tract infection,"I've been experiencing frequent, intense, abrupt cravings to urinate. Sometimes I get blood in my pee, and it smells awful. What should I do if I believe I have an infection?" +21,urinary tract infection,I occasionally urinate with blood in it and occasionally feel queasy while doing so. Help! I also occasionally get high temps at night and have a terrible odour coming from my pee. +22,urinary tract infection,"I have lower abdominal ache and a bursting sensation when I urinate. Since I began to experience these additional symptoms, I have also been experiencing low body temperatures. I've been weak as a result of this." +23,urinary tract infection,"I have a mild temperature and blood in my pee. My head hurts almost constantly, and I frequently experience severe, involuntary desires to urinate. Additionally, I've been experiencing lower back ache" +24,urinary tract infection,"Since a few days ago, I've been experiencing low temperatures and bloody urination. My head is in excruciating pain, and my urine smells awful. I can hardly control when I urinate, and the impulses come on suddenly." +25,urinary tract infection,"I frequently vomit and get discomfort at my pelvic area. My urine occasionally smells almost unbearably bad, and there is occasionally blood in it. Because of my headaches at times, I have problems falling asleep." +26,urinary tract infection,"I have to use the restroom frequently to relieve myself, but I can't seem to get my bladder empty. I occasionally get severe, uncontrolled desires to urinate, as well as black or crimson urine." +27,urinary tract infection,"I've been experiencing really low moods and very bad urine odour. I can't seem to keep my urine back, and the area near my kidneys hurts a lot. I frequently experience these irrational cravings." +28,urinary tract infection,"I have to use the restroom frequently, yet only a few drops of pee are usually produced. My stomach aches a lot, and I can't seem to control the desire to urinate." +29,urinary tract infection,"My urine is frequently black, red, and has a really strange odour. I have been experiencing temperature changes very regularly, which usually prevents me from sleeping at night." +30,urinary tract infection,Blood has been found in my urination. I sometimes have nausea when urinating. I regularly feel like I'm almost feverish. +31,urinary tract infection,My pee smells strongly and is cloudy in appearance. I've had high temperatures and a regular urge to urinate at night since these symptoms first materialised. +32,urinary tract infection,"I've been having frequent, strong, sudden urges to urinate. I occasionally urinate with blood in it, and the stench is horrible. What ought I to do if I think I'm infected?" +33,urinary tract infection,"On rare occasions, I pee with blood in it and have mild nausea. Help! I also occasionally experience high nighttime temperatures and a dreadful urine odour." +34,urinary tract infection,"My lower abdomen hurts, and when I urinate, it feels like it's exploding. I've been having low body temps ever since I started having these new symptoms. Because of this, I've been weak." +35,urinary tract infection,"Blood is in my pee, and I have a low body temperature. I have practically continual headaches and often strong, uncontrollable need to urinate. In addition, I've started having lower back pain." +36,urinary tract infection,"I've had low temps and bloody urine for the past four days. My pee smells terrible, and my head hurts like hell. I scarcely have any control over when I urinate, and the urges strike without warning." +37,urinary tract infection,"I regularly vomit and get pelvic pain. There is occasionally blood in my pee, and it occasionally has an absolutely intolerable odour. I occasionally have trouble falling asleep because of my migraines." +38,urinary tract infection,"I need to relieve myself regularly, but I can't seem to get my bladder to empty. On sometimes, I get intense, uncontrollable urges to urinate, along with dark or red urine." +39,urinary tract infection,"My spirits have been incredibly low, and my pee smells awful. My kidney region hurts a lot, and I can't seem to hold my urine in. I get these unreasonable urges all the time." +40,urinary tract infection,"I have to go to the bathroom a lot, but generally only a few drops of urine come out. I have severe stomach pains and an overwhelming want to urinate." +41,urinary tract infection,"My urine often has a weird odour, is crimson or black in colour, and both. My body's temperature has been fluctuating often, which typically keeps me up at night." +42,urinary tract infection,I noticed blood in my urinating. I occasionally feel sick after urinating. I frequently feel as though I have a fever. +43,urinary tract infection,"My pee has a strong odour and a hazy look. Since these symptoms started, I've had high temperatures and frequent nighttime urges to urinate." +44,urinary tract infection,I occasionally urinate with blood in it and feel a little queasy. Help! I also occasionally get horrible pee odours and excessive overnight temps. +45,urinary tract infection,"My lower abdomen aches, and it feels like it may explode when I urinate. Since I began experiencing these new symptoms, my body temperature has been consistently low. That's why I've been weak." +46,urinary tract infection,"In the last four days, I've experienced low temperatures and blood in my pee. My head hurts so much and my urine smells awful. The desires to urinate seldom come on cue, and I hardly ever have any control over when they do." +47,urinary tract infection,"My pee frequently has an odd smell and is either red or black, or both. The frequent changes in my body temperature usually keep me awake at night." +48,urinary tract infection,My pee smells strongly and seems cloudy. I've had fevers and frequent overnight urination needs ever since these symptoms began. +49,urinary tract infection,"I've had low temps and blood in my urine for the past three days. My pee smells terrible, and my head hurts so much. Urinary urges seldom occur on cue, and I almost never have any control over when they do." +50,allergy,"I have a runny nose and I am sneezing all the time. My eyes are itchy and often watery, and I am coughing all the time. My head hurts and all the time" +51,allergy,I have sore throat and I am sneezing all the time. Sometimes I have swelling on my face like my lips and near my eyes. I just cant stop sneezing once I start sneezing +52,allergy,I hace difficulty in breething and shortness of breath. I cough uncontrollably and get itchy eyes and swelling on my face and other body parts +53,allergy,I have a nasal congestion and blocked nose. Sometimes at night I have chest pain and tightness. I have also lost my sense of smell and taste +54,allergy,I have asthma like symptoms like wheezing and difficulty breathing. I often get fever and have headaches. I feel tired all the time +55,allergy,"I feel tired all the time, I have lost my taste and have a really sore throat. I also get feverish and often have muscle aches. Sometimes my whole body just cramps up" +56,allergy,I have been experiencing a loss of appetite and have difficulty swallowing food. I have been suffering from sore throat and runnny nose also. +57,allergy,"I feel fatigued all the time, and have a tingling sensation in my throat. I have also developed flaky skin. Sometimes I get puffy eyes and sometimes puffs up too." +58,allergy,"I have stomach cramps, nausea and diarrhea. My throat is swollen, and I have difficulty breathing. Sometimes at night night I get chest pain and nauseous." +59,allergy,I have itchy and red skin. Sometimes these result in flaking. My face and lips puff up and causes a lot of inconvinience. I get watery eyes sometimes and headches when the puffing gets severe +60,allergy,"I often sneeze and have a runny nose. My eyes are scratchy and frequently runny, and I frequently cough. My head hurts constantly." +61,allergy,"I often sneeze and have a sore throat. My lips and the area around my eyes occasionally swell. Once I start sneezing, I just can't stop." +62,allergy,"I have trouble breathing and get short of breath. I have a dry, hacking cough, itchy eyes, and swelling all over my face and body." +63,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort at night. I've also lost my ability to taste and smell. +64,allergy,"I get symptoms of asthma, such as wheezing and breathing problems. I frequently have headaches and fever. All the time, I feel exhausted." +65,allergy,"I always feel exhausted, have bad taste, and have an extremely scratchy throat. I also have muscular pain and heat. My entire body simply cramps up occasionally." +66,allergy,"I've been losing my appetite, and I also have trouble swallowing. My nose has been running, and I have a sore throat." +67,allergy,I'm always worn out and experiencing a tingle in my throat. I've also started to have dry skin. My eyes occasionally swell up +68,allergy,"I feel queasy, nauseous, and dizzy. I have a swelling throat and am having breathing issues. I occasionally have chest discomfort and nausea at night." +69,allergy,"My skin is red and scratchy. These can occasionally flake. My cheeks and lips swell, which is really annoying. I occasionally have headaches and runny eyes because to the puffing." +70,allergy,"I frequently sneeze, and my nose runs. I constantly cough, and my eyes are sore and watery. My head hurts all the time." +71,allergy,I have a sore throat and frequently sneeze. Sometimes the skin around my eyes and my lips swells. I just can't stop sneezing once I get going. +72,allergy,"I have respiratory issues and experience breathlessness. My face and torso are swollen, my eyes are itching, and I have a dry, hacking cough." +73,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. Additionally, I've lost my senses of taste and smell." +74,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I constantly feel worn out." +75,allergy,"I always feel worn out, have unpleasant taste in my mouth, and have a really itchy throat. My muscles are also hot and hurting. Sometimes my whole body just cramps up." +76,allergy,"Along with losing my appetite, I've been having swallowing issues. I have a sore throat, and my nose has been running." +77,allergy,I always feel exhausted and have a tickle in my throat. My skin has also started to feel dry. I occasionally get ocular swelling. +78,allergy,"I'm dizzy, nauseated, and shaky. I'm having trouble breathing since my throat is swollen. On occasion, throughout the night, my chest hurts and I feel sick." +79,allergy,"My skin is irritated and inflamed. Sometimes, they can flake. My lips and cheeks expand, and it is really unpleasant. Because of the puffing, I occasionally have headaches and wet eyes." +80,allergy,"My nose runs and I sneeze a lot. My eyes are wet and hurt, and I cough all the time. My head aches constantly." +81,allergy,"I sneeze a lot and have a sore throat. My lips and the skin surrounding my eyes will occasionally swell. Once I start, I just can't stop sneezing." +82,allergy,"I have breathing problems and become out of breath easily. My eyes ache, I have a dry, hacking cough, and my face and body are bloated." +83,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort during the night. I've also lost my ability to smell and taste. +84,allergy,"I get wheezing and breathing difficulties, which are asthma symptoms. I frequently have headaches and fever. I'm continuously exhausted." +85,allergy,"I always feel exhausted, have a bad taste in my mouth, and my throat itches a lot. Also heated and painful are my muscles. My entire body can cramp up at times." +86,allergy,"I've been losing my appetite and having trouble swallowing. My nose has been running, and I have a sore throat." +87,allergy,I always get a tickle in my throat and feel fatigued. My skin has begun to feel dry as well. I have ocular edema on occasion. +88,allergy,"I feel queasy, sick, and wobbly. My throat is enlarged and making it difficult for me to breathe. My chest occasionally pains all through the night, and I occasionally feel ill." +89,allergy,My skin is swollen and itchy. They may occasionally flake. It hurts a lot when my cheeks and lips swell. I occasionally get headaches and watery eyes from the puffing. +90,allergy,"I sneeze a lot and my nose is running. My eyes ache and are damp, and I frequently croak. My head hurts all the time." +91,allergy,"I have a sore throat and a lot of sneezing. There are times when the skin around my eyes and my lips swell. I find that once I start, I just cannot stop." +92,allergy,"I have trouble breathing and easily get out of breath. My face and torso are swollen, my eyes hurt, and I have a dry, hacking cough." +93,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. I've also lost my senses of taste and smell." +94,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I'm always worn out." +95,allergy,"I frequently have exhaustion, a terrible taste in my mouth, and throat itchiness. My muscles are also burning and uncomfortable. Sometimes I have cramps all throughout my body." +96,allergy,"My appetite has decreased, and I've been having swallowing issues. I have a sore throat, and my nose has been running." +97,allergy,"My throat always tickles, and I'm worn out. Additionally, my skin has started to feel dry. Ocular inflammation occasionally affects me." +98,allergy,"I'm nauseous, ill, and shaky. I have a huge throat, which makes it tough for me to breathe. I occasionally have nighttime chest aches and occasional sickness." +99,allergy,"My skin is itching and swollen. Sometimes, they could flake. My lips and cheeks swelling aches a lot. The puffing occasionally gives me headaches and runny eyes." +100,gastroesophageal reflux disease,I often get aburning sensation in my throat while and especially after eating. Sometimes this also leaves a sour or bitter taste in my mouth and I get nauseos beacuse of this +101,gastroesophageal reflux disease,"I have heartburn and indigestion. I often vomit whatever I eat and have difficultly swallowing food, beacuse the food gets stuck in my throat. I have a nagging pain in my upper abdomen" +102,gastroesophageal reflux disease,"I have frequent belching and burping. I have chest pain that often radiates to the back of my neck, jaw and arm. I get a feeling of tightness and pressure on my chest" +103,gastroesophageal reflux disease,"I have a persistent sour taste in my mouth, even when I haven't eaten anything acidic. I get frequent hiccups and a feeling of lump in my throat." +104,gastroesophageal reflux disease,"I have a chronic bad breath and a sour taste in my mouth, It sometimes gets difficult to swallow food because of this tingling sensation in my throat" +105,gastroesophageal reflux disease,"I get frequent heartburn and indigestion, especially eating spicy foods or fatty foods. I get chest pain that gets worse when I lie down or bend over. I also often have chest pain" +106,gastroesophageal reflux disease,"I have a loss of appetite and difficulty swallowing. I often have this persistent feeling of fullness, even after eating small meals. I usually throw up and get heartburn and a tingling sensation in my throat" +107,gastroesophageal reflux disease,"I have a sore throat or hoarseness, especially in the morning. I have a chronic nagging pain in my throat and bad breath. I also have frequent belching" +108,gastroesophageal reflux disease,"I have a feeling of food or acid backing up into my throat. I chest pain which gets worse if I lie down. I get frequent heartburn or indigestion, after eating food and vomit it out" +109,gastroesophageal reflux disease,I feel uneasiness after eating and usually vomit whatever I've eaten. I always have this pain in my abdomen and have really bad acid reflux +110,gastroesophageal reflux disease,"My throat frequently feels like it is burning, especially after eating. Additionally, I occasionally get a sour or bitter aftertaste, which causes me to feel queasy." +111,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and I have trouble swallowing food because it gets caught in my throat. My upper abdomen is bothering me." +112,gastroesophageal reflux disease,"My burping and belching are frequent. I frequently get chest discomfort that spreads to the back of my neck, jaw, and arm. I have pressure and tension in my chest." +113,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have hiccups and a lump in my throat." +114,gastroesophageal reflux disease,"I always have foul breath and a sour taste in my mouth, and occasionally, the tingling in my throat makes it difficult to swallow meals." +115,gastroesophageal reflux disease,"I frequently have heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lie down or stoop over, my chest discomfort worsens. My chest hurts quite a bit too." +116,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after eating little meals, I frequently get this lingering sense of fullness. Typically, I have heartburn, nausea, and tingling in my throat." +117,gastroesophageal reflux disease,"I often wake up with a sore throat or a scratchy voice. My throat hurts constantly, and I also have poor breath. I also frequently burp." +118,gastroesophageal reflux disease,"I feel as though acid or food is backing up into my throat. My chest hurts, and lying down makes it worse. After eating, I frequently have heartburn or indigestion and throw up." +119,gastroesophageal reflux disease,"After eating, I get queasy and frequently throw up everything I've eaten. I always get severe abdominal ache and have terrible acid reflux." +120,gastroesophageal reflux disease,"Especially after eating, my throat regularly feels like it is burning. I also occasionally get a bitter or sour aftertaste, which makes me feel sick." +121,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly vomit everything I eat, and food gets stuck in my throat, making it difficult for me to swallow. I have a pain in my upper abdomen." +122,gastroesophageal reflux disease,"Belching and burping are common in me. I often get chest pain that radiates to the back of my neck, my jaw, and my arm. In my chest, there is pressure and stress." +123,gastroesophageal reflux disease,"I get a sour taste in my mouth all the time, even when there is nothing acidic in my stomach. I often get the hiccups and have a lump in my throat." +124,gastroesophageal reflux disease,"I periodically find it challenging to swallow food due to the tingling in my throat, bad breath, and bad taste in my mouth." +125,gastroesophageal reflux disease," regularly have indigestion and heartburn, especially after eating spicy or fatty foods. My chest pain is worse when I hunch over or lie down. Additionally, my chest hurts a lot." +126,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling." +127,gastroesophageal reflux disease,I frequently get a scratchy voice or a painful throat when I wake up. I have bad breath and a continual sore throat. I also vomit a lot. +128,gastroesophageal reflux disease,My throat feels as though food or acid is backing up. Lying down only makes my chest pain more. I regularly have heartburn or indigestion after eating and puke up. +129,gastroesophageal reflux disease,I often feel sick after eating and puke up the entire meal. I constantly get excruciating acid reflux and severe stomach pain. +130,gastroesophageal reflux disease,"My throat often feels like it is burning, especially after eating. A bitter or sour aftertaste that I occasionally experience also makes me feel unwell." +131,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and it is hard for me to swallow since food gets caught in my throat. My upper abdomen is in discomfort." +132,gastroesophageal reflux disease,"My tendency is to belch and burp frequently. I frequently get chest pain that spreads to my arm, jaw, and the back of my neck. There is pressure and stress in my chest." +133,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups." +134,gastroesophageal reflux disease,"Periodically, the tingling in my throat, poor breath, and bad taste in my mouth make it difficult for me to swallow meals." +135,gastroesophageal reflux disease,"I routinely experience heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lean forward or lie down, my chest discomfort becomes worse. My chest hurts a lot as well." +136,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after little meals, I frequently get this lingering sensation of fullness. My normal symptoms include nausea, heartburn, and tingling in my throat." +137,gastroesophageal reflux disease,"I regularly wake up with a scratchy voice or a sore throat. My throat is constantly irritated, and I have horrible breath. I frequently throw up." +138,gastroesophageal reflux disease,"It feels like food or acid is backing up in my throat. My chest discomfort only becomes worse while I'm lying down. After eating, I frequently have heartburn or indigestion and throw up." +139,gastroesophageal reflux disease,"After eating, I frequently feel unwell and throw up the entire meal. I suffer from painful acid reflux and excruciating stomach discomfort all the time." +140,gastroesophageal reflux disease,"Especially after eating, my throat frequently feels scorching. I occasionally get a bitter or sour aftertaste that makes me feel sick." +141,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly throw up everything I eat, and swallowing is difficult for me since food gets stuck in my throat. I'm experiencing pain in my upper abdomen." +142,gastroesophageal reflux disease,"I have a tendency to burp and belch regularly. I often get chest discomfort that radiates to my arm, jaw, and neck. My chest feels tight and stressed." +143,gastroesophageal reflux disease,"I always get a sour taste in my mouth, even when I don't have anything acidic in my stomach. I regularly have the hiccups and a knot in my throat." +144,gastroesophageal reflux disease,"I occasionally have trouble swallowing food because of the tingling in my throat, terrible breath, and bad taste in my mouth." +145,gastroesophageal reflux disease,"I frequently have indigestion and heartburn, especially after eating spicy or fatty foods. My chest hurts when I lean forward or while I'm lying down. Additionally, my chest hurts a lot." +146,gastroesophageal reflux disease,I regularly feel sick after eating and puke up the entire meal. I constantly get horrible acid reflux agony and stomach discomfort. +147,gastroesophageal reflux disease,"My throat often feels like it's on fire, especially after eating. I occasionally get an aftertaste that is sour or bitter and makes me feel nauseous." +148,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups." +149,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling." +150,drug reaction,"I have a metallic taste in my mouth, and also have a sense of change of taste and smell. Sometimes get very unbearable joint pain and muscle pain" +151,drug reaction,"I have headaches and migraines, have been having difficulty sleeping. I have been having muscle twitching and tremors. Sometimes I get lightheaded" +152,drug reaction,I have fever and feel very dizzy and lightheaded. My heart is beating very fast and I feel very confused. I am not able to think very clearing and everything feels very foggy +153,drug reaction,I have rashes on my skin and these flake off from time to time. This leaves me prone to infection. My fingers start twitching and sometimes I experience tremors. +154,drug reaction,I feel very nauseous and have chest pain. Recently I have been experiencing chest pain. I feel very uneasy and often sweat profusely +155,drug reaction,"I have itching all over my body, and rashes in my chest and back. I get flaky skin from time to time and often this leaves marks on my body." +156,drug reaction,I have hair loss and there is a significant change in the texture of my hair. I have dry and itchy sclap and increased dandruff. My skin is also getting very dry +157,drug reaction,I am experiencing a decrease in my sex drive and difficulty to fucntion sexually. I feel very light headed and confused and often experince brain fog +158,drug reaction,I am experiencing changes in my menstrual cycle and unexpected vaginal discharge. I often get mood swings and feel agitated from time to time +159,drug reaction,I have experinenced significant weight gain and become very obese. I have changes in my appetite and cravings for different foods +160,drug reaction,I have difficulty in maintianing concentration and very low mental clarity. I often forget things and in general have difficulty remembering things +161,drug reaction,"In addition to experiencing a change in taste and fragrance, I also have a metallic aftertaste in my tongue. occasionally get excruciating joint and muscular pain" +162,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My muscles have been trembling and twitching. I sometimes feel dizzy." +163,drug reaction,"I'm feeling really lightheaded and dizzy when I have a temperature. My mind is completely muddled, and my heart is racing. I find it difficult to think clearly, and everything seems quite hazy." +164,drug reaction,"My skin occasionally peels off the rashes that I have. This makes me more vulnerable to infections. My hands begin to shake, and occasionally I have tremors." +165,drug reaction,I have severe nausea and chest discomfort. I have been having chest discomfort lately. I often shiver a lot and feel really nervous. +166,drug reaction,"I have rashes in my chest and back and itch all over my body. I occasionally have flaky skin, which frequently creates markings on my body." +167,drug reaction,"My hair's texture has significantly changed, and I'm experiencing hair loss. My scalp is dry and itching, and my dandruff is becoming worse. My skin is also becoming really dry." +168,drug reaction,"My sex desire has decreased, and I'm finding it harder to function sexually. I regularly have brain fog and feel quite dizzy and disoriented." +169,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I frequently experience mood swings and experience occasional agitation." +170,drug reaction,"I've gained a lot of weight and am now quite fat. My appetite varies, and I have desires for various things." +171,drug reaction,"I struggle to maintain focus, and my mental clarity is really poor. I have trouble remembering things and frequently forget stuff." +172,drug reaction,My tongue also has a metallic aftertaste in addition to a change in taste and scent. occasionally get acute muscle and joint ache +173,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. My entire body has been shaking and twitching. Sometimes I become lightheaded." +174,drug reaction,"When I have a fever, I feel quite woozy and lightheaded. My heart is pounding, and my head is absolutely foggy. My ability to think properly is impaired, and everything appears to be somewhat blurry." +175,drug reaction,"My rashes occasionally cause my skin to peel off. I'm more susceptible to illnesses as a result. I start to tremble sometimes, and my hands start to shake." +176,drug reaction,"Both chest pain and extreme nausea are present. Recently, my chest has been hurting. I frequently shiver a lot and am really anxious." +177,drug reaction,"My body itches all over, and I have rashes on my back and chest. My skin can be flaky on sometimes, which commonly results in body marks." +178,drug reaction,"I'm losing hair, and my hair's texture has considerably altered. My dandruff is becoming worse, and my dry, itchy scalp. My skin is getting quite dry as well." +179,drug reaction,"My desire for sex has dropped, and I'm having trouble having sex. I frequently get brain fog, as well as feeling somewhat bewildered." +180,drug reaction,"I've noticed a difference in my monthly cycle and an unexpected vaginal discharge. I become irritable every now and again, and my moods swing a lot." +181,drug reaction,I have put on a lot of weight and am now very obese. I have different urges and different appetites. +182,drug reaction,I have terrible mental clarity and find it difficult to stay focused. I regularly forget things and have problems remembering things. +183,drug reaction,"Along with a change in taste and smell, my tongue also has a metallic aftertaste. occasionally get severe joint and muscular pain" +184,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My whole body has been trembling and shivering. At times, I have dizziness." +185,drug reaction,"I am quite queasy and dizzy when I have a temperature. My brain is completely cloudy, and my heart is racing. I'm having trouble thinking straight, and everything seems a little fuzzy." +186,drug reaction,"Sometimes my skin starts to flake off from my rashes. I'm more prone to becoming sick as a result. On occasion, my hands begin to quiver and I begin to tremble." +187,drug reaction,There is severe nausea and chest discomfort. My chest has been aching lately. I'm really nervous and shiver a lot of the time. +188,drug reaction,"I have rashes on my back and chest, and my entire body itches. My skin may be dry and flaky at times, which frequently leaves body marks." +189,drug reaction,"I'm shedding hair, and the texture of my hair has changed significantly. My dry, itchy scalp and dandruff are becoming worse. My skin is also becoming pretty dry." +190,drug reaction,"I no longer want to have sex, and it's difficult for me to do so. I regularly have brain fog and a sense of confusion." +191,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I occasionally lose my temper, and my moods change a lot." +192,drug reaction,I've gained a lot of weight and am currently quite fat. I have many inclinations and cravings. +193,drug reaction,I have awful mental clarity and have trouble focusing. I frequently forget things and struggle with memory. +194,drug reaction,"My tongue also changes in taste and scent, leaving a metallic aftertaste. can have excruciating joint and muscle pain" +195,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. I've been shaking and shivering all over. Sometimes I become lightheaded." +196,drug reaction,"When I have a temperature, I feel pretty nauseous and lightheaded. My heart is pounding, and my mind is absolutely foggy. Everything feels a little hazy to me, and I'm having difficulties thinking clearly." +197,drug reaction,"My rashes occasionally cause my skin to start to fall off. I'm more likely to get ill as a result. My hands occasionally start to tremble, and I start to shake." +198,drug reaction,"Chest pain and severe nausea are present. Recently, my chest has been hurting. I tremble a lot and am quite anxious." +199,drug reaction,"My entire body itches, and I have rashes on my back and chest. Sometimes my skin might be dry and flaky, which often results in body stains." +200,peptic ulcer disease,"I have a burning sensation in my upper abdomen, ofetn between or at night. I have heartburn and indigestion and often feel very nauseous" +201,peptic ulcer disease,I have bloating and a feeling of uneasiness. I have been experiencing weight loss and a loss of appetite. Sometimes I have dark and tarry stools and blood in my vomit +202,peptic ulcer disease,I have difficulty swallowing food and often get a sensation of the food getting stuck in my throat. I have constant belching and bloating. There is a persitent sour taste in my mouth +203,peptic ulcer disease,I have been having bloody stools which has resulted in bloos loss and loss of iron. Thiis has caused me anemia and I feel very weak in general +204,peptic ulcer disease,"I have persistant, gnawing hunger and apetite. Sometimes I get abdominal cramps and spasms. There is bloating and gas after eating which causes me a great deal of uneasiness" +205,peptic ulcer disease,"I have changes in my bowel movements, such as constipation and diarrhea. I have a loss of appetite and energy and often feel very fatigued" +206,peptic ulcer disease,I have abdominal pain and it gets only worse if I bend over or lie down. I feel discomfort when I eat certain foods such as spicy or acidic food. Sometimes I get loose stools because of this +207,peptic ulcer disease,I have difficulty sleeping due to abdominal pain or discomfort. I have a loss of appetite and feel fatigued after going to the bathroom. I feel very tited all the time +208,peptic ulcer disease,I have a sour acidic taste in my mouth. I have frequent belching and burping. I have a feeling of pressure or fullness in my upper abdomen that last for a few hours +209,peptic ulcer disease,I have unintended weight loss and difficulty gaining weight. I have pain and discomfort that is relieved by taking antacids. My mouth tastes very bad +210,peptic ulcer disease,"Occasionally throughout the day or at night, I have burning in my upper abdomen. I get indigestion, heartburn, and frequent bouts of extreme nausea." +211,peptic ulcer disease,"Bloating and unease are both present in me. I've been losing weight and losing interest in food. I occasionally get tarry, black stools and vomit that contains blood." +212,peptic ulcer disease,"I have trouble swallowing, and I frequently feel like food is getting stuck in my throat. I feel bloated and belch constantly. I always get a sour taste in my mouth." +213,peptic ulcer disease,"My bloody stools have caused me to lose iron and bloos, among other things. I now have anaemia from this, and I generally feel quite weak." +214,peptic ulcer disease,"My hunger and appetite are persistent and ravenous. Periodically, my stomach may cramp and spasm. After eating, I have bloating and gas, which makes me quite uncomfortable." +215,peptic ulcer disease,"My bowel motions have changed; they've been constipated and diarrhoeal. I lack energy, appetite, and frequently feel really exhausted." +216,peptic ulcer disease,"I have stomach ache, and bending over or lying down just makes it worse. When I consume certain meals, such as spicy or acidic cuisine, I have discomfort. This sometimes causes me to have loose stools." +217,peptic ulcer disease,"I have trouble falling or staying asleep because of stomach ache. After using the restroom, I feel drained and lose my appetite. I constantly feel really anxious." +218,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. My burping and belching are frequent. For a few hours, I get pressure or fullness in my upper belly." +219,peptic ulcer disease,I lose weight unintentionally and find it challenging to acquire weight. I use antacids to ease the pain and discomfort I experience. My mouth feels horrible. +220,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I get heartburn, indigestion, and regular episodes of severe nausea." +221,peptic ulcer disease,"I feel bloated and uneasy at the same time. I've been losing weight, and I no longer like eating. I occasionally get bloody vomit and dark, tarry stools." +222,peptic ulcer disease,I often feel like food is getting caught in my throat and have problems swallowing. I feel bloated and frequently belch. I constantly have a bitter aftertaste. +223,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. Because of this, I now have anaemia and usually feel fairly weak." +224,peptic ulcer disease,"My appetite and chronic hunger are both ferocious. My stomach may occasionally ache and spasm. I have gas and bloating after eating, which is really painful." +225,peptic ulcer disease,My bowel movements have become constipated and diarrheal. I often feel quite tired and lack both energy and appetite. +226,peptic ulcer disease,"Bending down or reclining down only makes my stomach feel more. I have pain after eating some foods, such as hot or acidic food. I occasionally get loose stools as a result of this." +227,peptic ulcer disease,"Due to a stomach discomfort, I have problems sleeping or staying asleep. I am exhausted after using the bathroom and lose my appetite. I'm quite nervous all the time." +228,peptic ulcer disease,"A sour, acidic taste is all over my mouth. Belching and burping are common in me. I have pressure or fullness in my upper abdomen for a few hours." +229,peptic ulcer disease,"I unknowingly lose weight and find it difficult to gain weight. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so much." +230,peptic ulcer disease,"On occasion, throughout the day or at night, I have burning in my upper abdomen. I frequently get extreme nauseous episodes, heartburn, and indigestion." +231,peptic ulcer disease,"I have both bloating and unease. I no longer like eating because I've been losing weight. I sometimes vomit blood and have tarry, black stools." +232,peptic ulcer disease,I frequently get swallowing issues and the sensation that food is getting stuck in my throat. I regularly belch and feel bloated. My aftertaste is unpleasant all the time. +233,peptic ulcer disease,"My bloody stools have caused me to lose a lot of things, including iron and bloos. I now have anaemia as a result, and I typically feel rather weak." +234,peptic ulcer disease,"Both my appetite and ongoing hunger are fierce. There are times when my stomach hurts and cramps. Following a meal, I have very painful gas and bloating." +235,peptic ulcer disease,Constipated and diarrheal bowel motions have been happening to me. I frequently have a lack of energy and appetite. +236,peptic ulcer disease,"My stomach only feels worse when I stoop or recline. After eating particular meals, such as spicy or acidic cuisine, I have discomfort. This occasionally causes me to have loose stools." +237,peptic ulcer disease,"I have a stomach ache that keeps me from falling or staying asleep. After using the restroom, I feel worn out and lose interest in food. I'm constantly pretty anxious." +238,peptic ulcer disease,"My mouth is filled with an acidic, sour flavour. Burping and belching are frequent in me. For a few hours, my upper abdomen has felt pressured or full." +239,peptic ulcer disease,I inadvertently lose weight and have a hard time gaining it back. I use antacids to get rid of the pain and discomfort I experience. It aches so much in my mouth. +240,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I regularly get severe heartburn, indigestion, and nausea." +241,peptic ulcer disease,"I'm feeling both bloated and uneasy. Because I've been losing weight, I no longer like eating. I occasionally get tarry, black stools and blood in my vomit." +242,peptic ulcer disease,"I regularly have trouble swallowing, and I sometimes feel like food is becoming trapped in my throat. I frequently feel bloated and belch. Every time, I have a bad aftertaste." +243,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. As a result, I now have anaemia and generally feel rather weak." +244,peptic ulcer disease,I have a strong appetite and am constantly hungry. My stomach occasionally aches and cramps. I have really painful gas and bloating after eating. +245,peptic ulcer disease,I've been experiencing bowel movements that are both constipated and diarrhoeic. I often lack the will to eat and energy. +246,peptic ulcer disease,"Only when I hunch down or lie down does my stomach hurt more. I have pain after eating certain foods, such as hot or acidic food. I occasionally get loose stools as a result of this." +247,peptic ulcer disease,I can't get to sleep or remain asleep because I have a stomach pain. I get exhausted after using the bathroom and stop being hungry. I worry a lot of the time. +248,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. I have frequent belching and burping. My upper abdomen has felt pressed in or full for the past few hours." +249,peptic ulcer disease,"I unintentionally lose weight and find it challenging to gain it back. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so severely right now." +250,diabetes,I have increased thirst and frequent urination. I often have a dry mouth and throat. Recently I have been having increased hunger and appetite +251,diabetes,I have blurred vision and it only seems to be getting worse. I feel fatigued and tired all the time. I also feel very dizzy and light headed at times +252,diabetes,I have a dry mouth and throat. I also have been experiencing an increased appetite and hunger. However I do feel very tired at times +253,diabetes,I have slow healing of wounds and cuts. I have this tingling sensation in my hand and numbness in both my hands and feet +254,diabetes,I have mood changes and have difficulty concentrating. My mind feels hazy and foggy at times and it gets difficult to do even regular chores +255,diabetes,I have a feeling of tremors and muscle twitching. I have decreased sense of smell or taste and I feel fatigued. Sometimes I have a feeling of rapid hearbeat or palipatations +256,diabetes,I have rashes and skin irritations especially in the folds of the skin. There is also very slow healing of any cuts and bruises I have on my skin +257,diabetes,I have a frequent need to urinate and often have these uncontrollable urges. I feel dizzy and often confused. I have also been loss of visuals +258,diabetes,I have difficulty breathing especially during physical activity. I have unusual sweating and flushing. I frequently get yeast infections +259,diabetes,I have persistent dry cough. My infections dont seem to be healing and I have palpitations. I also have this problem of sore throat that does seem to go away +260,diabetes,"I'm drinking more water and urinating more frequently. My throat and mouth are frequently dry. Recently, my appetite and hunger have both grown." +261,diabetes,"My vision is foggy, and it seems to be growing worse. I'm constantly feeling worn out and exhausted. Additionally, I occasionally have severe lightheadedness and dizziness." +262,diabetes,My throat and mouth are dry. I've also been feeling more hungry and more hungry. But sometimes I do feel quite exhausted. +263,diabetes,I have a sluggish wound and reduced healing rate. My hands and feet are both numb and have this tingling sensation. +264,diabetes,"I struggle to focus and have emotional swings. At times, my head seems cloudy and foggy, making it challenging for me to do even simple tasks." +265,diabetes,I feel my muscles trembling and shaking. I feel worn out and my senses of taste and smell have diminished. Sometimes I have palpitations or a quick heartbeat. +266,diabetes,"I experience skin irritations and rashes, especially in my skin's creases. Any wounds and bruises I have on my skin also heal quite slowly." +267,diabetes,I frequently feel the want to urinate and frequently have these strong cravings. I frequently feel woozy and bewildered. I've also had sight loss. +268,diabetes,"I have trouble breathing, especially when exercising. I'm flushed and sweating in an unexpected way. I have yeast infections a lot." +269,diabetes,"I have a chronic dry cough. I have palpitations and my infections don't appear to be getting better. I also have a painful throat issue, although it does seem to go away." +270,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat regularly feel dry. My appetite and hunger have both increased recently. +271,diabetes,"I have blurry vision, and it seems to be getting worse. I'm continuously fatigued and worn out. I also occasionally have acute lightheadedness and vertigo." +272,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. But on occasion, I do feel rather worn out." +273,diabetes,My wound is healing slowly and at a slower rate. My hands and feet are numb and tingling at the same time. +274,diabetes,"I have trouble focusing, and my emotions fluctuate. My brain might seem murky and foggy at times, making it difficult for me to complete even straightforward chores." +275,diabetes,"My body is shaking and trembling. My senses of taste and smell have gotten weaker, and I feel exhausted. I occasionally have palpitations or a rapid pulse." +276,diabetes,"I have rashes and skin irritations, especially in the crevices of my skin. My skin bruises and cuts also take a long time to heal." +277,diabetes,I often feel the want to urinate and experience these intense desires. I often feel dizzy and confused. I also lost my sight. +278,diabetes,"I have respiratory issues, especially when doing out. Unexpectedly, I'm sweating and flushed. I frequently have yeast infections and urinary tract infections" +279,diabetes,"I constantly have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat hurts occasionally, but it does appear to get better." +280,diabetes,"I've been drinking more water and urinating more frequently. My throat and mouth frequently feel dry. Recently, both my hunger and appetite have grown." +281,diabetes,"My vision is foggy, and it appears to be growing worse. I feel exhausted and worn out all the time. I also have severe dizziness and lightheadedness on occasion." +282,diabetes,"My throat and mouth are dry. I've also been getting hungry more and more. I do, however, occasionally feel rather exhausted." +283,diabetes,My wound is recovering more slowly now. Both my hands and feet are tingling and going numb. I feel very weak +284,diabetes,"My emotions change, and I have difficulties focusing. At times, my mind might be cloudy and hazy, making it challenging for me to do even simple tasks." +285,diabetes,"My entire body is trembling and shaky. I've lost my ability to taste and smell, and I'm worn out. I sometimes get a racing heart or palpitations." +286,diabetes,"I get skin irritations and rashes, especially in my skin's crevices. Cuts and bruises on my skin also take a while to heal." +287,diabetes,"I frequently feel the want to urinate and have these strong cravings. I get woozy and disoriented a lot. Moreover, I have lost my vision considerably" +288,diabetes,"I have breathing problems, especially when I'm outside. I'm suddenly flushed and perspiring. I experience yeast infections and urinary tract infections rather regularly." +289,diabetes,"I have a dry cough that never stops. I have palpitations and my infections don't appear to be getting better. Sometimes my throat hurts, but it seems to get better." +290,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat feel dry a lot. My hunger and appetite have both increased recently. +291,diabetes,"My vision is blurry, and it feels like it's getting worse. All the time, I feel worn out and fatigued. I occasionally have extreme lightheadedness and vertigo as well." +292,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. However, I do get periodic bouts of exhaustion." +293,diabetes,My wound is healing more slowly these days. My feet and hands are tingling and becoming numb. I feel really fragile. +294,diabetes,"My emotions fluctuate, and it's hard for me to concentrate. My mind can be foggy and foggy at times, making it difficult for me to perform even simple chores." +295,diabetes,"I'm shaking and trembling all over. I've lost my sense of taste and smell, and I'm exhausted. I occasionally get palpitations or a speeding heart." +296,diabetes,"Particularly in the crevices of my skin, I have skin rashes and irritations. My skin bruises and cuts take a while to heal as well." +297,diabetes,I regularly experience these intense urges and the want to urinate. I frequently feel drowsy and lost. I've also significantly lost my vision. +298,diabetes,"I have trouble breathing, especially outside. I start to feel hot and start to sweat. I frequently have urinary tract infections and yeast infections." +299,diabetes,"I constantly sneeze and have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat does ache occasionally, but it usually gets better." diff --git a/Symptoms_Detection/app.py b/Symptoms_Detection/app.py new file mode 100644 index 0000000000000000000000000000000000000000..ecd1a69bc1974b045489e9c4e8096b9b6301de6b --- /dev/null +++ b/Symptoms_Detection/app.py @@ -0,0 +1,217 @@ + +import pandas as pd + +dataset_1= pd.read_csv("training_data.csv") +#dataset_1 + +#for i in dataset_1.columns: + + #print(i) + + +# Create a new column with merged column names where value is 1 +dataset_1['symptoms_text'] = dataset_1.apply(lambda row: ','.join([col for col in dataset_1.columns if row[col] == 1]), axis=1) + +#print("Original DataFrame:") +#print(dataset_1) + + + +#dataset_1.to_csv("training_data_after_changes.csv") + + +final_dataset = pd.DataFrame(dataset_1[["prognosis","symptoms_text"]]) +final_dataset.columns = ['label', 'text'] +#final_dataset.to_csv("final_dataset.csv") +#final_dataset + +##############3 +import pandas as pd +dataset_2= pd.read_csv("Symptom2Disease.csv") +dataset_2 = dataset_2[["label","text"]] +#dataset_2 + +################# +df_combined = pd.concat([final_dataset, dataset_2], axis=0, ignore_index=True) +#df_combined + +################ +import nltk +nltk.download('stopwords') +import pandas as pd +import re +import string +from nltk.tokenize import word_tokenize +from nltk.corpus import stopwords +from nltk.stem import WordNetLemmatizer + + +# Download necessary NLTK data files +nltk.download('punkt') +nltk.download('stopwords') +nltk.download('wordnet') + +def preprocess_text(text): + # Convert to lowercase + text = text.lower() + + cleaned_text = re.sub(r'[^a-zA-Z0-9\s\,]', ' ', text) + # Tokenize text + tokens = word_tokenize(cleaned_text) + + # Remove stop words + stop_words = set(stopwords.words('english')) + tokens = [word for word in tokens if word not in stop_words] + + + # Rejoin tokens into a single string + cleaned_text = ' '.join(tokens) + + return cleaned_text + +df_combined["cleaned_text"] = df_combined["text"].apply(preprocess_text) + +#print(df_combined) + + +########### +#df_combined.to_csv("final_dataset_llms.csv") + +########### + +import pandas as pd +from sklearn.feature_extraction.text import CountVectorizer +print("scikit-learn imported successfully!") +from sklearn.model_selection import train_test_split +from sklearn.linear_model import LogisticRegression +from sklearn.metrics import accuracy_score, classification_report + +# Load your dataset +data = pd.read_csv('final_dataset_llms.csv') # Replace with your file path + +# Example columns: 'symptoms' and 'label' +X = data['cleaned_text'] +y = data['label'] + +# Convert text data to numerical data +vectorizer = CountVectorizer() +X_vectorized = vectorizer.fit_transform(X) + +# Split the data into training and testing sets +X_train, X_test, y_train, y_test = train_test_split(X_vectorized, y, test_size=0.2, random_state=42) + +# Train the model +model = LogisticRegression() +model.fit(X_train, y_train) + +# Make predictions +y_pred = model.predict(X_test) + +# Evaluate the model +accuracy = accuracy_score(y_test, y_pred) +print(f'Accuracy: {accuracy:.2f}') +print('Classification Report:') +print(classification_report(y_test, y_pred)) + +########################pip +######################### +############################### +########################################### + +data['label'].nunique() + +############################################# + +def precaution(label): + dataset_precau = pd.read_csv("disease_precaution.csv", encoding='latin1') + label = str(label) + label = label.lower() + + dataset_precau["Disease"] = dataset_precau["Disease"].str.lower() + # Filter the DataFrame for the given label + filtered_precautions = dataset_precau[dataset_precau["Disease"] == label] + + # Extract precaution columns + precautions = filtered_precautions[["Precaution_1", "Precaution_2", "Precaution_3", "Precaution_4"]] + return precautions.values.tolist() # Convert DataFrame to a list of lists + # Return an empty list if no matching label is found + +def occurance(label): + dataset_occur = pd.read_csv("disease_riskFactors.csv", encoding='latin1') + label = str(label) + label = label.lower() + + dataset_occur["DNAME"] = dataset_occur["DNAME"].str.lower() + # Filter the DataFrame for the given label + filtered_occurrence = dataset_occur[dataset_occur["DNAME"] == label] + + occurrences = filtered_occurrence["OCCUR"].tolist() # Convert Series to list + return occurrences + # Return an empty list if no matching label is found +################################################################################ + +import streamlit as st +import numpy as np +import sklearn +from sklearn.feature_extraction.text import CountVectorizer + +st.title("SYMPTOMS DETECTION, PRECAUTION n OCCURANCE") + +symptoms = st.text_area("Enter your symptoms (comma-separated):") + +if symptoms.lower() != "exit": + # Convert input string to a list of symptoms + + + # Function to predict new symptoms + def predict_symptoms(new_symptoms): + preprocessed_text = preprocess_text(new_symptoms) + + if isinstance(preprocessed_text, str): + new_symptoms = [preprocessed_text] + + # Vectorize the new symptoms + new_symptoms_vectorized = vectorizer.transform(new_symptoms) + # Make predictions + prediction = model.predict(new_symptoms_vectorized) + + return prediction + + st.write("disease :") + symptoms_list = [symptom.strip() for symptom in symptoms.split(',')] + + # Predict symptoms + prediction = predict_symptoms(' '.join(symptoms_list)) + + + st.write(prediction) + st.write("precautions:") + precautions_names = precaution(prediction) + st.write(precautions_names) + st.write("Occurance:") + occurance_name = occurance(prediction) + st.write(occurance_name) + +else: + st.write("Please enter symptoms to get the disease.") + + + + +# Get user input + +# Make a prediction + + + + + + + + + + + + + + diff --git a/Symptoms_Detection/code b/Symptoms_Detection/code new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Symptoms_Detection/code @@ -0,0 +1 @@ + diff --git a/Symptoms_Detection/disease_precaution.csv b/Symptoms_Detection/disease_precaution.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c806d64e5f159e60f7805d217242611baba2be3 --- /dev/null +++ b/Symptoms_Detection/disease_precaution.csv @@ -0,0 +1,42 @@ +Disease,Precaution_1,Precaution_2,Precaution_3,Precaution_4 +Drug Reaction,stop irritation,consult nearest hospital,stop taking drug,follow up +Malaria,Consult nearest hospital,avoid oily food,avoid non veg food,keep mosquitos out +Allergy,apply calamine,cover area with bandage,,use ice to compress itching +Hypothyroidism,reduce stress,exercise,eat healthy,get proper sleep +Psoriasis,wash hands with warm soapy water,stop bleeding using pressure,consult doctor,salt baths +GERD,avoid fatty spicy food,avoid lying down after eating,maintain healthy weight,exercise +Chronic cholestasis,cold baths,anti itch medicine,consult doctor,eat healthy +hepatitis A,Consult nearest hospital,wash hands through,avoid fatty spicy food,medication +Osteoarthristis,acetaminophen,consult nearest hospital,follow up,salt baths +(vertigo) Paroymsal Positional Vertigo,lie down,avoid sudden change in body,avoid abrupt head movment,relax +Hypoglycemia,lie down on side,check in pulse,drink sugary drinks,consult doctor +Acne,bath twice,avoid fatty spicy food,drink plenty of water,avoid too many products +Diabetes ,have balanced diet,exercise,consult doctor,follow up +Impetigo,soak affected area in warm water,use antibiotics,remove scabs with wet compressed cloth,consult doctor +Hypertension ,meditation,salt baths,reduce stress,get proper sleep +Peptic ulcer diseae,avoid fatty spicy food,consume probiotic food,eliminate milk,limit alcohol +Dimorphic hemmorhoids(piles),avoid fatty spicy food,consume witch hazel,warm bath with epsom salt,consume alovera juice +Common Cold,drink vitamin c rich drinks,take vapour,avoid cold food,keep fever in check +Chicken pox,use neem in bathing ,consume neem leaves,take vaccine,avoid public places +Cervical spondylosis,use heating pad or cold pack,exercise,take otc pain reliver,consult doctor +Hyperthyroidism,eat healthy,massage,use lemon balm,take radioactive iodine treatment +Urinary tract infection,drink plenty of water,increase vitamin c intake,drink cranberry juice,take probiotics +Varicose veins,lie down flat and raise the leg high,use oinments,use vein compression,dont stand still for long +AIDS,avoid open cuts,wear ppe if possible,consult doctor,follow up +Paralysis (brain hemorrhage),massage,eat healthy,exercise,consult doctor +Typhoid,eat high calorie vegitables,antiboitic therapy,consult doctor,medication +Hepatitis B,consult nearest hospital,vaccination,eat healthy,medication +Fungal infection,bath twice,use detol or neem in bathing water,keep infected area dry,use clean cloths +Hepatitis C,Consult nearest hospital,vaccination,eat healthy,medication +Migraine,meditation,reduce stress,use poloroid glasses in sun,consult doctor +Bronchial Asthma,switch to loose cloothing,take deep breaths,get away from trigger,seek help +Alcoholic hepatitis,stop alcohol consumption,consult doctor,medication,follow up +Jaundice,drink plenty of water,consume milk thistle,eat fruits and high fiberous food,medication +Hepatitis E,stop alcohol consumption,rest,consult doctor,medication +Dengue,drink papaya leaf juice,avoid fatty spicy food,keep mosquitos away,keep hydrated +Hepatitis D,consult doctor,medication,eat healthy,follow up +Heart attack,call ambulance,chew or swallow asprin,keep calm, +Pneumonia,consult doctor,medication,rest,follow up +Arthritis,exercise,use hot and cold therapy,try acupuncture,massage +Gastroenteritis,stop eating solid food for while,try taking small sips of water,rest,ease back into eating +Tuberculosis,cover mouth,consult doctor,medication,rest diff --git a/Symptoms_Detection/disease_riskFactors.csv b/Symptoms_Detection/disease_riskFactors.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a3266c35dc560f89c84d49bdaa7ac6a56445fc5 --- /dev/null +++ b/Symptoms_Detection/disease_riskFactors.csv @@ -0,0 +1,127 @@ +DID,DNAME,PRECAU,OCCUR,RISKFAC +101,Fungal Infection,"Bath twice, use dettol or neem in bathing water, keep infected area dry, use clean cloths +",Common -More than 1 million cases per year (India),"Colonization, broad-spectrum antibiotics, indwelling central catheter" +102,Food allergy,"Apply calamine, cover area with bandage, use ice to compress itching +",Very common-More than 10 million cases per year (India),"Atopic dermatitis, Family history, hay fever" +103,GERD,"Avoid fatty spicy food, avoid lying down after eating, maintain healthy weight, exercise +",Very common-More than 10 million cases per year (India),"Obesity, Connective tissue disorders, such as scleroderma." +104,Chronic cholestasis,"Cold baths, anti itch medicine, consult doctor, eat healthy +",Common -More than 1 million cases per year (India),"infections from viruses such as HIV, hepatitis, cytomegalovirus" +105,Drug allergy,"Stop irritation, consult nearest hospital, stop taking drug and follow up +",Very common-More than 10 million cases per year (India),"History of food allergy or hay fever, history of drug allergy, Increased exposure to a drug" +106,Peptic Ulcer,"Avoid fatty spicy food, consume probiotic food, eliminate milk, limit alcohol +",Common -More than 1 million cases per year (India),"taking NSAIDs, Smoking, H. pylori infected, alcohol consumption, untreated stress." +107,AIDS,"pre-exposure prophylaxis (PrEP),use condoms or dental dams with oral sex",Common -More than 1 million cases per year (India),"Having unprotected sex,having another sexually transmitted infection +" +108,Diabetes,"have balanced diet,exercise,consult doctor,follow up",Very common-More than 10 million cases per year (India),"coronary artery disease with chest pain, heart attack, stroke and narrowing of arteries" +109,Gastroenteritis,"stop eating solid food for while, try taking small sips of water, rest, ease back into eating",Very common-More than 10 million cases per year (India),measles and immunodeficiencies put the patient at a higher risk for a gastrointestinal +110,Asthma,"switch to loose clothing, take deep breaths, get away from trigger, seek help",Very common-More than 10 million cases per year (India),",Wheezing when exhaling,Shortness of breath,Chest tightness or pain." +111,Hypertension,"meditation,salt baths,reduce stress,get proper sleep",Very common-More than 10 million cases per year (India),"Diabetes, Unhealthy Diet, Obesity, Excessive Alcohol, Tobacco Use, Family History, high BP" +112,Migraine,"meditation,reduce stress,use polaroid glasses in sun,consult doctor",Very common-More than 10 million cases per year (India),"Skipping meals, Too much or too little sleep, Stress, Smoking, Depression, anxiety, excessive alcohol" +113,Cervical spondylosis,"use heating pad or cold pack,exercise,take otc pain reliever,consult doctor",Very common-More than 10 million cases per year (India),"Older age, stress on your neck, Neck injuries, Genetic factors, Smoking" +114,Brain hemorrhage,"Don't smoke,Don't use drugs,Investigate corrective surgery",Common -More than 1 million cases per year (India),"Smoking, excessive alcohol, hypocholesterolemia, drugs, Old age, male sex, chronic kidney disease" +115,Jaundice,"drink plenty of water,consume milk thistle,eat fruits and high fibrous food,medication",Common -More than 1 million cases per year (India),"Premature birth, Significant bruising during birth, Blood type, Breast-feeding, Race" +116,Malaria,"Avoid oily food, avoid non veg food, keep mosquitos out +",Rare -Fewer than 1 million cases per year (India),"Availability of mosquito breeding site or stagnant water near the home, staying outdoors overnight. + +" +117,Chicken pox,"Use neem in bathing, consume neem leaves, take vaccine, avoid public places +",Rare -Fewer than 1 million cases per year (India),People who haven't already had chickenpox. +118,Dengue,"drink papaya leaf juice, avoid fatty spicy food, keep mosquitos away, keep hydrated +",Very rare- Fewer than 100 thousand cases per year (India),"Living or traveling in tropical areas, Prior infection with a dengue fever virus" +119,Typhoid,"eat high calorie vegetables, antibiotic therapy, consult doctor, medication +",Very rare- Fewer than 100 thousand cases per year (India),"Work in or travel to areas where typhoid fever is established, Drink contaminated water" +120,Hepatitis A,"wearing of latex gloves when handling faeces, urine, saliva, and blood.",Rare -Fewer than 1 million cases per year (India),"Travel in areas where hepatitis A is common, have a clotting-factor disorder, such as hemophilia" +121,Tuberculosis,"cover mouth, consult doctor, medication +",Common -More than 1 million cases per year (India),"AIDS, Severe kidney disease, Cancer treatment, Drugs to prevent rejection of transplanted organs" +122,Common Cold,"drink vitamin c rich drinks, take vapour, avoid cold food, keep fever in check +",Very common-More than 10 million cases per year (India),"Children younger than 6, weakened immune system, Smoking" +123,Pneumonia,"Practice good hygiene, Don't smoke, Practice a healthy lifestyle, Avoid sick people +",Very common-More than 10 million cases per year (India),"Asthma, chronic obstructive pulmonary disease (COPD) or heart disease, Smoking, weakened immunity" +124,Piles,"Avoid fatty spicy food, consume witch hazel, warm bath with Epsom salt, consume Aloe Vera juice",Very common-More than 10 million cases per year (India),Pregnancy and older age +125,Heart attack,"Eat a healthy diet, Get regular exercise, Limit alcohol, Don't smoke, Manage stress",Very common-More than 10 million cases per year (India),"Tobacco, old age, High blood cholesterol, Obesity, Diabetes, Stress, An autoimmune condition" +126,Varicose veins,"Lie down flat and raise the leg high, use ointments, use vein compressor, don't stand still for long +",Very common-More than 10 million cases per year (India),"Older age, being woman, Family history, Obesity, Standing or sitting for long periods of time." +127,Hypothyroidism,"Reduce stress, exercise, eat healthy, get proper sleep +",Very common-More than 10 million cases per year (India),"Woman, older age, family history of thyroid, autoimmune disease, Received radiation to your neck" +128,Hypoglycemia,"Lie down on side, check in pulse, drink sugary drinks. +",Common -More than 1 million cases per year (India),"Taking too much insulin, skipping a meal, or exercising harder than usual." +129,Osteoarthritis,"acetaminophen, salt baths, Keep a healthy body weight, Prevent injury to your joints. +",Very common-More than 10 million cases per year (India),"Older age, overweight, being a woman, Joint injuries, Bone deformities, certain metabolic diseases." +130,Arthritis,"Exercise, use hot and cold therapy, try acupuncture, massage +",Very common-More than 10 million cases per year (India),"Family history, Previous joint injury, older age, being woman, obesity" +131,Paroxysmal Positional Vertigo,"Lie down, avoid sudden change in body, avoid abrupt head movement, relax +",Common -More than 1 million cases per year (India),"Age 50 and older, being woman, head injury, disorder of the balance organs of your ear." +132,Acne,"Bath twice, avoid fatty spicy food, drink plenty of water, avoid too many products +",Very common-More than 10 million cases per year (India),"Being teenager, Hormonal changes, Friction or pressure on your skin, Stress, certain medicines." +133,Urinary tract infection,"Drink plenty of water, increase vitamin c intake, drink cranberry juice, take probiotics +",Very common-More than 10 million cases per year (India),"Being women, Women who use diaphragms, A suppressed immune system, Kidney stones." +134,Psoriasis,"Wash hands with warm soapy water, stop bleeding using pressure, consult doctor, salt baths +",Very common-More than 10 million cases per year (India),"Family history, Viral and bacterial infections, Obesity, Lesions, Smoking." +135,Impetigo,"Wash your hands often with soap and water, use alcohol hand rubs, Do not share personal items +",Very common-More than 10 million cases per year (India),"Diabetes, weakened immune system, children ages 2 to 5, Crowded conditions, Broken skin" +136,Swine flu,"Get vaccinated against H1N1, wash your hands often with soap, Avoid touching your eyes,nose or mouth",Rare -Fewer than 1 million cases per year (India),"Swine farmers and veterinarians, traveled to an area where many people are affected by swine flu." +137,ADHD,"protein-rich breakfast, walk to school if possible, have a quiet place to do homework.",Very common-More than 10 million cases per year (India),"Exposure to environmental toxins, family history, drug use, alcohol use or smoking during pregnancy" +138,Bird flu,"Use different utensils for cooked and raw meat, cook meat fully, avoid contact with live poultry.",Extremely rare- Fewer than 5 thousand cases per year (India),"contact with sick birds or with surfaces contaminated by their feathers, saliva or droppings" +139,Chikungunya,"Prevent mosquito bites, Use insect repellent, wear long-sleeved shirts and pants.",Extremely rare- Fewer than 5 thousand cases per year (India),"Older age, people with underlying medical conditions, such as hypertension, diabetes, or heart disease." +140,Cholera,"Drink safe water, Wash your hands often with soap, Use toilets, use safe water for cooking.",Extremely rare- Fewer than 5 thousand cases per year (India),"Poor sanitary conditions, Reduced or nonexistent stomach acid, Type O blood, undercooked shellfish." +141,Depression,"Handle stress, improve your self-esteem, Get enough sleep, eat well, and exercise regularly",Very common-More than 10 million cases per year (India),"Certain traits, Traumatic events, family history, alcoholism or suicide, intersex, chronic illness" +142,Epilepsy,"Take frequent breaks, drink lots of water, Wear protective clothing, Avoid busy streets when riding",Common -More than 1 million cases per year (India),"Family history, Family history, Stroke and other vascular diseases, Dementia, Brain infections." +143,Gonorrhoea,"Use condom during sexual intercourse, have sexually monogamous partner with no infection.",Very common-More than 10 million cases per year (India),"Having a sex partner with multiple partners, Having multiple sex partners, Having had another STD" +144,Gout,"Limit the intake of alcohol, fat, lose weight, Eat more complex carbohydrates, drink lots of water.",Very common-More than 10 million cases per year (India),"High levels of uric acid, Alcohol consumption, Obesity, high BP, chronic condition, being man." +145,Thyroid,"Avoid smoking, drink plenty water, Eat selenium, tyrosine, and antioxidants rich food.",Very common-More than 10 million cases per year (India),"Woman who’s had menopause, Had prolonged, calcium, vitamin D deficiency, Had radiation treatment." +146,Herpes,"Always use condoms and dental dams during oral, anal, and vaginal sex.",Very common-More than 10 million cases per year (India),"Having multiple sexual partners, being woman, having sex during a herpes outbreak." +147,Insomnia,"Avoid caffeine, alcohol late in the day, exercise regularly, Make your sleep place comfortable.",Very common-More than 10 million cases per year (India),"Older age, being woman, during menopause, menstrual cycle or pregnancy,stress,mental health disorder" +148,Conjunctivitis,"Avoid touching your eyes with unwashed hands, Do not share items used by an infected person.",Very rare- Fewer than 100 thousand cases per year (India),"Using contact lenses, Exposure to something for which you have an allergy." +149,Kidney stones,"Stay hydrated, Eat more calcium-rich foods and Eat less sodium, oxalate-rich foods, animal protein.",Common -More than 1 million cases per year (India),"Dehydration, family history, Digestive diseases, obesity, diet high in protein, sodium and sugar" +150,PCOS,"Maintain a healthy weight, Limit carbohydrates, Be active, Exercise regularly.",Common -More than 1 million cases per year (India),"Diabetes, High blood pressure, Unhealthy cholesterol, Depression and anxiety." +151,Rabies,"Vaccinate dogs and cats against rabies, Do not keep wild animals as pets, Leave stray animals alone.",Very rare- Fewer than 100 thousand cases per year (India),"Travelling where rabies is common, Activities that put you in contact with wild animals." +152,Schizophrenia,"Don't use street drugs, and moderate any use of alcohol, Avoid social isolation.",Common -More than 1 million cases per year (India),"Family history, birth complications, drugs during teen years and young adulthood." +153,Diphtheria,Prevent contact with infected persons.,Very rare- Fewer than 100 thousand cases per year (India),"People living in unsanitary conditions, anyone who tours where diphtheria infections are more common" +154,E. coli Infection,"Wash hands, cutting boards, utensils after they touch raw meat. Avoid raw milk, unpasteurized dairy",Very rare- Fewer than 100 thousand cases per year (India),"Weakened immune systems, Eating certain types of food, being non vegetarian." +155,Giardiasis,"Practice good hygiene, Avoid contaminated water,eating contaminated food, Prevent contact with feces",Rare -Fewer than 1 million cases per year (India),"Children, People without access to safe drinking water, rural or wilderness areas" +156,Lyme disease,"Use insect repellents, tick-proof your yard, Check your clothing, your children and pets for ticks",Extremely rare- Fewer than 5 thousand cases per year (India),"Spending time in wooded or grassy areas, Not removing ticks promptly or properly" +157,Measles,"Practice good hand hygiene, Don’t share personal items with people who may be ill, get vaccinated",Extremely rare- Fewer than 5 thousand cases per year (India),"Being unvaccinated, Having a vitamin A deficiency, travelling to places where measles is common" +158,Meningitis,"Cover your mouth when coughing or sneezing, Clean your hands before eating, do not contact ill person",Extremely rare- Fewer than 5 thousand cases per year (India),"Skipping vaccinations, pregnant women, weak immune system, AIDS, alcoholism, diabetes, using drugs" +159,Mumps,"Cover your mouth when coughing or sneezing, Clean your hands before eating, do not contact ill person",Very rare- Fewer than 100 thousand cases per year (India),"Being unvaccinated, travelling to places where mumps is common, contact of ill person" +160,Polio,"Getting vaccinated,",Extremely rare- Fewer than 5 thousand cases per year (India),"Children younger than 5, unvaccinated individuals" +161,Rubella,"Getting vaccinated, do not contact ill person",Very rare- Fewer than 100 thousand cases per year (India),"Contact with infected patient, not vaccinated, Overcrowding, Poor immune system, Medical personnel." +162,Tetanus,"Control bleeding, Keep the wound clean, Use antibiotics, Cover the wound, Change the dressing",Extremely rare- Fewer than 5 thousand cases per year (India),"Injecting drugs, Gunshot wounds, fractures, Animal or insect bites, foot ulcers, surgical wounds" +163,Whooping cough,"Getting vaccinated,",Rare -Fewer than 1 million cases per year (India),"Being unvaccinated, travelling to places where whooping cough is common, contact of ill person" +164,Yellow fever,"Prevent mosquito bites Use insect repellent, wear protective clothing, and get vaccinated before traveling",Extremely rare- Fewer than 5 thousand cases per year (India),If you travel to an area where mosquitoes continue to carry the yellow fever virus. +165,Anthrax,"Avoid touching a contaminated surface, avoid contact of ill person, prevent animal bites.",Extremely rare- Fewer than 5 thousand cases per year (India),"Handle animal skins, furs, Work with anthrax in a laboratory, Inject illegal drugs." +166,Chlamydia,"Use condom during sexual intercourse, have sexually monogamous partner with no infection.",Common -More than 1 million cases per year (India),"Having a sex partner with multiple partners, Having multiple sex partners, Having had another STD" +167,Leprosy,Early diagnosis and treatment of people who are infected.,Very rare- Fewer than 100 thousand cases per year (India),"Living in an endemic region, contact of person suffering from leprosy" +168,Phthiriasis,Do not use infected person's personal items,Rare -Fewer than 1 million cases per year (India),If in sexual contact with person with pubic lice. +169,Salmonella,"Avoid eating raw eggs, undercooked meat, Refrigerate food properly, wash hands after contacting meat",Common -More than 1 million cases per year (India),"Owning a pet bird or reptile, Inflammatory bowel disease, AIDS, Sickle cell disease, Malaria." +170,Smallpox,"Getting vaccinated, do not contact ill person",Extremely rare- Fewer than 5 thousand cases per year (India),"Being unvaccinated, contact with person suffering from small pox" +171,Vaginosis,"Avoid over-washing, Avoid using strong detergent for underwear, Change your tampons or pads frequently.",Very common-More than 10 million cases per year (India),"Having multiple sex partners, Natural lack of lactobacilli bacteria, Douching." +172,Zika,"Prevent mosquito bites, using condoms, use insect repellents, wear protective clothing while travelling",Extremely rare- Fewer than 5 thousand cases per year (India),"Living or traveling in countries where there have been outbreaks, Having unprotected sex." +173,Stroke,"healthy diet, exercise regularly, and avoid smoking and drinking too much alcohol.",Common -More than 1 million cases per year (India),"Obesity, Heavy drinking, Use of illegal drugs, High BP, Cigarette smoking, High cholesterol" +174,Cystic fibrosis,"Appropriate hand hygiene, build up immunity",Rare -Fewer than 1 million cases per year (India),"Family history, it is most common in white people." +175,Autism,"Live healthy. Have regular check-ups, eat well-balanced meals, and exercise.",Common -More than 1 million cases per year (India),"Family history, being a boy, Other disorders, Extremely preterm babies, older parents at birth of child" +176,Eczema,"Establish a skin care routine, Use mild soap, use gloves if job requires hands in water",Very common-More than 10 million cases per year (India),"Family history of eczema, allergies, hay fever or asthma." +177,Down syndrome,No precaution,Common -More than 1 million cases per year (India),Family history +178,Fibromyalgia,"Get adequate sleep, Reduce emotional and mental stress, Get regular exercise, Eat a balanced diet.",Very common-More than 10 million cases per year (India),"Family history, being woman, osteoarthritis, rheumatoid arthritis or lupus" +179,Muscular dystrophy,"Exercise, Braces, Mobility aids, Breathing assistance, swimming.",Rare -Fewer than 1 million cases per year (India),Family history +180,Adenomyosis,No precaution,Common -More than 1 million cases per year (India),"Prior uterine surgery, such as a C-section or fibroid removal, Childbirth, Middle age" +181,Sickle cell anemia,"Take folic acid supplements daily, healthy diet. Drink plenty of water. Avoid temperature extremes.",Rare -Fewer than 1 million cases per year (India),If both parents carry a sickle cell gene. +182,scleroderma,"Frequently massage skin, avoid soaps that dry skin, keep skin moist by use of moisturizing lotions",Rare -Fewer than 1 million cases per year (India),"Genetics, being woman, Immune system problems, Environmental triggers." +183,Thrombocythemia,No precaution,Rare -Fewer than 1 million cases per year (India),"High blood cholesterol, high blood pressure, diabetes, and smoking." +184,Alzheimer's,"Stopping smoking, keeping alcohol to a minimum, eating a healthy, balanced diet, exercising",Common -More than 1 million cases per year (India),"Lack of exercise, Obesity, Smoking, High BP, High cholesterol, Poorly controlled diabetes, family history" +185,Cerebral palsy,"Making sure child is vaccinated,Using proper car seat, Using crib with bed rail, Never shake a baby.",Common -More than 1 million cases per year (India),"Low birth weight, severe or untreated jaundice, Premature birth, Viral encephalitis, Toxoplasmosis" +186,Anemia,"consuming iron-rich foods such as fish, poultry, eggs, meat, peas, beans, lentils, and potatoes.",Very common-More than 10 million cases per year (India),"Family history, A diet lacking in certain vitamins and minerals, Intestinal disorders, Pregnancy." +187,Ankylosing spondylitis,"Avoid Alcohol, Get Plenty of Calcium and Vitamin D, Practice Good Posture, exercise",Common -More than 1 million cases per year (India),"Late adolescence or early adulthood, being man, family history" +188,Lupus,"Limit direct sunlight, Get enough sleep, manage stress, Stay away from people who are sick.",Common -More than 1 million cases per year (India),"Men, Blacks,Latinos and Asian Americans are more likely to have lupus nephritis than whites." +189,Multiple sclerosis,No precaution,Rare -Fewer than 1 million cases per year (India),"Family history, being woman, Smoking, Vitamin D deficiency, diabetes, inflammatory bowel disease" +190,Ascariasis,"Avoid ingesting soil that may be contaminated with human or pig feces, washing hands before food",Very common-More than 10 million cases per year (India),"Children likely to play in dirt, Poor sanitation." +191,Amnesia,"Avoid heavy use of alcohol, drugs, Stay mentally active, exercise, use protective gear while playing",Very common-More than 10 million cases per year (India),"Brain surgery, head injury or trauma, Stroke, Alcohol abuse, Seizures" +192,Anxiety disorders,"Avoid coffee, tea, cola and chocolate, xercise daily and eat a healthy, balanced diet.",Very common-More than 10 million cases per year (India),"Trauma, Stress due to an illness, Other mental health disorders, family history" +193,Bladder stones,"Drink plenty of fluids, especially water.",Common -More than 1 million cases per year (India),"Nerve damage. Stroke, spinal cord injuries, Parkinson's disease, diabetes, being man" +194,Breast cysts,No precaution,Common -More than 1 million cases per year (India),Having HRT can increase the risk of developing new cysts. +195,Bronchitis,"Don't smoke, Wash your hands frequently, wear mask in a large crowd, Avoid contacting ill people",Very common-More than 10 million cases per year (India),"Cigarette smoke, Gastric reflux, Exposure to irritants on the job, weak immunity." +196,Cirrhosis,"Don't abuse alcohol,Avoid high-risk sexual behavior,Get vaccinated against hepatitis B,low-fat diet.",Common -More than 1 million cases per year (India),"Excessive alcohol consumption, Having viral hepatitis, obesity." +197,Dementia,"Balanced diet, exercising regularly, stopping smoking, keeping alcohol within recommended limits.",Very common-More than 10 million cases per year (India),"Depression, smoking, Diabetes, Sleep apnea, Down syndrome, Family history, Heavy alcohol use" +198,Gallstones,"Eat more food that is high in fiber, fewer refined carbohydrates, less sugar, Avoid unhealthy fat",Very common-More than 10 million cases per year (India),"Sickle cell anemia or leukemia, Family history, being woman, diabetes, Being pregnant." +199,Gastritis,"Avoid known trigger foods, quit smoking, manage stress, avoiding alcohol, maintain healthy weight.",Common -More than 1 million cases per year (India),"Excessive alcohol use, Stress, Older age, Bacterial infection, vitamin B-12 deficiency." +1100,Iritis,"Protecting the eye from injury, avoid exposure of eye to infections, foods rich in vitamins C and E.",Rare -Fewer than 1 million cases per year (India),"Develop a sexually transmitted infection, Smoke tobacco, Have a specific genetic alteration." diff --git a/Symptoms_Detection/final_dataset_llms.csv b/Symptoms_Detection/final_dataset_llms.csv new file mode 100644 index 0000000000000000000000000000000000000000..ccf9b4f13c83b2e1c57266388340c68c3ee52ddd --- /dev/null +++ b/Symptoms_Detection/final_dataset_llms.csv @@ -0,0 +1,6121 @@ +,label,text,cleaned_text +0,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +3,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +4,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +5,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +6,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +7,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +8,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +9,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +10,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +11,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +12,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +13,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +14,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +15,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +16,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +17,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +18,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +19,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +20,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +21,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +22,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +23,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +24,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +25,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +26,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +27,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +28,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +29,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +30,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +31,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +32,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +33,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +34,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +35,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +36,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +37,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +38,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +39,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +40,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +41,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +42,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +43,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +44,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +45,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +46,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +47,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +48,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +49,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +50,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +51,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +52,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +53,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +54,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +55,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +56,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +57,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +58,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +59,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +60,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +61,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +62,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +63,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +64,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +65,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +66,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +67,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +68,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +69,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +70,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +71,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +72,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +73,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +74,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +75,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +76,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +77,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +78,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +79,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +80,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +81,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +82,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +83,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +84,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +85,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +86,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +87,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +88,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +89,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +90,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +91,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +92,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +93,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +94,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +95,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +96,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +97,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +98,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +99,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +100,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +101,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +102,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +103,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +104,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +105,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +106,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +107,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +108,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +109,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +110,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +111,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +112,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +113,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +114,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +115,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +116,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +117,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +118,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +119,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +120,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +121,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +122,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +123,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +124,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +125,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +126,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +127,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +128,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +129,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +130,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +131,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +132,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +133,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +134,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +135,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +136,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +137,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +138,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +139,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +140,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +141,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +142,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +143,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +144,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +145,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +146,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +147,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +148,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +149,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +150,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +151,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +152,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +153,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +154,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +155,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +156,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +157,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +158,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +159,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +160,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +161,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +162,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +163,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +164,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +165,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +166,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +167,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +168,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +169,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +170,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +171,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +172,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +173,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +174,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +175,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +176,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +177,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +178,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +179,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +180,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +181,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +182,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +183,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +184,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +185,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +186,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +187,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +188,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +189,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +190,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +191,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +192,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +193,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +194,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +195,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +196,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +197,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +198,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +199,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +200,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +201,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +202,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +203,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +204,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +205,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +206,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +207,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +208,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +209,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +210,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +211,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +212,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +213,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +214,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +215,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +216,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +217,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +218,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +221,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +222,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +223,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +224,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +225,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +226,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +227,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +228,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +229,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +230,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +231,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +232,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +233,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +234,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +235,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +236,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +237,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +238,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +239,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +240,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +241,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +242,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +243,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +244,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +245,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +246,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +248,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +249,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +250,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +251,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +252,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +253,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +254,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +255,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +256,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +257,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +258,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +259,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +260,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +261,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +262,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +263,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +264,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +265,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +266,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +267,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +268,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +269,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +270,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +271,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +272,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +273,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +274,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +275,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +276,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +277,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +278,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +279,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +280,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +281,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +282,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +283,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +284,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +285,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +286,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +287,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +288,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +289,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +290,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +291,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +292,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +293,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +294,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +295,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +296,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +297,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +298,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +299,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +300,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +301,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +302,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +303,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +304,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +305,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +306,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +307,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +308,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +309,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +310,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +312,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +313,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +314,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +315,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +316,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +317,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +318,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +319,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +320,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +321,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +322,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +323,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +324,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +325,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +326,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +327,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +328,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +329,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +330,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +331,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +332,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +333,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +334,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +335,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +336,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +337,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +339,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +340,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +341,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +342,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +343,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +344,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +345,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +346,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +347,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +348,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +349,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +350,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +351,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +352,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +353,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +354,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +355,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +357,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +358,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +359,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +360,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +361,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +362,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +363,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +364,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +365,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +366,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +367,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +368,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +369,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +370,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +371,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +372,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +373,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +374,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +375,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +376,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +377,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +378,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +379,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +380,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +381,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +382,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +383,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +384,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +385,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +386,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +387,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +388,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +389,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +390,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +391,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +392,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +393,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +394,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +395,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +396,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +397,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +398,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +399,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +400,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +401,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +402,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +403,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +404,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +405,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +406,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +407,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +408,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +409,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +410,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +411,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +412,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +413,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +414,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +415,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +416,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +417,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +418,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +419,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +420,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +421,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +422,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +423,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +424,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +425,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +426,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +427,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +428,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +431,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +432,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +433,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +434,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +435,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +436,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +437,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +438,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +439,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +440,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +441,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +442,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +443,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +444,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +445,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +446,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +448,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +449,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +450,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +451,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +452,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +453,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +454,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +455,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +456,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +457,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +458,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +459,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +460,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +461,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +462,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +463,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +464,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +466,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +467,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +468,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +469,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +470,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +471,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +472,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +473,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +474,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +476,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +477,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +478,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +479,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +480,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +481,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +482,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +483,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +484,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +485,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +486,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +487,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +488,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +489,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +490,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +491,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +492,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +493,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +494,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +495,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +496,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +497,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +498,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +499,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +500,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +501,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +502,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +503,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +504,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +505,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +506,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +507,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +508,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +509,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +510,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +511,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +512,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +513,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +514,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +515,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +516,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +517,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +518,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +519,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +520,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +521,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +522,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +523,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +524,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +525,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +526,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +527,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +528,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +529,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +530,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +531,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +532,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +533,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +534,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +535,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +536,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +537,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +538,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +539,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +540,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +541,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +542,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +543,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +544,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +545,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +546,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +547,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +548,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +549,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +550,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +551,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +552,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +553,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +554,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +555,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +556,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +557,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +558,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +559,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +560,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +561,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +562,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +563,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +564,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +565,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +566,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +567,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +568,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +569,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +570,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +571,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +572,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +573,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +574,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +575,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +576,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +577,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +578,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +579,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +580,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +581,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +582,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +583,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +584,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +585,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +586,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +587,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +588,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +589,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +590,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +591,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +592,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +593,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +594,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +595,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +596,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +597,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +598,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +599,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +600,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +601,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +602,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +603,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +604,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +605,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +606,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +607,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +608,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +609,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +610,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +611,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +612,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +613,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +614,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +615,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +616,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +617,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +618,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +619,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +620,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +621,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +622,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +623,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +624,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +625,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +626,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +627,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +628,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +631,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +632,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +633,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +634,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +635,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +636,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +637,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +638,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +639,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +640,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +641,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +642,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +643,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +644,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +645,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +646,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +648,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +649,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +650,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +651,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +652,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +653,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +654,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +655,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +656,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +658,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +659,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +660,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +661,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +662,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +663,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +664,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +665,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +666,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +667,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +668,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +669,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +670,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +671,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +672,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +673,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +674,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +675,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +676,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +677,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +678,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +679,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +680,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +681,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +682,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +683,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +684,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +685,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +686,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +687,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +688,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +689,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +690,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +691,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +692,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +693,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +694,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +695,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +696,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +697,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +698,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +699,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +700,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +701,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +702,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +703,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +704,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +705,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +706,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +707,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +708,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +709,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +710,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +711,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +712,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +713,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +714,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +715,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +716,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +717,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +718,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +719,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +720,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +722,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +723,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +724,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +725,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +726,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +727,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +728,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +729,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +730,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +731,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +732,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +733,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +734,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +735,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +736,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +737,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +739,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +740,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +741,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +742,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +743,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +744,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +745,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +746,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +747,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +749,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +750,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +751,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +752,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +753,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +754,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +755,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +756,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +757,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +758,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +759,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +760,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +761,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +762,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +763,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +764,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +765,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +767,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +768,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +769,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +770,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +771,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +772,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +773,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +774,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +775,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +776,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +777,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +778,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +779,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +780,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +781,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +782,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +783,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +784,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +785,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +786,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +787,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +788,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +789,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +790,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +791,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +792,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +793,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +794,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +795,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +796,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +797,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +798,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +799,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +800,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +801,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +802,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +803,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +804,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +805,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +806,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +807,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +808,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +809,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +810,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +811,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +812,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +813,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +814,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +815,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +816,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +817,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +818,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +819,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +820,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +821,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +822,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +823,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +824,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +825,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +826,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +827,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +828,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +831,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +832,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +833,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +834,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +835,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +836,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +837,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +838,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +841,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +842,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +843,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +844,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +845,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +846,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +847,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +848,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +849,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +850,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +851,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +852,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +853,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +854,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +855,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +856,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +858,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +859,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +860,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +861,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +862,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +863,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +864,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +865,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +866,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +867,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +868,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +869,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +870,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +871,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +872,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +873,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +874,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +876,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +877,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +878,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +879,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +880,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +881,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +882,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +883,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +884,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +886,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +887,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +888,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +889,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +890,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +891,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +892,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +893,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +894,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +895,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +896,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +897,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +898,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +899,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +900,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +901,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +902,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +903,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +904,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +905,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +906,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +907,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +908,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +909,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +910,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +911,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +912,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +913,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +914,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +915,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +916,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +917,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +918,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +919,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +920,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +921,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +922,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +923,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +924,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +925,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +926,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +927,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +928,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +929,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +930,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +931,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +932,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +933,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +934,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +935,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +936,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +937,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +938,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +939,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +940,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +941,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +942,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +943,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +944,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +945,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +946,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +947,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +948,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +949,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +950,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +951,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +952,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +953,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +954,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +955,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +956,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +957,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +958,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +959,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +960,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +961,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +962,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +963,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +964,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +965,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +966,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +967,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +968,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +969,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +970,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +971,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +972,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +973,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +974,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +975,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +976,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +977,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +978,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +979,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +980,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +981,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +982,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +983,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +984,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +985,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +986,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +987,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +988,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +989,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +990,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +991,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +992,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +993,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +994,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +995,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +996,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +997,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +998,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +999,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1000,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1001,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1002,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1003,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1004,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1005,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1006,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1007,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1008,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1009,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1010,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1011,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1012,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1013,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1014,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1015,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1016,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1017,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1018,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1019,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1020,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1021,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1022,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1023,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1024,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1025,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1026,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1027,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1028,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1029,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1030,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1031,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1032,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1033,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1034,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1035,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1036,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1037,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1038,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1041,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1042,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1043,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1044,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1045,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1046,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1047,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1048,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1049,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1050,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1051,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1052,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1053,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1054,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1055,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1056,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1058,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1059,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1060,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1061,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1062,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1063,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1064,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1065,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1066,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1067,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1068,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1069,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1070,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1071,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1072,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1073,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1074,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1075,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1076,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1077,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1078,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1079,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1080,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1081,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1082,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1083,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1084,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1085,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1086,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1087,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1088,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1089,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1090,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1091,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1092,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1093,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1094,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1095,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1096,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1097,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1098,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1099,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1100,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1101,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1102,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1103,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1104,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1105,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1106,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1107,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1108,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1109,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1110,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1111,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1112,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1113,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1114,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1115,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1116,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1117,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1118,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1119,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1120,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1121,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1122,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1123,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1124,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1125,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1126,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1127,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1128,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1129,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1130,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1132,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1133,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1134,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1135,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1136,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1137,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1138,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1139,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1140,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1141,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1142,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1143,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1144,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1145,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1146,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1147,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1149,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1150,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1151,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1152,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1153,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1154,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1155,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1156,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1157,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1158,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1159,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1160,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1161,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1162,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1163,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1164,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1165,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1166,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1167,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1168,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1169,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1170,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1171,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1172,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1173,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1174,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1175,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1177,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1178,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1179,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1180,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1181,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1182,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +1183,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +1184,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +1185,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1186,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +1187,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +1188,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1189,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1190,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1191,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1192,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +1193,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1194,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1195,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1196,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1197,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1198,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1199,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1200,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1201,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1202,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1203,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +1204,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1205,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +1206,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1207,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1208,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1209,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1210,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1211,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1212,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1213,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1214,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +1215,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +1216,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +1217,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +1218,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1219,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1220,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1221,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1222,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +1223,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1224,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1225,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +1226,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +1227,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +1228,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1229,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1230,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1231,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1232,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1233,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1234,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1235,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1236,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1237,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1238,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1241,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1242,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1243,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1244,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1245,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1246,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1247,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1248,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1249,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1250,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +1251,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1252,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1253,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1254,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +1255,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +1256,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +1257,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1258,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1259,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1260,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1261,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1262,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1263,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +1264,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +1265,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +1266,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +1267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +1268,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1269,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1270,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +1271,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1272,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1273,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1274,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1275,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +1276,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1277,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1278,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1279,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1280,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1281,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1282,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1283,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1284,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +1286,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +1287,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +1288,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1289,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1290,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1291,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1292,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1293,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +1294,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1295,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1296,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1297,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1298,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1299,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1300,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1301,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1302,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1303,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1304,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1305,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1306,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1307,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +1308,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +1309,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +1310,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1311,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1312,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1313,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1314,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1315,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +1316,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1317,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1318,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1319,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1320,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1321,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1322,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1323,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +1324,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +1325,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +1326,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +1327,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1328,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1329,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1330,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1331,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1332,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1333,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1334,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +1335,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +1336,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1337,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1338,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1339,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1340,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1341,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1342,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1343,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1344,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1345,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +1346,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +1347,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +1348,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +1349,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +1350,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1351,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1352,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1353,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1354,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +1355,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +1356,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +1357,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1358,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1359,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1360,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1361,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1362,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1363,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1364,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1365,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +1366,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1367,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1368,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1369,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1370,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1371,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1372,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1373,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1374,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1375,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +1376,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +1377,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +1378,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +1379,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +1380,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1381,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1382,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1383,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1384,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1385,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +1386,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +1387,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +1388,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +1389,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1390,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1391,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1392,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1393,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1394,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1395,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1396,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1397,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +1398,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +1399,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +1400,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +1401,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +1402,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +1403,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1404,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1405,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1406,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1407,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1408,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1409,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1410,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1411,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1412,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1413,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1414,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1415,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1416,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1417,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1418,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1419,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1420,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1421,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1422,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1423,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1424,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1425,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1426,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1427,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1428,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1429,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1430,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1431,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1432,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1433,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1434,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1435,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1436,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1437,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1438,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1439,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1440,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1441,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1442,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1443,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1444,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1445,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1446,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1447,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1448,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1451,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1452,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1453,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1454,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1455,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1456,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1457,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1458,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1459,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1460,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1461,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1462,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1463,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1464,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1465,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1466,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1468,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1469,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1470,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1471,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1472,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1473,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1474,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1475,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1476,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1477,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1478,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1479,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1480,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1481,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1482,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1483,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1484,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1485,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1486,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1487,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1488,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1489,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1490,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1491,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1492,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1493,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1494,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1495,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1496,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1497,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1498,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1499,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1500,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1501,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1502,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1503,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1504,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1505,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1506,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1507,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1508,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1509,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1510,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1511,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1512,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1513,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1514,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1515,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1516,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1517,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1518,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1519,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1520,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1521,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1522,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1523,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1524,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1525,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1526,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1527,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1528,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1529,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1530,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1532,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1533,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1534,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1535,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1536,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1537,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1538,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1539,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1540,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1542,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1543,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1544,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1545,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1546,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1547,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1548,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1549,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1550,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1551,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1552,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1553,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1554,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1555,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1556,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1557,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1559,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1560,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1561,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1562,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1563,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1564,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1565,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1566,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1567,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1568,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1569,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1570,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1571,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1572,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1573,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1574,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1575,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1577,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1578,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1579,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1580,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1581,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1582,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1583,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1584,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1585,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1587,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1588,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1589,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1590,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1591,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1592,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +1593,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +1594,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +1595,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1596,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +1597,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +1598,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1599,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1600,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1601,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1602,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +1603,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1604,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1605,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1606,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1607,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1608,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1609,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1610,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1611,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1612,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1613,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +1614,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1615,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +1616,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1617,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1618,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1619,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1620,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1621,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1622,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1623,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1624,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +1625,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +1626,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +1627,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +1628,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1629,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1630,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1631,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1632,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +1633,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1634,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1635,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +1636,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +1637,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +1638,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1639,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1640,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1641,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1642,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1643,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1644,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1645,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1646,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1647,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1648,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1651,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1652,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1653,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1654,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1655,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1656,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1657,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1658,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1659,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1660,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +1661,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1662,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1663,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1664,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +1665,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +1666,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +1667,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1668,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1669,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1670,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1671,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1672,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1673,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +1674,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +1675,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +1676,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +1677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +1678,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1679,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1680,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +1681,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1682,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1683,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1684,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1685,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +1686,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1687,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1688,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1689,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1690,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1691,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1692,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1693,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1694,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +1696,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +1697,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +1698,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1699,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1700,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1701,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1702,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1703,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +1704,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1705,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1706,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1707,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1708,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1709,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1710,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1711,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1712,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1713,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1714,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1715,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1716,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1717,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +1718,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +1719,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +1720,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1721,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1722,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1723,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1724,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1725,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +1726,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1727,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1728,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1729,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1730,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1731,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1732,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1733,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +1734,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +1735,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +1736,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +1737,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1738,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1739,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1740,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1741,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1742,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1743,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1744,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +1745,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +1746,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1747,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1748,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1749,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1750,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1751,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1752,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1753,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1754,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1755,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +1756,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +1757,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +1758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +1759,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +1760,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1761,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1762,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1763,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1764,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +1765,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +1766,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +1767,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1768,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1769,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1770,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1771,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1772,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1773,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1774,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1775,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +1776,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1777,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1778,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1779,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1780,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1781,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1782,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1783,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1784,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1785,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +1786,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +1787,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +1788,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +1789,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +1790,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1791,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1792,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1793,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1794,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1795,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +1796,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +1797,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +1798,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +1799,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1800,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1801,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1802,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1803,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1804,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1805,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1806,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1807,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +1808,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +1809,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +1810,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +1811,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +1812,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +1813,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1814,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1815,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1816,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1817,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1818,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1819,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1820,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1821,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1822,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1823,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1824,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1825,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1826,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1827,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1828,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1829,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1830,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1831,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1832,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1833,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1834,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1835,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1836,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1837,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1838,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1839,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1840,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1841,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1842,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1843,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1844,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1845,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1846,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1847,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1848,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1851,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1852,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1853,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1854,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1855,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1856,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1857,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1858,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1861,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1862,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1863,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1864,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1865,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1866,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1867,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1868,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1869,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1870,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1871,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1872,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1873,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1874,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1875,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1876,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1878,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1879,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1880,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1881,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1882,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1883,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1884,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1885,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1886,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1887,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1888,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1889,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1890,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1891,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1892,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1893,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1894,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1895,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1896,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1897,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1898,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1899,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1900,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1901,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1902,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1903,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1904,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1905,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1906,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1907,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1908,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1909,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1910,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1911,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1912,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1913,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1914,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1915,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1916,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1917,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1918,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1919,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1920,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1921,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1922,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1923,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1924,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1925,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1926,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1927,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1928,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1929,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1930,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1931,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1932,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1933,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1934,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1935,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1936,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1937,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1938,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1939,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1940,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1942,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1943,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1944,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1945,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1946,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1947,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1948,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1949,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1950,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1951,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1952,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1953,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1954,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1955,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1956,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1957,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1958,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1959,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1960,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1961,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1962,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1963,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1964,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1965,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1966,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1967,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1969,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1970,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1971,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1972,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1973,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1974,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1975,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1976,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1977,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1978,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1979,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1980,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1981,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1982,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1983,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1984,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1985,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1987,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1988,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1989,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1990,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1991,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1992,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1993,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1994,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1995,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1996,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1997,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1998,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1999,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2000,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2001,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2002,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +2003,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +2004,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +2005,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2006,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +2007,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +2008,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2009,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2010,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2011,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2012,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +2013,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2014,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2015,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2016,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2017,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2018,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2019,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2020,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2021,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2022,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2023,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +2024,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2025,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +2026,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2027,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2028,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2029,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2030,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2031,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2032,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2033,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2034,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +2035,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +2036,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +2037,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +2038,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2039,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2040,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2041,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2042,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +2043,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2044,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2045,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +2046,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +2047,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +2048,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2049,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2050,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2051,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2052,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +2053,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +2054,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +2055,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2056,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +2057,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +2058,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +2059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2061,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +2062,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +2063,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +2064,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +2065,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +2066,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +2067,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +2068,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +2069,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2070,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2071,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +2072,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +2073,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +2074,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +2075,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +2076,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +2077,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +2078,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +2079,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +2080,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2081,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2082,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2083,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +2084,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +2085,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +2086,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +2087,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +2088,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2089,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2090,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2091,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +2092,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +2093,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +2094,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +2095,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +2096,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +2097,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +2098,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +2099,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +2100,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +2101,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +2102,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2103,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +2104,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +2105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +2106,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +2107,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +2108,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2109,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2110,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2111,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +2112,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +2113,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +2114,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +2115,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2116,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2117,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +2118,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +2119,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +2120,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2121,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2122,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2123,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2124,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2125,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2126,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2127,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +2128,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +2129,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +2130,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2131,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2132,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +2133,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +2134,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +2135,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +2136,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2137,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +2138,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +2139,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +2140,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2141,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +2142,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +2143,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +2144,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +2145,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +2146,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +2147,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2148,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +2149,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +2150,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2151,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +2152,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +2153,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +2154,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +2155,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +2156,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2157,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +2158,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +2159,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +2160,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2161,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2162,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2163,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2164,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2165,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +2166,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +2167,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +2168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +2169,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +2170,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2171,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2172,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +2173,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +2174,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +2175,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +2176,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +2177,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2178,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +2179,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +2180,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2181,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2182,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +2183,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +2184,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +2185,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +2186,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2187,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +2188,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +2189,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +2190,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2191,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2192,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2193,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2194,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2195,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +2196,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +2197,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +2198,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +2199,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +2200,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +2201,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2202,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2203,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2204,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2205,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +2206,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +2207,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +2208,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +2209,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +2210,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2211,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2212,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2213,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2214,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2215,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2216,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2217,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +2218,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +2219,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +2220,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +2221,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +2222,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +2223,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2224,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2225,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2226,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2227,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2228,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2229,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2230,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2231,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2232,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2233,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +2234,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +2235,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +2236,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +2237,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2238,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2239,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2240,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2241,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2242,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2243,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2244,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2245,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2246,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2247,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2248,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +2249,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +2250,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2251,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2252,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2253,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2254,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2255,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2256,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2257,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2258,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +2261,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2262,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2263,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +2264,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +2265,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +2266,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +2267,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +2268,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2269,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2270,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2271,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2272,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2273,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2274,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2275,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2276,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +2277,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +2278,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +2279,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +2280,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +2281,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2282,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2283,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2284,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2285,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2286,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2288,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2289,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2290,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2291,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2292,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2293,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2294,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2295,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +2296,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +2297,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +2298,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +2299,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2300,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2301,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2302,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2303,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2304,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2305,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2306,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2307,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2308,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2309,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2310,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2311,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2312,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2313,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2314,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2315,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2316,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2317,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2318,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2319,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2320,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +2321,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2322,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2323,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2324,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2325,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2326,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2327,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2328,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2329,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +2330,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2331,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2332,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2333,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +2334,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +2335,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +2336,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +2337,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +2338,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2339,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2340,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2341,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2342,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +2343,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +2344,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +2345,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +2346,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2347,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +2348,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +2349,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +2350,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2352,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2353,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2354,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2355,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +2356,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +2357,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +2358,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +2359,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +2360,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2361,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2362,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2363,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2364,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2365,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2366,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2367,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2368,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2369,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2370,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2371,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2372,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2373,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2374,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2375,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2376,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2377,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2379,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +2380,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +2381,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2382,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2383,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2384,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2385,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2386,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2387,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2388,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2389,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2390,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2391,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2392,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2393,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +2394,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +2395,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +2396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +2397,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +2398,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2399,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2400,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2401,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2402,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +2403,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +2404,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +2405,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +2406,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2407,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +2408,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2409,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2410,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2411,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2412,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +2413,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +2414,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +2415,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2416,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +2417,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +2418,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2419,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2420,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2421,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2422,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +2423,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2424,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2425,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2426,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2427,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2428,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2429,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2430,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2431,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2432,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2433,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +2434,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2435,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +2436,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2437,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2438,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2439,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2440,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2441,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2442,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2443,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2444,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +2445,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +2446,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +2447,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +2448,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2449,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2450,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2451,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2452,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +2453,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2454,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2455,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +2456,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +2457,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +2458,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2459,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2460,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2461,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2462,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2463,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2464,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2466,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2467,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2468,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2469,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2470,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2471,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2472,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2473,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2474,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2475,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2476,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2477,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2478,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2479,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2480,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2481,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2482,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2483,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2484,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2485,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2486,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2487,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2488,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2489,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2490,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2491,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2492,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2493,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2494,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2495,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2496,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2497,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2498,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2499,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2500,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2501,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2502,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2503,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2504,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2505,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2506,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2507,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2508,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2509,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2510,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2511,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2512,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2513,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2514,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2515,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2516,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2517,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2518,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2519,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2520,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2521,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2522,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2523,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2524,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2525,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2526,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2527,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2528,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2529,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2530,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2532,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2533,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2534,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2535,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2536,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2537,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2538,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2539,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2540,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2541,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2542,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2543,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2544,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2545,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2546,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2547,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2548,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2549,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2550,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2551,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2552,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2553,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2554,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2555,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2556,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2557,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2558,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2559,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2560,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2561,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2562,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2563,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2564,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2565,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2566,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2567,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2568,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2569,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2570,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2571,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2572,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2573,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2574,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2575,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2577,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2578,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2579,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2580,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2581,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2582,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2583,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2584,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2585,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2586,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2587,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2588,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2589,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2590,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2591,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2592,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2593,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2594,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2595,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2596,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2597,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2598,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2599,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2600,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2601,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2602,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2603,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2604,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2605,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2606,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2607,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2608,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2609,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2610,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2611,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2612,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2613,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2614,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2615,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2616,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2617,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2618,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2619,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2620,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2621,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2622,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2623,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2624,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2625,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2626,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2627,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2628,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2629,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2630,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2631,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2632,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2633,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2634,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2635,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2636,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2637,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2638,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2639,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2640,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2641,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2642,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2643,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2644,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2645,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2646,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2648,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2649,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2650,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2651,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2652,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2653,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2654,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2655,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2656,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2657,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2658,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2659,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2660,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2661,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2662,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2663,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2664,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2665,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2666,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2667,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2668,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2669,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2670,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2671,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2672,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2673,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2674,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2675,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2676,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2677,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2678,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2679,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2680,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2681,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2682,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2683,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2684,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2685,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2686,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2687,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2688,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2689,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2690,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2691,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2692,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2693,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2694,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2695,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2696,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2697,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2698,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2699,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2700,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2701,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2702,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2703,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2704,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2705,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2706,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2707,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2708,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2709,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2710,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2711,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2712,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2713,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2714,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2715,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2716,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2717,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2718,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2719,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2720,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2721,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2722,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2723,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2724,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2725,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2726,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2727,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2728,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2729,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2730,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2731,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2732,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2733,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2734,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2735,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2736,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2737,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2739,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2740,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2741,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2742,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2743,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2744,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2745,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2746,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2747,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2748,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2749,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2750,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2751,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2752,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2753,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2754,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2755,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2756,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2757,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2759,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2760,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2761,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2762,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2763,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2764,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2765,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2766,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2767,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2768,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2769,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2770,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2771,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2772,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2773,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2774,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2775,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2776,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2777,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2778,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2779,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2780,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2781,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2782,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2783,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2784,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2785,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2786,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2787,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2788,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2789,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2790,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2791,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2792,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2793,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2794,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2795,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2796,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2797,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2798,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2799,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2800,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2801,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2802,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2803,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2804,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2805,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2806,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2807,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2808,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2809,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2810,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2811,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2812,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2813,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2814,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2815,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2816,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2817,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2818,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2819,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2820,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2821,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2822,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2823,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2824,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2825,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2826,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2827,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2828,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2831,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2832,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2833,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2834,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2835,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2836,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2837,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2838,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2839,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2840,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2841,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2842,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2843,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2844,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2845,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2846,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2847,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2848,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2851,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2852,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2853,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2854,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2855,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2856,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2857,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2858,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2859,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2860,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2861,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2862,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2863,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2864,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2865,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2866,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2867,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2868,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2869,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2870,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2871,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2872,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2873,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2874,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2876,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2877,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2878,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2879,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2880,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2881,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2882,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2883,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2884,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2885,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2886,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2887,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2888,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2889,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2890,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2891,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2892,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2893,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2894,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2895,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2896,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2897,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2898,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2899,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2900,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2901,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2902,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2903,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2904,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2905,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2906,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2907,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2908,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2909,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2910,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2911,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2912,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2913,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2914,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2915,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2916,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2917,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2918,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2919,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2920,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2921,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2922,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2923,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2924,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2925,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2926,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2927,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2928,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2929,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2930,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2931,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2932,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2933,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2934,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2935,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2936,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2937,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2938,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2939,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2940,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2942,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2943,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2944,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2945,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2946,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2947,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2948,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2949,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2950,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2951,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2952,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2953,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2954,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2955,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2956,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2957,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2958,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2959,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2960,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2961,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2962,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2963,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2964,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2965,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2966,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2967,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2968,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2969,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2970,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2971,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2972,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2973,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2974,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2975,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2976,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2977,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2978,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2979,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2980,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2981,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2982,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2983,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2984,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2985,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2987,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2988,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2989,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2990,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2991,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2992,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2993,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2994,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2995,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2996,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2997,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2998,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2999,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3000,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3001,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3002,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3003,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3004,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3005,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3006,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3007,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3008,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3009,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3010,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3011,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3012,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3013,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3014,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3015,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3016,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3017,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3018,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3019,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3020,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3021,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3022,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3023,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3024,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3025,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3026,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3027,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3028,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3029,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3030,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3031,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3032,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3033,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3034,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3035,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3036,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3037,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3038,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3039,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3040,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3041,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3042,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3043,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3044,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3045,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3046,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3047,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3048,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3049,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3050,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3051,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3052,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3053,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3054,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3055,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3056,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3058,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3059,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3060,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3061,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3062,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3063,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3064,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3065,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3066,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3067,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3068,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3069,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3070,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3071,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3072,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3073,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3074,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3075,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3076,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3077,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3078,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3079,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3080,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3081,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3082,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3083,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3084,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3085,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3086,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3087,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3088,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3089,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3090,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3091,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3092,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3093,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3094,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3095,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3096,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3097,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3098,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3099,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3100,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3101,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3102,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3103,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3104,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3105,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3106,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3107,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3108,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3109,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3110,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3111,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3112,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3113,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3114,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3115,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3116,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3117,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3118,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3119,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3120,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3121,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3122,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3123,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3124,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3125,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3126,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3127,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3128,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3129,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3130,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3131,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3132,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3133,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3134,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3135,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3136,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3137,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3138,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3139,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3140,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3141,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3142,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3143,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3144,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3145,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3146,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3147,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3149,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3150,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3151,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3152,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3153,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3154,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3155,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3156,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3157,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3158,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3159,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3160,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3161,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3162,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3163,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3164,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3165,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3166,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3167,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3169,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3170,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3171,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3172,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3173,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3174,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3175,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3176,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3177,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3178,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3179,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3180,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3181,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3182,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3183,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3184,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3185,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3186,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3187,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3188,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3189,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3190,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3191,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3192,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3193,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3194,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3195,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3196,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3197,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3198,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3199,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3200,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3201,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3202,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3203,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3204,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3205,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3206,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3207,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3208,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3209,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3210,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3211,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3212,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3213,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3214,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3215,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3216,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3217,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3218,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3221,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3222,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3223,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3224,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3225,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3226,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3227,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3228,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3229,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3230,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3231,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3232,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3233,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3234,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3235,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3236,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3237,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3238,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3241,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3242,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3243,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3244,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3245,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3246,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3247,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3248,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3249,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3250,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3251,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3252,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3253,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3254,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3255,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3256,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3257,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3258,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3261,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3262,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3263,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3264,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3265,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3266,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3267,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3268,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3269,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3270,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3271,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3272,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3273,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3274,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3275,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3276,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3277,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3278,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3279,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3280,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3281,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3282,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3283,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3284,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3286,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3287,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3288,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3289,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3290,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3291,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3292,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3293,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3294,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3295,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3296,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3297,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3298,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3299,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3300,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3301,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3302,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3303,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3304,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3305,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3306,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3307,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3308,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3309,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3310,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3312,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3313,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3314,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3315,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3316,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3317,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3318,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3319,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3320,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3321,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3322,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3323,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3324,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3325,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3326,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3327,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3328,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3329,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3330,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3331,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3332,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3333,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3334,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3335,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3336,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3337,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3338,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3339,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3340,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3341,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3342,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3343,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3344,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3345,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3346,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3347,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3348,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3349,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3350,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3352,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3353,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3354,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3355,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3357,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3358,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3359,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3360,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3361,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3362,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3363,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3364,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3365,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3366,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3367,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3368,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3369,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3370,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3371,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3372,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3373,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3374,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3375,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3376,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3377,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3378,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3379,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3380,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3381,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3382,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3383,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3384,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3385,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3386,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3387,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3388,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3389,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3390,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3391,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3392,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3393,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3394,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3395,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3397,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3398,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3399,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3400,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3401,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3402,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3403,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3404,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3405,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3406,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3407,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3408,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3409,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3410,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3411,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3412,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3413,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3414,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3415,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3416,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3417,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3418,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3419,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3420,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3421,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3422,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3423,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3424,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3425,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3426,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3427,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3428,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3429,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3430,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3431,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3432,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3433,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3434,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3435,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3436,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3437,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3438,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3439,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3440,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3441,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3442,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3443,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3444,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3445,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3446,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3448,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3449,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3450,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3451,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3452,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3453,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3454,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3455,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3456,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3457,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3458,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3459,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3460,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3461,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3462,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3463,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3464,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3465,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3466,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3468,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3469,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3470,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3471,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3472,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3473,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3474,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3475,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3476,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3477,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3478,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3479,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3480,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3481,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3482,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3483,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3484,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3485,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3486,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3487,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3488,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3489,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3490,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3491,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3492,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3493,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3494,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3495,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3496,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3497,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3498,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3499,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3500,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3501,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3502,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3503,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3504,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3505,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3506,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3507,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3508,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3509,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3510,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3511,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3512,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3513,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3514,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3515,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3516,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3517,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3518,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3519,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3520,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3521,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3522,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3523,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3524,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3525,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3526,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3527,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3528,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3529,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3530,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3531,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3532,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3533,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3534,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3535,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3536,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3537,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3538,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3539,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3540,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3541,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3542,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3543,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3544,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3545,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3546,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3547,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3548,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3549,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3550,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3551,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3552,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3553,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3554,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3555,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3556,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3557,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3559,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3560,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3561,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3562,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3563,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3564,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3565,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3566,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3567,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3568,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3569,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3570,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3571,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3572,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3573,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3574,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3575,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3576,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3577,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3578,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3579,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3580,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3581,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3582,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3583,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3584,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3585,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3586,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3587,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3588,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3589,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3590,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3591,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3592,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3593,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3594,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3595,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3596,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3597,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3598,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3599,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3600,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3601,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3602,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3603,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3604,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3605,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3606,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3607,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3608,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3609,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3610,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3611,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3612,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3613,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3614,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3615,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3616,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3617,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3618,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3619,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3620,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3621,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3622,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3623,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3624,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3625,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3626,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3627,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3628,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3631,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3632,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3633,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3634,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3635,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3636,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3637,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3638,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3639,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3640,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3641,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3642,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3643,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3644,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3645,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3646,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3647,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3648,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3651,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3652,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3653,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3654,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3655,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3656,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3657,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3658,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3659,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3660,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3661,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3662,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3663,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3664,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3665,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3666,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3667,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3668,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3669,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3670,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3671,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3672,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3673,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3674,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3675,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3676,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3677,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3678,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3679,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3680,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3681,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3682,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3683,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3684,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3685,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3686,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3687,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3688,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3689,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3690,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3691,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3692,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3693,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3694,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3696,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3697,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3698,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3699,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3700,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3701,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3702,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3703,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3704,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3705,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3706,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3707,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3708,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3709,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3710,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3711,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3712,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3713,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3714,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3715,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3716,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3717,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3718,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3719,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3720,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3722,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3723,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3724,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3725,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3726,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3727,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3728,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3729,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3730,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3731,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3732,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3733,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3734,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3735,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3736,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3737,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3738,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3739,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3740,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3741,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3742,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3743,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3744,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3745,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3746,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3747,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3748,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3749,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3750,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3751,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3752,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3753,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3754,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3755,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3756,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3757,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3758,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3759,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3760,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3761,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3762,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3763,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3764,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3765,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3767,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3768,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3769,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3770,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3771,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3772,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3773,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3774,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3775,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3776,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3777,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3778,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3779,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3780,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3781,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3782,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3783,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3784,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3785,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3786,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3787,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3788,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3789,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3790,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3791,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3792,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3793,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3794,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3795,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3796,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3797,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3798,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3799,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3800,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3801,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3802,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3803,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3804,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3805,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3806,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3807,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3808,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3809,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3810,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3811,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3812,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3813,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3814,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3815,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3816,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3817,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3818,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3819,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3820,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3821,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3822,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3823,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3824,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3825,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3826,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3827,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3828,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3829,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3830,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3831,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3832,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3833,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3834,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3835,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3836,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3837,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3838,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3839,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3840,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3841,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3842,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3843,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3844,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3845,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3846,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3847,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3848,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3849,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3850,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3851,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3852,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3853,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3854,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3855,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3856,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3858,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3859,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3860,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3861,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3862,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3863,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3864,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3865,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3866,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3867,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3868,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3869,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3870,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3871,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3872,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3873,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3874,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3875,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3876,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3878,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3879,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3880,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3881,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3882,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3883,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3884,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3885,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3886,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3887,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3888,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3889,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3890,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3891,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3892,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3893,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3894,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3895,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3896,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3897,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3898,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3899,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3900,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3901,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3902,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3903,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3904,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3905,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3906,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3907,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3908,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3909,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3910,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3911,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3912,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3913,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3914,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3915,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3916,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3917,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3918,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3919,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3920,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3921,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3922,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3923,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3924,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3925,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3926,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3927,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3928,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3929,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3930,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3931,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3932,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3933,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3934,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3935,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3936,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3937,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3938,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3939,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3940,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3941,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3942,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3943,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3944,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3945,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3946,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3947,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3948,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3949,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3950,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3951,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3952,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3953,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3954,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3955,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3956,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3957,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3958,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3959,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3960,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3961,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3962,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3963,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3964,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3965,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3966,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3967,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3969,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3970,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3971,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3972,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3973,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3974,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3975,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3976,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3977,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3978,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3979,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3980,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3981,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3982,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3983,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3984,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3985,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3986,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3987,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3988,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3989,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3990,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3991,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3992,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3993,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3994,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3995,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3996,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3997,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3998,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3999,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4000,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4001,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4002,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4003,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4004,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4005,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4006,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4007,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4008,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4009,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4010,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4011,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4012,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4013,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4014,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4015,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4016,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4017,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4018,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4019,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4020,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4021,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4022,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4023,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4024,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4025,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4026,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4027,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4028,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4029,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4030,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4031,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4032,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4033,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4034,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4035,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4036,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4037,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4038,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4041,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4042,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4043,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4044,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4045,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4046,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4047,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4048,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4049,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4050,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4051,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4052,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4053,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4054,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4055,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4056,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4057,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4058,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4061,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4062,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4063,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4064,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4065,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4066,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4067,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4068,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4069,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4070,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4071,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4072,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4073,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4074,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4075,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4076,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4077,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4078,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4079,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4080,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4081,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4082,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4083,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4084,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4085,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4086,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4087,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4088,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4089,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4090,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4091,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4092,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4093,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4094,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4095,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4096,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4097,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4098,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4099,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4100,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4101,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4102,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4103,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4104,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4106,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4107,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4108,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4109,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4110,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4111,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4112,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4113,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4114,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4115,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4116,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4117,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4118,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4119,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4120,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4121,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4122,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4123,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4124,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4125,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4126,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4127,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4128,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4129,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4130,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4132,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4133,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4134,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4135,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4136,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4137,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4138,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4139,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4140,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4141,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4142,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4143,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4144,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4145,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4146,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4147,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4148,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4149,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4150,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4151,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4152,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4153,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4154,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4155,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4156,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4157,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4158,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4159,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4160,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4161,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4162,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4163,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4164,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4165,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4166,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4167,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4168,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4169,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4170,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4171,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4172,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4173,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4174,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4175,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4177,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4178,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4179,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4180,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4181,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4182,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4183,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4184,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4185,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4186,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4187,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4188,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4189,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4190,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4191,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4192,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4193,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4194,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4195,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4196,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4197,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4198,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4199,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4200,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4201,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4202,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4203,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4204,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4205,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4206,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4207,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4208,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4209,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4210,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4211,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4212,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4213,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4214,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4215,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4216,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4217,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4218,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4219,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4220,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4221,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4222,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4223,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4224,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4225,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4226,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4227,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4228,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4229,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4230,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4231,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4232,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4233,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4234,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4235,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4236,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4237,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4238,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4239,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4240,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4241,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4242,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4243,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4244,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4245,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4246,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4248,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4249,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4250,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4251,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4252,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4253,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4254,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4255,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4256,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4257,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4258,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4259,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4260,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4261,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4262,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4263,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4264,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4265,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4266,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4268,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4269,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4270,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4271,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4272,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4273,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4274,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4275,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4276,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4277,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4278,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4279,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4280,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4281,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4282,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4283,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4284,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4285,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4286,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4288,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4289,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4290,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4291,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4292,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4293,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4294,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4295,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4296,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4297,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4298,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4299,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4300,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4301,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4302,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4303,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4304,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4305,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4306,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4307,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4308,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4309,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4310,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4311,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4312,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4313,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4314,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4315,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4316,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4317,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4318,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4319,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4320,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4321,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4322,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4323,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4324,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4325,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4326,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4327,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4328,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4329,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4330,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4331,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4332,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4333,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4334,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4335,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4336,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4337,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4339,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4340,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4341,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4342,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4343,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4344,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4345,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4346,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4347,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4348,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4349,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4350,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4351,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4352,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4353,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4354,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4355,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4356,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4357,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4358,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4359,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4360,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4361,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4362,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4363,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4364,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4365,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4366,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4367,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4368,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4369,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4370,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4371,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4372,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4373,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4374,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4375,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4376,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4377,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4379,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4380,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4381,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4382,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4383,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4384,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4385,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4386,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4387,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4388,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4389,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4390,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4391,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4392,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4393,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4394,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4395,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4396,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4397,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4398,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4399,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4400,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4401,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4402,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4403,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4404,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4405,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4406,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4407,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4408,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4409,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4410,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4411,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4412,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4413,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4414,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4415,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4416,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4417,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4418,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4419,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4420,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4421,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4422,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4423,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4424,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4425,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4426,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4427,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4428,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4431,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4432,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4433,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4434,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4435,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4436,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4437,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4438,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4439,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4440,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4441,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4442,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4443,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4444,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4445,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4446,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4447,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4448,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4451,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4452,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4453,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4454,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4455,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4456,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4457,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4458,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4459,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4460,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4461,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4462,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4463,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4464,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4465,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4466,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4467,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4468,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4469,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4470,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4471,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4472,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4473,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4474,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4476,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4477,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4478,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4479,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4480,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4481,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4482,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4483,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4484,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4485,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4486,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4487,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4488,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4489,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4490,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4491,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4492,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4493,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4494,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4495,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4496,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4497,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4498,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4499,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4500,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4501,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4502,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4503,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4504,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4505,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4506,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4507,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4508,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4509,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4510,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4511,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4512,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4513,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4514,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4515,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4516,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4517,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4518,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4519,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4520,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4521,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4522,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4523,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4524,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4525,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4526,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4527,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4528,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4529,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4530,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4531,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4532,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4533,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4534,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4535,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4536,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4537,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4538,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4539,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4540,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4542,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4543,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4544,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4545,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4546,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4547,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4548,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4549,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4550,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4551,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4552,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4553,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4554,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4555,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4556,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4557,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4558,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4559,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4560,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4561,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4562,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4563,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4564,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4565,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4566,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4567,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4568,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4569,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4570,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4571,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4572,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4573,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4574,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4575,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4576,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4577,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4578,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4579,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4580,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4581,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4582,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4583,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4584,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4585,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4587,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4588,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4589,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4590,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4591,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4592,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4593,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4594,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4595,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4596,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4597,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4598,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4599,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4600,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4601,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4602,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4603,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4604,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4605,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4606,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4607,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4608,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4609,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4610,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4611,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4612,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4613,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4614,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4615,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4616,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4617,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4618,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4619,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4620,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4621,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4622,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4623,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4624,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4625,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4626,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4627,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4628,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4629,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4630,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4631,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4632,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4633,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4634,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4635,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4636,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4637,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4638,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4639,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4640,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4641,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4642,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4643,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4644,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4645,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4646,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4647,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4648,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4649,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4650,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4651,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4652,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4653,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4654,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4655,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4656,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4658,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4659,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4660,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4661,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4662,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4663,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4664,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4665,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4666,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4667,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4668,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4669,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4670,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4671,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4672,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4673,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4674,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4675,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4676,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4678,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4679,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4680,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4681,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4682,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4683,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4684,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4685,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4686,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4687,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4688,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4689,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4690,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4691,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4692,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4693,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4694,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4695,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4696,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4697,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4698,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4699,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4700,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4701,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4702,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4703,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4704,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4705,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4706,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4707,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4708,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4709,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4710,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4711,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4712,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4713,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4714,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4715,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4716,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4717,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4718,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4719,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4720,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4721,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4722,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4723,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4724,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4725,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4726,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4727,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4728,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4729,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4730,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4731,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4732,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4733,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4734,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4735,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4736,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4737,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4738,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4739,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4740,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4741,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4742,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4743,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4744,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4745,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4746,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4747,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4749,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4750,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4751,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4752,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4753,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4754,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4755,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4756,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4757,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4758,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4759,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4760,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4761,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4762,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4763,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4764,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4765,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4766,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4767,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4768,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4769,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4770,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4771,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4772,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4773,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4774,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4775,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4776,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4777,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4778,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4779,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4780,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4781,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4782,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4783,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4784,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4785,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4786,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4787,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4788,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4789,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4790,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4791,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4792,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4793,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4794,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4795,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4796,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4797,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4798,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4799,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4800,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4801,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4802,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4803,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4804,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4805,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4806,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4807,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4808,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4809,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4810,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4811,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4812,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4813,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4814,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4815,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4816,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4817,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4818,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4819,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4820,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4821,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4822,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4823,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4824,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4825,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4826,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4827,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4828,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4829,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4830,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4831,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4832,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4833,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4834,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4835,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4836,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4837,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4838,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4841,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4842,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4843,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4844,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4845,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4846,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4847,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4848,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4849,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4850,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4851,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4852,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4853,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4854,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4855,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4856,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4857,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4858,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4861,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4862,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4863,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4864,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4865,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4866,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4867,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4868,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4869,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4870,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4871,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4872,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4873,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4874,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4875,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4876,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4877,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4878,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4879,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4880,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4881,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4882,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4883,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4884,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4886,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4887,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4888,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4889,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4890,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4891,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4892,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4893,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4894,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4895,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4896,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4897,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4898,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4899,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4900,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4901,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4902,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4903,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4904,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4905,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4906,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4907,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4908,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4909,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4910,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4911,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4912,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4913,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4914,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4915,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4916,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4917,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4918,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4919,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4920,Psoriasis,"I have been experiencing a skin rash on my arms, legs, and torso for the past few weeks. It is red, itchy, and covered in dry, scaly patches.","experiencing skin rash arms , legs , torso past weeks red , itchy , covered dry , scaly patches" +4921,Psoriasis,"My skin has been peeling, especially on my knees, elbows, and scalp. This peeling is often accompanied by a burning or stinging sensation.","skin peeling , especially knees , elbows , scalp peeling often accompanied burning stinging sensation" +4922,Psoriasis,"I have been experiencing joint pain in my fingers, wrists, and knees. The pain is often achy and throbbing, and it gets worse when I move my joints.","experiencing joint pain fingers , wrists , knees pain often achy throbbing , gets worse move joints" +4923,Psoriasis,"There is a silver like dusting on my skin, especially on my lower back and scalp. This dusting is made up of small scales that flake off easily when I scratch them.","silver like dusting skin , especially lower back scalp dusting made small scales flake easily scratch" +4924,Psoriasis,"My nails have small dents or pits in them, and they often feel inflammatory and tender to the touch. Even there are minor rashes on my arms.","nails small dents pits , often feel inflammatory tender touch even minor rashes arms" +4925,Psoriasis,The skin on my palms and soles is thickened and has deep cracks. These cracks are painful and bleed easily.,skin palms soles thickened deep cracks cracks painful bleed easily +4926,Psoriasis,"The skin around my mouth, nose, and eyes is red and inflamed. It is often itchy and uncomfortable. There is a noticeable inflammation in my nails.","skin around mouth , nose , eyes red inflamed often itchy uncomfortable noticeable inflammation nails" +4927,Psoriasis,My skin is very sensitive and reacts easily to changes in temperature or humidity. I often have to be careful about what products I use on my skin.,skin sensitive reacts easily changes temperature humidity often careful products use skin +4928,Psoriasis,"I have noticed a sudden peeling of skin at different parts of my body, mainly arms, legs and back. Also, I face severe joint pain and skin rashes.","noticed sudden peeling skin different parts body , mainly arms , legs back also , face severe joint pain skin rashes" +4929,Psoriasis,"The skin on my genitals is red and inflamed. It is often itchy, burning, and uncomfortable. There are rashes on different parts of the body too.","skin genitals red inflamed often itchy , burning , uncomfortable rashes different parts body" +4930,Psoriasis,"I have experienced fatigue and a general feeling of malaise. I often feel tired and have a lack of energy, even after a good night's sleep.","experienced fatigue general feeling malaise often feel tired lack energy , even good night sleep" +4931,Psoriasis,"The rash on my skin has spread to other parts of my body, including my chest and abdomen. It is itchy and uncomfortable, and it is often worse at night. I am also facing skin peeling.","rash skin spread parts body , including chest abdomen itchy uncomfortable , often worse night also facing skin peeling" +4932,Psoriasis,The rash on my skin is worse in the winter months when the air is dry. I find that I have to moisturize more frequently and use humidifiers to keep my skin hydrated.,rash skin worse winter months air dry find moisturize frequently use humidifiers keep skin hydrated +4933,Psoriasis,"I have experienced difficulty sleeping due to the itching and discomfort caused by the rash. There are small dents in my nails, which is really concerning.","experienced difficulty sleeping due itching discomfort caused rash small dents nails , really concerning" +4934,Psoriasis,"My skin is prone to infections due to dry, flaky patches. I am experiencing a strong pain in my joints. The skin on my knees and elbows is starting to peel off.","skin prone infections due dry , flaky patches experiencing strong pain joints skin knees elbows starting peel" +4935,Psoriasis,"I am starting to have rashes on my skin. The rash often bleeds when I scratch or rub it. Moreover, I have noticed small dents in my nails.","starting rashes skin rash often bleeds scratch rub moreover , noticed small dents nails" +4936,Psoriasis,"I have noticed that my skin has become more sensitive than it used to be. There is a silver like dusting on my skin, especially on my back and elbows.","noticed skin become sensitive used silver like dusting skin , especially back elbows" +4937,Psoriasis,"I am worried about the constant peeling of the skin on my palm, elbow and knee. I have developed rashes on my arms, which itch if I touch them. All of these are making my life quite discomforting and miserable.","worried constant peeling skin palm , elbow knee developed rashes arms , itch touch making life quite discomforting miserable" +4938,Psoriasis,"There is strange pain in my joints. Also, I have noticed strange peeling of skin in different parts of my body. I am afraid there is something wrong going on with my body.","strange pain joints also , noticed strange peeling skin different parts body afraid something wrong going body" +4939,Psoriasis,"My nails have small dents on them. Even my joints have started to pain severely. There is a silver like dusting on my skin, particularly in my back.","nails small dents even joints started pain severely silver like dusting skin , particularly back" +4940,Psoriasis,"The rashes on my skin are not healing. Moreover, I have noticed a sudden peeling of the skin, especially the skin on my elbows and knees. I am really worried about this.","rashes skin healing moreover , noticed sudden peeling skin , especially skin elbows knees really worried" +4941,Psoriasis,"For the past few weeks, I've had a skin rash on my arms, legs, and chest. It's red and irritating, with dry, scaly spots. I have a strange pain in my joints too.","past weeks , skin rash arms , legs , chest red irritating , dry , scaly spots strange pain joints" +4942,Psoriasis,"My skin is peeling, particularly on my knees, elbows, and scalp. This peeling is frequently accompanied by a stinging or burning feeling.","skin peeling , particularly knees , elbows , scalp peeling frequently accompanied stinging burning feeling" +4943,Psoriasis,"I'm having joint discomfort in my fingers, wrists, and knees. The pain is frequently aching and throbbing, and it worsens when I move my joints.","joint discomfort fingers , wrists , knees pain frequently aching throbbing , worsens move joints" +4944,Psoriasis,"My skin has a silvery film, particularly on my back, arms and scalp. This dusting is composed of tiny scales that easily peel off when scratched.","skin silvery film , particularly back , arms scalp dusting composed tiny scales easily peel scratched" +4945,Psoriasis,"I have red and inflammatory skin around my mouth, nose, and eyes. It is frequently irritating and unpleasant. Recently, it has got very painful.","red inflammatory skin around mouth , nose , eyes frequently irritating unpleasant recently , got painful" +4946,Psoriasis,My skin is extremely sensitive and quickly irritated by changes in temperature or humidity. My nails have developed dents on them. I am worried about this sudden change.,skin extremely sensitive quickly irritated changes temperature humidity nails developed dents worried sudden change +4947,Psoriasis,"I've seen a sudden peeling of skin on various regions of my body, mostly my arms, legs, and back. In addition, I have significant joint pain and skin rashes. The rash is spreading to different parts of my body.","seen sudden peeling skin various regions body , mostly arms , legs , back addition , significant joint pain skin rashes rash spreading different parts body" +4948,Psoriasis,"My genital skin is red and irritated. It is frequently irritating, burning, and unpleasant. There are also rashes in various places of the body. Also, I have a strange pain in my joints.","genital skin red irritated frequently irritating , burning , unpleasant also rashes various places body also , strange pain joints" +4949,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. There is a noticeable inflammation in my nails.","trouble sleeping itching pain produced rash nails little dents , really alarming noticeable inflammation nails" +4950,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in excruciating agony. The skin on my knees and elbows is beginning to flake.","dry , flaky areas skin , prone infections joints excruciating agony skin knees elbows beginning flake" +4951,Psoriasis,"My skin is breaking out in rashes. When I scratch or rub the rash, it frequently bleeds. In addition, I've observed little dents in my nails. There is a noticeable inflammation in my nails.","skin breaking rashes scratch rub rash , frequently bleeds addition , observed little dents nails noticeable inflammation nails" +4952,Psoriasis,"I've observed that my skin is more sensitive now than it used to be. My skin has a silvery film, especially on my back and elbows.","observed skin sensitive used skin silvery film , especially back elbows" +4953,Psoriasis,"My palms and soles have grown and developed severe fissures. These cracks are unpleasant and frequently bleed. Also, the skin is starting to peel off.","palms soles grown developed severe fissures cracks unpleasant frequently bleed also , skin starting peel" +4954,Psoriasis,"My nails are starting to have small pits on them. I am worried and don't know what is causing it. Also, my joints pain and there are rashes on my arms and back.","nails starting small pits worried know causing also , joints pain rashes arms back" +4955,Psoriasis,"There is a silver like dusting on my skin. Moreover, the skin on my arms and back are starting to peel off. This is strange and really concerning me.","silver like dusting skin moreover , skin arms back starting peel strange really concerning" +4956,Psoriasis,"My skin rash has extended to other areas of my body, including my chest and belly. It is irritating and unpleasant, and it is frequently worst at night. I'm also experiencing skin flaking.","skin rash extended areas body , including chest belly irritating unpleasant , frequently worst night also experiencing skin flaking" +4957,Psoriasis,"My skin rash gets worse in the winter when the air is dry. To keep my skin moisturized, I have to moisturize more regularly and use humidifiers. I am also facing joint pain.","skin rash gets worse winter air dry keep skin moisturized , moisturize regularly use humidifiers also facing joint pain" +4958,Psoriasis,I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents. I am also experiencing skin peeling in different parts of my body.,trouble sleeping itching pain produced rash nails little dents also experiencing skin peeling different parts body +4959,Psoriasis,"My skin is peeling in places, especially on my knees, elbows, and arms. This peeling is often accompanied by a painful or burning sensation. I am also developing small dents on my nails, which is really concerning.","skin peeling places , especially knees , elbows , arms peeling often accompanied painful burning sensation also developing small dents nails , really concerning" +4960,Psoriasis,"My skin has a silvery layer over it, especially on my back and arms. This dusting is made up of small scales that peel off readily when rubbed. Also, there are rashes all over my body.","skin silvery layer , especially back arms dusting made small scales peel readily rubbed also , rashes body" +4961,Psoriasis,"My arms, face and back are all red and irritated. It is frequently irritating and unpleasant. My nails have a strange inflammation and have developed small dents. I have never seen anything like this.","arms , face back red irritated frequently irritating unpleasant nails strange inflammation developed small dents never seen anything like" +4962,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. Moreover, my joints pain everyday and I have no idea what is causing it.","trouble sleeping itching pain produced rash nails little dents , really alarming moreover , joints pain everyday idea causing" +4963,Psoriasis,My fingers and soles have pretty thick skin that is cracked severely. These fractures hurt and bleed frequently. The fractures are itchy and covered with scales.,fingers soles pretty thick skin cracked severely fractures hurt bleed frequently fractures itchy covered scales +4964,Psoriasis,"My skin has changed from being less sensitive to being more sensitive. My skin has a silvery coating, especially on my back, elbows and knees.","skin changed less sensitive sensitive skin silvery coating , especially back , elbows knees" +4965,Psoriasis,"My nails are slightly dented. Even my joints are now experiencing excruciating discomfort. My skin has a silver-like powder, especially on my back and elbows. ","nails slightly dented even joints experiencing excruciating discomfort skin silver like powder , especially back elbows" +4966,Psoriasis,"I've had trouble falling asleep because of the rash's pain and itching. The skin on my fingers are starting to peel off. My nails have a few tiny cracks, which is really worrying. ","trouble falling asleep rash pain itching skin fingers starting peel nails tiny cracks , really worrying" +4967,Psoriasis,"My joints are experiencing an unusual discomfort. Additionally, I've experienced weird skin peeling in various places on my body. I'm concerned that something is wrong with my body. ","joints experiencing unusual discomfort additionally , experienced weird skin peeling various places body concerned something wrong body" +4968,Psoriasis,"I am starting to have rashes on my arms and neck. The rash often bleeds and hurts when I scratch it. I have also developed small dents in my nails, which is very strange.","starting rashes arms neck rash often bleeds hurts scratch also developed small dents nails , strange" +4969,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in extreme pain . My knees and elbows' skin are starting to peel off.","dry , flaky areas skin , prone infections joints extreme pain knees elbows skin starting peel" +4970,Varicose Veins,"I have a rash on my legs that is causing a lot of discomforts. It seems there is a cramp and I can see prominent veins on the calf. Also, I have been feeling very tired and fatigued in the past couple of days.","rash legs causing lot discomforts seems cramp see prominent veins calf also , feeling tired fatigued past couple days" +4971,Varicose Veins,"My calves have been cramping up when I walk or stand for long periods of time. There are bruise marks on my calves, which is making me worried. I feel tired very soon.","calves cramping walk stand long periods time bruise marks calves , making worried feel tired soon" +4972,Varicose Veins,"There is bruising on my legs that I cannot explain. I can see strange blood vessels below the skin. Also, I am slightly obese and I am really worried.","bruising legs explain see strange blood vessels skin also , slightly obese really worried" +4973,Varicose Veins,I am overweight and have noticed that my legs are swollen and the blood vessels are visible. My legs have swollen and I can see a stream of swollen veins on my calves.,overweight noticed legs swollen blood vessels visible legs swollen see stream swollen veins calves +4974,Varicose Veins,"The veins on my calves have become very prominent and causing discomfort. I can't stand for long periods of time, as it causes pain in my legs, similar to cramps.","veins calves become prominent causing discomfort stand long periods time , causes pain legs , similar cramps" +4975,Varicose Veins,The skin around the veins on my legs is red and inflamed. I believe I can see some of the swollen blood vessels. I am really worried about it.,skin around veins legs red inflamed believe see swollen blood vessels really worried +4976,Varicose Veins,Standing or walking for long periods of time causes a lot of pain in my legs. I get cramps upon doing physical activities. There are bruise marks on my legs too.,standing walking long periods time causes lot pain legs get cramps upon physical activities bruise marks legs +4977,Varicose Veins,The cramps in my calves are making it difficult for me to walk. I feel fatigued after working for some time. I believe obesity is the reason behind this.,cramps calves making difficult walk feel fatigued working time believe obesity reason behind +4978,Varicose Veins,"The swelling in my legs has gotten worse over the past few weeks. Now, a large number of veins are noticeable on my calves, which is making me worried.","swelling legs gotten worse past weeks , large number veins noticeable calves , making worried" +4979,Varicose Veins,The veins on my legs are very noticeable and cause me discomfort. It seems like there is a major bruise and I get cramps when I run.,veins legs noticeable cause discomfort seems like major bruise get cramps run +4980,Varicose Veins,The skin on my calves has become inflamed and red. My legs hurt if I try to run or do any physical activities.,skin calves become inflamed red legs hurt try run physical activities +4981,Varicose Veins,"Recently, the pain in my calves has been constant and becomes worse when I stand or walk for long periods of time. My legs have started to swell and also some blood vessels are quite noticeable.","recently , pain calves constant becomes worse stand walk long periods time legs started swell also blood vessels quite noticeable" +4982,Varicose Veins,The veins in my legs are causing discomfort and difficulty sleeping at night. I have no idea why it is happening. I get cramps when I sprint.,veins legs causing discomfort difficulty sleeping night idea happening get cramps sprint +4983,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes. I can't sprint or stand for long periods of time. I can see some swollen blood vessels.,swelling legs causing difficulty fitting shoes sprint stand long periods time see swollen blood vessels +4984,Varicose Veins,I have noticed cramps in my calves are becoming more frequent and intense. It is causing me a lot of discomforts. I am also overweight and my legs have started to swell.,noticed cramps calves becoming frequent intense causing lot discomforts also overweight legs started swell +4985,Varicose Veins,The veins on my legs cause a lot of discomforts when I sit for long periods of time.,veins legs cause lot discomforts sit long periods time +4986,Varicose Veins,The rash on my legs is spreading and becoming more severe. It has become very difficult for me to run.,rash legs spreading becoming severe become difficult run +4987,Varicose Veins,My legs are causing a lot of discomforts when I exercise. I get frequent cramps and the blood vessels have become quite noticeable.,legs causing lot discomforts exercise get frequent cramps blood vessels become quite noticeable +4988,Varicose Veins,The prominent blood vessels on my calves are causing self-consciousness and embarrassment. I believe the problem is because of my overweight.,prominent blood vessels calves causing self consciousness embarrassment believe problem overweight +4989,Varicose Veins,The skin around the veins on my legs is dry and flaky. It seems there is a major bruise and my legs have started to swell.,skin around veins legs dry flaky seems major bruise legs started swell +4990,Varicose Veins,I have been experiencing a rash on my legs that is causing a lot of irritation and discomfort. It is red and inflamed and appears to be spreading.,experiencing rash legs causing lot irritation discomfort red inflamed appears spreading +4991,Varicose Veins,"Recently, my calves have been cramping up frequently, especially when I am walking or standing for long periods of time. Also, the veins are very noticeable.","recently , calves cramping frequently , especially walking standing long periods time also , veins noticeable" +4992,Varicose Veins,I have noticed that there are bruises on my legs that I cannot explain. They are not painful but are concerning to me.,noticed bruises legs explain painful concerning +4993,Varicose Veins,"As I am overweight, I have noticed that my legs are swollen and the blood vessels are more visible than usual. The swelling seems to be getting worse over time.","overweight , noticed legs swollen blood vessels visible usual swelling seems getting worse time" +4994,Varicose Veins,The veins on my calves are very prominent and are causing me a lot of discomforts. They are swollen and protrude from my skin.,veins calves prominent causing lot discomforts swollen protrude skin +4995,Varicose Veins,"The skin around the veins on my legs is red, inflamed, and itchy. It is causing a lot of discomforts and I am starting to get regular cramps.","skin around veins legs red , inflamed , itchy causing lot discomforts starting get regular cramps" +4996,Varicose Veins,Standing or walking for long periods of time has been causing a lot of pain in my legs. It feels like a cramp and becomes worse the longer I am on my feet.,standing walking long periods time causing lot pain legs feels like cramp becomes worse longer feet +4997,Varicose Veins,The cramps in my calves have been making it difficult for me to walk and do my daily activities. They come on suddenly and last for several minutes.,cramps calves making difficult walk daily activities come suddenly last several minutes +4998,Varicose Veins,The swelling in my legs has gotten worse over the past few weeks and is causing me difficulty fitting into my shoes. It is also causing discomfort when I sit for long periods of time.,swelling legs gotten worse past weeks causing difficulty fitting shoes also causing discomfort sit long periods time +4999,Varicose Veins,"The veins on my legs are very noticeable and are causing me a lot of discomforts. They are swollen and protrude from my skin, making them visible through my clothing.","veins legs noticeable causing lot discomforts swollen protrude skin , making visible clothing" +5000,Varicose Veins,"The skin on my calves is itchy and inflamed, causing a lot of discomfort and difficulty sleeping at night. The blood vessels have started to protrude out, which is concerning.","skin calves itchy inflamed , causing lot discomfort difficulty sleeping night blood vessels started protrude , concerning" +5001,Varicose Veins,The pain in my calves is constant and becomes worse when I stand or walk for long periods of time. I am getting constant cramps and can't run for longer periods of time.,pain calves constant becomes worse stand walk long periods time getting constant cramps run longer periods time +5002,Varicose Veins,"The veins in my legs are causing discomfort and difficulty sleeping at night. They are swollen and protruding from my skin, making them noticeable and painful.","veins legs causing discomfort difficulty sleeping night swollen protruding skin , making noticeable painful" +5003,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes and is causing discomfort when I sit for long periods of time.,swelling legs causing difficulty fitting shoes causing discomfort sit long periods time +5004,Varicose Veins,"The cramps in my calves are becoming more frequent and intense, making it difficult for me to walk and do my daily activities.","cramps calves becoming frequent intense , making difficult walk daily activities" +5005,Varicose Veins,"The veins on my legs are causing a lot of discomforts when I sit for long periods of time. They are swollen and protruding from my skin, making them painful and noticeable.","veins legs causing lot discomforts sit long periods time swollen protruding skin , making painful noticeable" +5006,Varicose Veins,"The rash on my legs is spreading and becoming more severe. It is red, inflamed, and itchy, causing a lot of discomfort and difficulty sleeping at night.","rash legs spreading becoming severe red , inflamed , itchy , causing lot discomfort difficulty sleeping night" +5007,Varicose Veins,"My legs have been causing a lot of discomforts when I exercise. They feel heavy and swollen, and the veins are prominent and painful. I feel fatigued all the time.","legs causing lot discomforts exercise feel heavy swollen , veins prominent painful feel fatigued time" +5008,Varicose Veins,"The prominent veins on my calves are causing self-consciousness and embarrassment. They are swollen and protrude from my skin, making them very noticeable.","prominent veins calves causing self consciousness embarrassment swollen protrude skin , making noticeable" +5009,Varicose Veins,"The skin around the veins on my legs is dry and flaky, causing discomfort and irritation. I am also starting to get frequent cramps.","skin around veins legs dry flaky , causing discomfort irritation also starting get frequent cramps" +5010,Varicose Veins,"I have a rash on my legs that is giving me a lot of pain. There appears to be a cramp, and I can see visible veins on the calf.","rash legs giving lot pain appears cramp , see visible veins calf" +5011,Varicose Veins,My veins of legs have become more visible and swollen than normal. They are visible through my skin and it hurts when I move.,veins legs become visible swollen normal visible skin hurts move +5012,Varicose Veins,"Walking is tough for me because of cramps in my calves. Obesity, I believe, is the cause of this. After a while of working, I'm exhausted.","walking tough cramps calves obesity , believe , cause working , exhausted" +5013,Varicose Veins,The blood vessels on my legs are quite visible and give me a lot of pain. They're large and protrude from my skin. It is unusual and I am worried about it.,blood vessels legs quite visible give lot pain large protrude skin unusual worried +5014,Varicose Veins,"I have noticed that the blood vessels in my legs are getting more noticeable than usual. It is a little concerning to me. Moreover, I am experiencing cramps every day.","noticed blood vessels legs getting noticeable usual little concerning moreover , experiencing cramps every day" +5015,Varicose Veins,My legs' swelling has become worse over the last couple of days. I can see the blood vessels protruding out of the skin. This is quite unusual.,legs swelling become worse last couple days see blood vessels protruding skin quite unusual +5016,Varicose Veins,Long durations of standing or walking have caused severe discomfort in my legs. It's a burning ache that gets worse the longer I'm on my feet.,long durations standing walking caused severe discomfort legs burning ache gets worse longer feet +5017,Varicose Veins,"My legs' skin around the veins is unusual. There appears to be a large bruise. Nowadays, I get frequent cramps when I sprint or run.","legs skin around veins unusual appears large bruise nowadays , get frequent cramps sprint run" +5018,Varicose Veins,"I am experiencing too many cramps in the last couple of days. I think something is not right. I believe there is a small bruise on my calves, but I am not sure about it.","experiencing many cramps last couple days think something right believe small bruise calves , sure" +5019,Varicose Veins,"The veins in my calves are protruding out quite unusually. I am worried about it. Also, I am overweight and I believe this is the reason behind all of this.","veins calves protruding quite unusually worried also , overweight believe reason behind" +5020,Typhoid,"I have constipation and belly pain, and it's been really uncomfortable. The belly pain has been getting worse and is starting to affect my daily life. Moreover, I get chills every night, followed by a mild fever.","constipation belly pain , really uncomfortable belly pain getting worse starting affect daily life moreover , get chills every night , followed mild fever" +5021,Typhoid,"I've also had some diarrhea, which has been really unpleasant. It's been coming and going, and it's been accompanied by abdominal cramps and bloating.","also diarrhea , really unpleasant coming going , accompanied abdominal cramps bloating" +5022,Typhoid,"I have been experiencing chills and fever, along with severe abdominal pain. I've been feeling really miserable overall, and I just can't seem to shake these symptoms.","experiencing chills fever , along severe abdominal pain feeling really miserable overall , seem shake symptoms" +5023,Typhoid,I've been having a lot of trouble keeping hydrated because of the vomiting and diarrhea. There is a mild fever along with constipation and headache.,lot trouble keeping hydrated vomiting diarrhea mild fever along constipation headache +5024,Typhoid,"I've lost a lot of weight in the past week because I haven't been able to eat much due to nausea and vomiting. This is followed by mild fever, headache and belly pain. I'm really concerned about my health.","lost lot weight past week able eat much due nausea vomiting followed mild fever , headache belly pain really concerned health" +5025,Typhoid,"The fatigue has been really uncomfortable, and I've had a lot of difficulties doing my usual activities. I've also been feeling really depressed and irritable. There is mild pain in the abdominal part too.","fatigue really uncomfortable , lot difficulties usual activities also feeling really depressed irritable mild pain abdominal part" +5026,Typhoid,"I've had a persistent headache for the past week, and it's been getting worse. It's been accompanied by belly aches, constipation and diarrhea.","persistent headache past week , getting worse accompanied belly aches , constipation diarrhea" +5027,Typhoid,"I've been experiencing high fever, especially at night. It's been really uncomfortable. There is a mild headache along with constipation and diarrhea.","experiencing high fever , especially night really uncomfortable mild headache along constipation diarrhea" +5028,Typhoid,"I've been having a lot of difficulty breathing, and I feel like I'm constantly nauseous. I also have mild belly pain. It's been terrifying at times.","lot difficulty breathing , feel like constantly nauseous also mild belly pain terrifying times" +5029,Typhoid,"Diarrhea has been really watery and foul-smelling, and it's been accompanied by abdominal pain. I feel like vomiting most of the time.","diarrhea really watery foul smelling , accompanied abdominal pain feel like vomiting time" +5030,Typhoid,"I've been having a lot of trouble sleeping because of the high fever, headache and chills. I wake up every day having a terrible pain in my belly area.","lot trouble sleeping high fever , headache chills wake every day terrible pain belly area" +5031,Typhoid,"I've also been experiencing some diarrhea and constipation, which has been really worrying. It feels like a sharp, stabbing pain in my belly area. I feel tired all the time.","also experiencing diarrhea constipation , really worrying feels like sharp , stabbing pain belly area feel tired time" +5032,Typhoid,"I have had some constipation and belly pain, which has been really uncomfortable. The pain has been getting worse and it's really affecting my daily life.","constipation belly pain , really uncomfortable pain getting worse really affecting daily life" +5033,Typhoid,"I am experiencing a lot of belly pain and constipation, which has been really annoying. Sometimes, I feel a strong urge to vomit, and because of all of these, I am feeling very weak.","experiencing lot belly pain constipation , really annoying sometimes , feel strong urge vomit , , feeling weak" +5034,Typhoid,"The abdominal pain has been coming and going, and it's been really unpleasant. It's been accompanied by constipation and vomiting. I feel really concerned about my health.","abdominal pain coming going , really unpleasant accompanied constipation vomiting feel really concerned health" +5035,Typhoid,"I have been experiencing a lot of bloating and constipation, and it's been really uncomfortable. It feels like there's a lot of pressure and pain in my belly area.","experiencing lot bloating constipation , really uncomfortable feels like lot pressure pain belly area" +5036,Typhoid,"I am experiencing extreme belly pain and constipation. Every night, I have a severe fever along with chills and headaches. The last couple of days has been really uncomfortable.","experiencing extreme belly pain constipation every night , severe fever along chills headaches last couple days really uncomfortable" +5037,Typhoid,"I've been feeling exhausted and weak, and I can't seem to get rid of it. Because of the vomiting and nausea, I've entirely lost my appetite. My belly pains which are causing me concern.","feeling exhausted weak , seem get rid vomiting nausea , entirely lost appetite belly pains causing concern" +5038,Typhoid,"I am experiencing constipation and stomach ache, which has been really difficult. The discomfort has gotten worse, and it is seriously interfering with my everyday life.","experiencing constipation stomach ache , really difficult discomfort gotten worse , seriously interfering everyday life" +5039,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. I have a high fever, as well as constipation and headache.","vomiting diarrhea , lot difficulties staying hydrated high fever , well constipation headache" +5040,Typhoid,The abdominal pain has been frequent and really painful. Constipation and vomiting have also occurred. I'm quite worried about my health.,abdominal pain frequent really painful constipation vomiting also occurred quite worried health +5041,Typhoid,"I'm having severe stomach pain and constipation. Every night, I get a headache and chills. The last few days have been really painful.","severe stomach pain constipation every night , get headache chills last days really painful" +5042,Typhoid,There is a distinct pain in my abdominal part. I am not sure what it is. I am also going through constant vomiting and feel nauseous.,distinct pain abdominal part sure also going constant vomiting feel nauseous +5043,Typhoid,"The diarrhea has been quite fluid and smelly, and it has been accompanied by severe abdominal pain and headache. Most of the time, I feel like vomiting.","diarrhea quite fluid smelly , accompanied severe abdominal pain headache time , feel like vomiting" +5044,Typhoid,"I have had a fever for the last couple of days. Now, I am starting to experience a severe pain in my stomach area and suffering from constipation.","fever last couple days , starting experience severe pain stomach area suffering constipation" +5045,Typhoid,"I am experiencing a lot of nausea and vomiting, and it's been quite difficult for me to eat anything. I've entirely lost my appetite, and as a result, I have become quite weak.","experiencing lot nausea vomiting , quite difficult eat anything entirely lost appetite , result , become quite weak" +5046,Typhoid,"I am having a lot of trouble sleeping because of the high fever and the headache. Moreover, I have constant belly pain, because of which I can't go to work.","lot trouble sleeping high fever headache moreover , constant belly pain , go work" +5047,Typhoid,"I have been feeling really fatigued and weak, and I can't seem to get rid of it. I have a mild fever and a strange pain in my abdominal area. I can't understand what is happening.","feeling really fatigued weak , seem get rid mild fever strange pain abdominal area understand happening" +5048,Typhoid,"I've been suffering from constipation and stomach discomfort, which has been really uncomfortable. Last night, I had a mild fever too.","suffering constipation stomach discomfort , really uncomfortable last night , mild fever" +5049,Typhoid,"I've also been suffering from diarrhea, which has been really uncomfortable. It comes and goes, and it's accompanied by stomach aches and vomiting.","also suffering diarrhea , really uncomfortable comes goes , accompanied stomach aches vomiting" +5050,Typhoid,"I've been experiencing chills, fever, and extreme stomach discomfort. I've been generally unhappy, and I can't seem to get rid of these symptoms.","experiencing chills , fever , extreme stomach discomfort generally unhappy , seem get rid symptoms" +5051,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. There is a mild fever, too, as well as stomach pain.","vomiting diarrhea , lot difficulties staying hydrated mild fever , , well stomach pain" +5052,Typhoid,"I have developed diarrhea. It is accompanied by severe pain in my belly area. I don't feel like eating anything, and most of the time, I have a mild headache.","developed diarrhea accompanied severe pain belly area feel like eating anything , time , mild headache" +5053,Typhoid,"I've had a lot of bloating and constipation, which has been really painful. There is a lot of pressure and pain in my stomach area. I get a high fever and chills every night.","lot bloating constipation , really painful lot pressure pain stomach area get high fever chills every night" +5054,Typhoid,"I've had a persistent stomach pain for the past week, and it is not healing even with medication. I feel like vomiting and can't eat anything, and because of which I have become extremely weak.","persistent stomach pain past week , healing even medication feel like vomiting eat anything , become extremely weak" +5055,Typhoid,I am having severe stomach discomfort and diarrhoea. I have a high fever along with a headache. The previous several days have been really unpleasant.,severe stomach discomfort diarrhoea high fever along headache previous several days really unpleasant +5056,Typhoid,"I am having a terrible pain in my abdominal part, and I've been feeling really nauseated. I'm also experiencing a mild fever. I am really worried.","terrible pain abdominal part , feeling really nauseated also experiencing mild fever really worried" +5057,Typhoid,"I am experiencing constipation and stomach ache. The discomfort has gotten worse, and it is seriously interfering with my everyday life. I feel like I have lost my appetite to eat anything.","experiencing constipation stomach ache discomfort gotten worse , seriously interfering everyday life feel like lost appetite eat anything" +5058,Typhoid,"Most of the time I feel fatigued. I don't want to eat anything. I get a high fever and chills every night. Moreover, I have been vomiting since yesterday.","time feel fatigued want eat anything get high fever chills every night moreover , vomiting since yesterday" +5059,Typhoid,"I have lost my appetite and have noticed a significant weight loss. I have abdominal pain, especially in the area of my stomach and intestines. I am concerned about my health.","lost appetite noticed significant weight loss abdominal pain , especially area stomach intestines concerned health" +5060,Typhoid,The stomach discomfort has been severe and frequent. Vomiting and constipation have also happened. I'm concerned about my health.,stomach discomfort severe frequent vomiting constipation also happened concerned health +5061,Typhoid,"I have been experiencing diarrhea and have had loose, watery stools several times a day. I have lost my appetite and feel nauseated all the time. I am starting to get a mild fever too.","experiencing diarrhea loose , watery stools several times day lost appetite feel nauseated time starting get mild fever" +5062,Typhoid,"I am feeling quite weak. I'm having a lot of stomach discomfort and constipation, which is really bothering me. I have a strong urge to vomit at times, and as a result, I can't eat anything.","feeling quite weak lot stomach discomfort constipation , really bothering strong urge vomit times , result , eat anything" +5063,Typhoid,"There is strange pain in my stomach area. I don't know what the reason behind this is. Moreover, I am starting to get a mild fever along with chills and headaches.","strange pain stomach area know reason behind moreover , starting get mild fever along chills headaches" +5064,Typhoid,"I've had a high fever, particularly at night. It's been quite unpleasant. There is a little headache, as well as constipation and diarrhea. I don't feel like eating anything.","high fever , particularly night quite unpleasant little headache , well constipation diarrhea feel like eating anything" +5065,Typhoid,"I've been having a lot of trouble staying hydrated because of the vomiting and diarrhea. I have a high fever, constipation, and a headache. I am also starting to get a strange pain in my stomach area and I can't do anything physical.","lot trouble staying hydrated vomiting diarrhea high fever , constipation , headache also starting get strange pain stomach area anything physical" +5066,Typhoid,"I have been getting a headache for the past week that has been growing worse. It has been accompanied by stomach pains, constipation, and diarrhea. I don't know what is happening and I am really worried about it.","getting headache past week growing worse accompanied stomach pains , constipation , diarrhea know happening really worried" +5067,Typhoid,"I've lost a lot of weight in the last week because I couldn't eat much due to nausea and vomiting. This is followed by a high fever, headache, and stomach pain.","lost lot weight last week eat much due nausea vomiting followed high fever , headache , stomach pain" +5068,Typhoid,"I am having some diarrhea and constipation, which has been quite concerning. In my stomach, there is a severe, painful ache. I'm constantly exhausted and don't feel like eating anything.","diarrhea constipation , quite concerning stomach , severe , painful ache constantly exhausted feel like eating anything" +5069,Typhoid,"I've been having diarrhoea and loose, watery stools many times a day. I've lost my appetite and am always sick. I'm also developing a mild fever. Also, my abdominal part pains a lot. I don't know what the reason behind all of these is.","diarrhoea loose , watery stools many times day lost appetite always sick also developing mild fever also , abdominal part pains lot know reason behind" +5070,Chicken pox,"I've been experiencing intense itching all over my skin, and it's driving me crazy. I also have a rash that's red and inflamed.","experiencing intense itching skin , driving crazy also rash red inflamed" +5071,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself.","feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate" +5072,Chicken pox,"I've had a high fever for the past few days. I don't know what's causing it. Also, I noticed rashes on my skin and it's hard for me to resist scratching.","high fever past days know causing also , noticed rashes skin hard resist scratching" +5073,Chicken pox,I've lost my appetite and can't seem to eat anything. I'm worried about my health.,lost appetite seem eat anything worried health +5074,Chicken pox,There are small red spots all over my body that I can't explain. It's worrying me. I feel extremely tired and experience a mild fever every night.,small red spots body explain worrying feel extremely tired experience mild fever every night +5075,Chicken pox,"My lymph nodes are swollen, causing discomfort in my neck and armpits. I don't know what's causing it.","lymph nodes swollen , causing discomfort neck armpits know causing" +5076,Chicken pox,"I'm feeling really sick and uncomfortable like something is wrong inside. I don't know what it could be. I noticed small red spots on my arms, which itches if I touch them.","feeling really sick uncomfortable like something wrong inside know could noticed small red spots arms , itches touch" +5077,Chicken pox,The itching is making it hard for me to sleep at night. I can't get any rest. I have also lost my appetite and feel lethargic.,itching making hard sleep night get rest also lost appetite feel lethargic +5078,Chicken pox,"I'm worried about this rash on my skin. It's spreading rapidly and causing a lot of discomforts. I can hardly sleep at night because of the itching,","worried rash skin spreading rapidly causing lot discomforts hardly sleep night itching ," +5079,Chicken pox,I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong.,energy lost appetite feeling really sick know wrong +5080,Chicken pox,"I have a skin rash that's red and inflamed, and it's spreading all over my body. I've been experiencing intense itching, especially on my arms and legs.","skin rash red inflamed , spreading body experiencing intense itching , especially arms legs" +5081,Chicken pox,"I've had a high fever for the past few days, and it's starting to worry me. I don't know what's causing it. Also, I have red spots all over my arms and legs, some of which are swollen.","high fever past days , starting worry know causing also , red spots arms legs , swollen" +5082,Chicken pox,"I have a skin rash that's red and swollen, and it's spreading all over my body. I have a mild fever and it is causing me a lot of discomforts.","skin rash red swollen , spreading body mild fever causing lot discomforts" +5083,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself.","feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate" +5084,Chicken pox,There are small red spots all over my body that I can't explain. The bumps are itchy and uncomfortable and seem to spread rapidly. It's worrying me.,small red spots body explain bumps itchy uncomfortable seem spread rapidly worrying +5085,Chicken pox,The itching is making it hard for me to sleep at night. I can't seem to get any rest because the rash is so itchy and uncomfortable. I'm feeling really tired and exhausted.,itching making hard sleep night seem get rest rash itchy uncomfortable feeling really tired exhausted +5086,Chicken pox,I have no energy and have lost my appetite. I have a high fever and severe headache and don't know what's wrong.,energy lost appetite high fever severe headache know wrong +5087,Chicken pox,The high fever and swollen lymph nodes are causing me much discomfort. I have a headache and feel weak and fatigued. It's hard for me to concentrate because of the fever.,high fever swollen lymph nodes causing much discomfort headache feel weak fatigued hard concentrate fever +5088,Chicken pox,"The rash on my skin is causing a lot of discomforts. It's red and inflamed, spreading all over my body. The rash is accompanied by intense itching, especially on my arms and legs.","rash skin causing lot discomforts red inflamed , spreading body rash accompanied intense itching , especially arms legs" +5089,Chicken pox,"There are red spots all over my body that I can't explain. The spots are itchy and starting to swell, and they are spreading rapidly.","red spots body explain spots itchy starting swell , spreading rapidly" +5090,Chicken pox,I have small lymph nodes on my arms and face. The itching is making my day very uncomfortable.,small lymph nodes arms face itching making day uncomfortable +5091,Chicken pox,"I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. Also, there are small red spots starting to show on my skin.","energy lost appetite feeling really sick know wrong also , small red spots starting show skin" +5092,Chicken pox,"I've had a mild fever for the past few days, and it's starting to worry me. The fever has been accompanied by a severe headache. I feel weak and lethargic.","mild fever past days , starting worry fever accompanied severe headache feel weak lethargic" +5093,Chicken pox,"I have swollen lymph nodes and red spots all over my body, and they are causing discomfort. I also have a mild fever and feel tired most of the time.","swollen lymph nodes red spots body , causing discomfort also mild fever feel tired time" +5094,Chicken pox,"I've been suffering from severe itching all over my body, and it's driving me insane. I also have a red and irritating rash.","suffering severe itching body , driving insane also red irritating rash" +5095,Chicken pox,"I have seen rashes on my skin, and it's difficult for me not to scratch. Also, I've had a high fever for several days. I'm not sure what's causing it.","seen rashes skin , difficult scratch also , high fever several days sure causing" +5096,Chicken pox,"I have little red spots all over my body that I don't understand. It worries me. I have lost my appetite and every night, I am exhausted and have a severe headache.","little red spots body understand worries lost appetite every night , exhausted severe headache" +5097,Chicken pox,"I'm feeling really sick and lost my appetite. I've seen little red patches on my arms, neck and face that itch when I touch them.","feeling really sick lost appetite seen little red patches arms , neck face itch touch" +5098,Chicken pox,I have red spots on my arms and legs and itching them makes it difficult for me to sleep at night. I also have severe headaches and a mild fever.,red spots arms legs itching makes difficult sleep night also severe headaches mild fever +5099,Chicken pox,Enlarged lymph nodes are giving me a great deal of pain. I have rashes all over my body and because of which I cannot sleep all night.,enlarged lymph nodes giving great deal pain rashes body sleep night +5100,Chicken pox,"My skin rash is giving me a lot of pain and discomfort. It's red and swollen, and it's spreading throughout my body.","skin rash giving lot pain discomfort red swollen , spreading throughout body" +5101,Chicken pox,I have a high fever and a mild headache. I'm tired most of the time and completely lost my appetite.,high fever mild headache tired time completely lost appetite +5102,Chicken pox,"My arms and face have small lymph nodes, which are starting to swell. My day has been made really miserable by the constant itching and pain.","arms face small lymph nodes , starting swell day made really miserable constant itching pain" +5103,Chicken pox,"My arms and neck have large lymph nodes, which itch when I touch them. The itching has made my day extremely uncomfortable.","arms neck large lymph nodes , itch touch itching made day extremely uncomfortable" +5104,Chicken pox,"My skin rash is causing me a great deal of pain. There are also small red spots developing near my neck. Since yesterday, I have had a severe fever, headache and fatigue.","skin rash causing great deal pain also small red spots developing near neck since yesterday , severe fever , headache fatigue" +5105,Chicken pox,"I am starting to develop tiny red spots all over my face and neck area, and it itches when I touch them. The itching is making my day very uncomfortable.","starting develop tiny red spots face neck area , itches touch itching making day uncomfortable" +5106,Chicken pox,"I have lost my appetite completely and can't seem to eat anything. I feel like vomiting and feel exhausted. I noticed rashes on my skin, which is really concerning me.","lost appetite completely seem eat anything feel like vomiting feel exhausted noticed rashes skin , really concerning" +5107,Chicken pox,I have a high fever and a severe headache. I can't seem to eat anything and feel like vomiting. There are also some red spots developing on my arms. I am really worried.,high fever severe headache seem eat anything feel like vomiting also red spots developing arms really worried +5108,Chicken pox,I'm worried about these red spots on my skin. It's spreading rapidly and causing a lot of problems. I also developed a mild fever and headache every night.,worried red spots skin spreading rapidly causing lot problems also developed mild fever headache every night +5109,Chicken pox,I'm feeling really nauseous and uneasy. I'm not sure what it might be. I've seen rashes on my arms and legs. I have lost my appetite and feel exhausted every day.,feeling really nauseous uneasy sure might seen rashes arms legs lost appetite feel exhausted every day +5110,Chicken pox,I have swollen red lymph nodes on my arms and legs that itch when I touch them. I'm also suffering from a terrible headache and a mild fever. I don't feel like eating anything and have lost my appetite.,swollen red lymph nodes arms legs itch touch also suffering terrible headache mild fever feel like eating anything lost appetite +5111,Chicken pox,I'm really exhausted and lacking in energy. I can hardly keep my eyes open during the day. I have a mild fever and don't feel like eating anything. I think I have lost my appetite.,really exhausted lacking energy hardly keep eyes open day mild fever feel like eating anything think lost appetite +5112,Chicken pox,"I am exhausted and have lost my appetite. I feel vomiting and can't eat anything. In addition, little red spots are beginning to appear on my skin and near the neck. I am really worried about my health.","exhausted lost appetite feel vomiting eat anything addition , little red spots beginning appear skin near neck really worried health" +5113,Chicken pox,There are small red spots all over my body. The spots are itchy and uncomfortable. I also have a mild fever and headache.,small red spots body spots itchy uncomfortable also mild fever headache +5114,Chicken pox,"I've been suffering from severe itching all over my body, along with a fever and headache. The red spots are starting to swell and it is getting really uncomfortable every day.","suffering severe itching body , along fever headache red spots starting swell getting really uncomfortable every day" +5115,Chicken pox,I feel tired every day. There are red spots all over my arms and back and it itches if I touch them. I am really worried and not sure what to do.,feel tired every day red spots arms back itches touch really worried sure +5116,Chicken pox,"The high fever, swollen lymph nodes and headache are causing me a lot of trouble. I don't feel like eating anything and feel weak and fatigued. It's hard for me to concentrate on my daily life.","high fever , swollen lymph nodes headache causing lot trouble feel like eating anything feel weak fatigued hard concentrate daily life" +5117,Chicken pox,"I have a high fever and red spots and rashes all over my body. I feel exhausted and have completely lost my appetite, which has made me weak and lethargic. I am really worried.","high fever red spots rashes body feel exhausted completely lost appetite , made weak lethargic really worried" +5118,Chicken pox,I have seen rashes on my arms and neck and it itches if I scratch them. I've also had a high fever for a few days. I have no idea what is causing it. The itching is causing me a lot of discomforts.,seen rashes arms neck itches scratch also high fever days idea causing itching causing lot discomforts +5119,Chicken pox,"There are red swollen spots all over my body. It itches if I touch them. Moreover, I also have a high fever and headache and always feel exhausted.","red swollen spots body itches touch moreover , also high fever headache always feel exhausted" +5120,Impetigo,I have developed a skin rash on my face and neck. The rash is made up of red sores that are blistering. I am worried about my health.,developed skin rash face neck rash made red sores blistering worried health +5121,Impetigo,"I have developed skin rashes made up of blistering sores. The blistering sores are raised, fluid-filled lesions and they are painful to touch. I am also suffering from a high fever.","developed skin rashes made blistering sores blistering sores raised , fluid filled lesions painful touch also suffering high fever" +5122,Impetigo,I have a high fever. There are red sores developing near my nose. The sores are painful and have yellow rust-colored ooze coming out from them.,high fever red sores developing near nose sores painful yellow rust colored ooze coming +5123,Impetigo,"There are rashes around my nose, with large red sores. I noticed that the rash was spreading to other parts of my body. Also, I have a high fever every night.","rashes around nose , large red sores noticed rash spreading parts body also , high fever every night" +5124,Impetigo,I have been suffering from a high fever for the last couple of days. Sores are developing near my nose. The sores are painful and I am feeling very uncomfortable these days.,suffering high fever last couple days sores developing near nose sores painful feeling uncomfortable days +5125,Impetigo,"My skin has developed rashes, mainly near the nose. The rash is spreading to other parts of my body. I am really about worried about this.","skin developed rashes , mainly near nose rash spreading parts body really worried" +5126,Impetigo,I have been experiencing extreme fatigue and a high fever. There are rashes near my nose and mouth. The rash is itchy and makes it very difficult for me to sleep.,experiencing extreme fatigue high fever rashes near nose mouth rash itchy makes difficult sleep +5127,Impetigo,"I am suffering from extreme fever and weakness. I have developed sores on my face. The sores itchy and uncomfortable. Often, a yellow colored ooze comes out of the sores.","suffering extreme fever weakness developed sores face sores itchy uncomfortable often , yellow colored ooze comes sores" +5128,Impetigo,I have noticed that the sores are taking longer to heal and are more prone to infection. The sores on my face are swollen and tender to the touch and very uncomfortable to handle.,noticed sores taking longer heal prone infection sores face swollen tender touch uncomfortable handle +5129,Impetigo,There are red sores on my face and near my nose. I have noticed that the rash is spreading more quickly on my neck and chest.,red sores face near nose noticed rash spreading quickly neck chest +5130,Impetigo,The sores around my nose have become crusted over and are difficult to touch. A yellow-rust coloured ooze used to come out of the sores. It is taking much more time to handle.,sores around nose become crusted difficult touch yellow rust coloured ooze used come sores taking much time handle +5131,Impetigo,"I developed a minor rash near my nose a few days ago. Now, the rash is accompanied by a burning sensation and redness of the skin. I feel it is some kind of an infection.","developed minor rash near nose days ago , rash accompanied burning sensation redness skin feel kind infection" +5132,Impetigo,"Initially, I developed small red sores near my nose and neck. Now, I am having a high fever and the sores have become more painful and inflamed over the past few days.","initially , developed small red sores near nose neck , high fever sores become painful inflamed past days" +5133,Impetigo,"I noticed a skin rash on my face. It was made up of a blistering sore. Today I observed a yellow colored fluid coming out of the sores, I am not sure what it is.","noticed skin rash face made blistering sore today observed yellow colored fluid coming sores , sure" +5134,Impetigo,"The sores on my face are beginning to weep clear fluid. Also, every night I get a high fever and chills, because of which I cannot sleep all night.","sores face beginning weep clear fluid also , every night get high fever chills , sleep night" +5135,Impetigo,I initially had rashes on my face and near my nose. But now the rash is spreading down my arms and legs.,initially rashes face near nose rash spreading arms legs +5136,Impetigo,"I have a high fever every night and developed sores on my face, particularly near my nose. I have noticed that the sores are taking longer to heal and are more prone to infection.","high fever every night developed sores face , particularly near nose noticed sores taking longer heal prone infection" +5137,Impetigo,"The sores around my nose are now surrounded by red, inflamed skin. The rash has caused my skin to become dry and flaky, with a visible yellow colored fluid coming out of the sores.","sores around nose surrounded red , inflamed skin rash caused skin become dry flaky , visible yellow colored fluid coming sores" +5138,Impetigo,"I have also been experiencing flu-like symptoms, such as fever and body pain. I have noticed red rashes and blistering sores near my nose and lips. It's itchy and uncomfortable.","also experiencing flu like symptoms , fever body pain noticed red rashes blistering sores near nose lips itchy uncomfortable" +5139,Impetigo,I am suffering from mild fever and headache. There are small sores near my nose and rashes on my neck. I am going through a very tough time right now.,suffering mild fever headache small sores near nose rashes neck going tough time right +5140,Impetigo,"There is a rash particularly bad around my nose, with large red sores that are painful and have yellow rust-colored ooze coming from them.","rash particularly bad around nose , large red sores painful yellow rust colored ooze coming" +5141,Impetigo,"There are sores on my face and mostly near my nose and lips. The sores are causing discomfort or pain, and there is a discharge of yellow or rust-colored fluid from them.","sores face mostly near nose lips sores causing discomfort pain , discharge yellow rust colored fluid" +5142,Impetigo,"I have been developing sores on my face and nose area. I am not sure what is causing this. The sores on my face are swollen and tender to the touch, and I have a burning sensation and redness of the skin.","developing sores face nose area sure causing sores face swollen tender touch , burning sensation redness skin" +5143,Impetigo,"The rash on my face has become more painful and inflamed over the past few days, and the sores are beginning to weep clear fluid. It is getting extremely painful with each day.","rash face become painful inflamed past days , sores beginning weep clear fluid getting extremely painful day" +5144,Impetigo,I have rashes on my face. I am starting to have small sores around my nose and often a yellow fluid comes out of the sores. The sores are becoming extremely painful.,rashes face starting small sores around nose often yellow fluid comes sores sores becoming extremely painful +5145,Impetigo,"I am feeling really sick. I have a high fever and headache. I noticed rashes on my arms and face. I am extremely worried about this. Today, I observed red sores near my nose.","feeling really sick high fever headache noticed rashes arms face extremely worried today , observed red sores near nose" +5146,Impetigo,"I've been suffering from a high fever for the past few days. Sores are forming around my nose and there are rashes on different parts of my body. The sores are severe, and I'm feeling really uneasy these days.","suffering high fever past days sores forming around nose rashes different parts body sores severe , feeling really uneasy days" +5147,Impetigo,I have a high fever and am really weak. My face has gotten sores. The blisters are itchy and painful. A yellow ooze frequently leaks from the wounds.,high fever really weak face gotten sores blisters itchy painful yellow ooze frequently leaks wounds +5148,Impetigo,"I am experiencing skin rashes with burning sores. The blistering sores are fluid-filled, elevated, red colored lesions that are unpleasant to touch. I also have a high fever.","experiencing skin rashes burning sores blistering sores fluid filled , elevated , red colored lesions unpleasant touch also high fever" +5149,Impetigo,"I believe I have some skin disease. There are rashes on my face and small sores near my nose. The sores have become red, and painful and some kind of a yellow ooze discharges from them.","believe skin disease rashes face small sores near nose sores become red , painful kind yellow ooze discharges" +5150,Impetigo,"I have noticed that the sores on my face are healing more slowly and are more likely to become infected. My cheek sores are large, painful to the touch, and extremely difficult to handle. I can't seem to get rid of these sores.","noticed sores face healing slowly likely become infected cheek sores large , painful touch , extremely difficult handle seem get rid sores" +5151,Impetigo,"I am having a high fever. I've had a skin rash on my face, neck and arms. The rash is made up of burning red lesions. I'm concerned about my health.","high fever skin rash face , neck arms rash made burning red lesions concerned health" +5152,Impetigo,"I've acquired skin rashes with blistering sores. The blistering sores are fluid-filled, elevated lesions that are unpleasant to touch. I'm also running a high fever.","acquired skin rashes blistering sores blistering sores fluid filled , elevated lesions unpleasant touch also running high fever" +5153,Impetigo,"I'm running a high temperature. Near my nose, red sores are forming. The lesions are painful, and yellow rust-colored fluid is oozing from them.","running high temperature near nose , red sores forming lesions painful , yellow rust colored fluid oozing" +5154,Impetigo,"I have rashes around my nose, as well as huge red sores. The rash is spreading to other places on my body, as I've seen. In addition, I have a high temperature every night.","rashes around nose , well huge red sores rash spreading places body , seen addition , high temperature every night" +5155,Impetigo,My cheeks and nose are covered with red sores. I've observed that the rash on my neck and chest is spreading faster. I am also developing a mild fever.,cheeks nose covered red sores observed rash neck chest spreading faster also developing mild fever +5156,Impetigo,My nasal sores have crusted up and become difficult to touch. The wounds used to leak a yellow-rust coloured fluid. It is taking a lot longer to deal with using medication.,nasal sores crusted become difficult touch wounds used leak yellow rust coloured fluid taking lot longer deal using medication +5157,Impetigo,"A few days ago, I experienced a tiny rash around my nose. The rash is now accompanied by a burning feeling and skin redness and discharge of fluid. I believe it is some sort of infection.","days ago , experienced tiny rash around nose rash accompanied burning feeling skin redness discharge fluid believe sort infection" +5158,Impetigo,"Small red sores appeared near my nose and neck at first. I now have a high temperature, and the sores have gotten more painful and inflamed in recent days.","small red sores appeared near nose neck first high temperature , sores gotten painful inflamed recent days" +5159,Impetigo,"A rash has developed around my nose and lips, with huge red lesions that are painful and emit a yellow rust-colored fluid.","rash developed around nose lips , huge red lesions painful emit yellow rust colored fluid" +5160,Impetigo,"My face is covered in sores. Most of them are near my nose and lips. The lesions are causing discomfort or suffering, and a yellow or rust-colored fluid is oozing from them.","face covered sores near nose lips lesions causing discomfort suffering , yellow rust colored fluid oozing" +5161,Impetigo,"I've started getting sores on my face and nose. I have no idea what is causing this. My cheek sores are large and irritating to the touch, and I have a burning feeling and skin redness.","started getting sores face nose idea causing cheek sores large irritating touch , burning feeling skin redness" +5162,Impetigo,"Over the last two days, the rash on my face has gotten more severe and inflamed, and the blisters have begun to bleed clear pus. It is really painful to deal with.","last two days , rash face gotten severe inflamed , blisters begun bleed clear pus really painful deal" +5163,Impetigo,"I feel I have a skin condition. My face has rashes and little blisters around my nose. The wounds have turned red and painful, and a yellow liquid is oozing from them.","feel skin condition face rashes little blisters around nose wounds turned red painful , yellow liquid oozing" +5164,Impetigo,"I've observed that the lesions on my face are healing slower and are more prone to infection. The lesions on my cheeks are huge, unpleasant to the touch, and incredibly difficult to treat. I can't seem to get these sores to go away.","observed lesions face healing slower prone infection lesions cheeks huge , unpleasant touch , incredibly difficult treat seem get sores go away" +5165,Impetigo,"I'm running a high temperature. I've developed a rash on my face, neck, and arms. The rash consists of painful red lesions. My health is a concern for me.","running high temperature developed rash face , neck , arms rash consists painful red lesions health concern" +5166,Impetigo,"Over the last week, the rash on my face has gotten more severe and painful, and the sores have begun to discharge a yellow colored fluid. It's becoming increasingly painful by the day.","last week , rash face gotten severe painful , sores begun discharge yellow colored fluid becoming increasingly painful day" +5167,Impetigo,"I've had rashes on my face. I'm developing little sores around my nose, and a yellow ooze is frequently oozing from them. The lesions have become even more painful.","rashes face developing little sores around nose , yellow ooze frequently oozing lesions become even painful" +5168,Impetigo,I'm feeling quite ill. I have a high fever and a headache. Rashes appeared on my arms and face. I'm quite concerned about this. I saw red sores around my nose and lips today.,feeling quite ill high fever headache rashes appeared arms face quite concerned saw red sores around nose lips today +5169,Impetigo,"The rashes on my face are not healing. I tried some medications but it is not helping much. Recently, I noticed small sores near my nose. They are painful and very difficult to handle.","rashes face healing tried medications helping much recently , noticed small sores near nose painful difficult handle" +5170,Dengue,I am facing severe joint pain and vomitting. I have developed a skin rash that covers my entire body and is accompanied by intense itching. ,facing severe joint pain vomitting developed skin rash covers entire body accompanied intense itching +5171,Dengue,"I have been experiencing chills and shivering, despite being in a warm environment. My back pains all the time and there are red spots on my arms.","experiencing chills shivering , despite warm environment back pains time red spots arms" +5172,Dengue,"I have been experiencing severe joint pain that makes it difficult for me to move and perform my daily activities. Also, I have lost my apetite because of which I feel weak.","experiencing severe joint pain makes difficult move perform daily activities also , lost apetite feel weak" +5173,Dengue,I have been vomiting frequently and have lost my appetite as a result. My joints and back pain all the time.,vomiting frequently lost appetite result joints back pain time +5174,Dengue,I have a high fever accompanied with severe headache and body pain. I experince chills every night. There is a distinct pain behind my eyes too.,high fever accompanied severe headache body pain experince chills every night distinct pain behind eyes +5175,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. I have developed rashes on my neck, which itch upon touching. ","feeling extremely tired fatigued , energy anything developed rashes neck , itch upon touching" +5176,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I have lost my apetite and experience chills every night. ,experiencing severe headache accompanied pain behind eyes lost apetite experience chills every night +5177,Dengue,I have been feeling nauseous and have a constant urge to vomit. There is a strong pain behind my eyes and there are small red spots all over my arms.,feeling nauseous constant urge vomit strong pain behind eyes small red spots arms +5178,Dengue,I have developed red spots on my body that are itchy and inflamed. I am also experiencing high fever along with chills and shivering. ,developed red spots body itchy inflamed also experiencing high fever along chills shivering +5179,Dengue,I have been experiencing muscle pain that makes it difficult for me to move around. I have lost my apetite and feel vomiting. My legs and back pain a lot. ,experiencing muscle pain makes difficult move around lost apetite feel vomiting legs back pain lot +5180,Dengue,"I have been experiencing back pain that is worse when I sit or stand for a long time. Also, there are rashes all over my body. There is a pain behind my eyes too.","experiencing back pain worse sit stand long time also , rashes body pain behind eyes" +5181,Dengue,The skin rash I have developed is accompanied by redness and swelling. I don’t feel well as I have severe fever accompanied with body pain.,skin rash developed accompanied redness swelling feel well severe fever accompanied body pain +5182,Dengue,The chills and shivering I have been experiencing are accompanied by a feeling of coldness and high fever. I have also developed rashes on my arms and red spots on my neck.,chills shivering experiencing accompanied feeling coldness high fever also developed rashes arms red spots neck +5183,Dengue,"The joint pain I have been experiencing is severe and feels like a constant ache. My head aches most of the time and I am starting to develope mild fever, accompanied with chills. ","joint pain experiencing severe feels like constant ache head aches time starting develope mild fever , accompanied chills" +5184,Dengue,The vomiting I have been experiencing is accompanied by stomach cramps and dizziness. I have lost my apetite and feel weak as a result. There is a pain behind my eyes too.,vomiting experiencing accompanied stomach cramps dizziness lost apetite feel weak result pain behind eyes +5185,Dengue,The high fever I have been experiencing is accompanied by sweating and weakness. My muscles pain as a result I cannot work all day. ,high fever experiencing accompanied sweating weakness muscles pain result work day +5186,Dengue,"The fatigue I have been feeling is extreme and makes it difficult for me to perform even basic tasks. I feel vomitting and developed rashes on my arms, neck and legs. ","fatigue feeling extreme makes difficult perform even basic tasks feel vomitting developed rashes arms , neck legs" +5187,Dengue,The headache I have been experiencing is severe and is accompanied by a feeling of pressure in my head. I have mild fever along with headache. There are small red spots on my back.,headache experiencing severe accompanied feeling pressure head mild fever along headache small red spots back +5188,Dengue,The nausea I have been feeling is accompanied by a loss of appetite and feeling of unease. There is a distinct pain in my back and muscles pain too. ,nausea feeling accompanied loss appetite feeling unease distinct pain back muscles pain +5189,Dengue,The muscle pain I have been experiencing is severe and feels like a constant ache. There are red spots all over my body and the itching is causing me a lot of discomfort.,muscle pain experiencing severe feels like constant ache red spots body itching causing lot discomfort +5190,Dengue,"I have developed a skin rash that covers my entire body and is accompanied by intense itching. My body pains and I have a mild fever, acompanied with headache and chills.","developed skin rash covers entire body accompanied intense itching body pains mild fever , acompanied headache chills" +5191,Dengue,"I'm experiencing extreme body pain, headache and vomiting. I've developed red spots that covers my entire body and causes severe itching.","experiencing extreme body pain , headache vomiting developed red spots covers entire body causes severe itching" +5192,Dengue,"My back hurts all the time, and my arms and neck have rashes. The back of eyes pain a lot. I also have fever and it is making we worried about my health.","back hurts time , arms neck rashes back eyes pain lot also fever making worried health" +5193,Dengue,"I've been suffering from significant joint pain, which makes it difficult for me to walk and carry out my everyday tasks. I've also lost my appetite, which makes me feel weak and feel like vomitting.","suffering significant joint pain , makes difficult walk carry everyday tasks also lost appetite , makes feel weak feel like vomitting" +5194,Dengue,There is a constant behind my eyes. I have developed red spots on my neck and face and rashes on my arms. My arms and legs pain a lot. . The spots are itchy and uncomfortable and it is worrying me.,constant behind eyes developed red spots neck face rashes arms arms legs pain lot spots itchy uncomfortable worrying +5195,Dengue,"I've been feeling sick and feel a strong need to vomit. There is a sharp ache behind my eyes, and swollen red dots all over my back.","feeling sick feel strong need vomit sharp ache behind eyes , swollen red dots back" +5196,Dengue,My shivers and shivering have been accompanied with a sensation of coldness and a very high fever. Rashes on my arms and red patches on my neck have also appeared. ,shivers shivering accompanied sensation coldness high fever rashes arms red patches neck also appeared +5197,Dengue,"I have been suffering from severe joint ache. I feel vomiting most of the time, and I am developing a moderate fever with chills. The fever that doesn't seem to come down even with medication.","suffering severe joint ache feel vomiting time , developing moderate fever chills fever seem come even medication" +5198,Dengue,"The vomiting I've been having has been followed by stomach pains and dizziness. I've lost my appetite and as a result feel weak. My arms, back, neck pain most of the time.","vomiting followed stomach pains dizziness lost appetite result feel weak arms , back , neck pain time" +5199,Dengue,I have developed red spots on my arms and legs that are itchy and inflamed. I have been feeling nauseaus and have a constant urge to vomit. This is accomapanied by mild fever.,developed red spots arms legs itchy inflamed feeling nauseaus constant urge vomit accomapanied mild fever +5200,Dengue,"I have developed a skin rash that covers my entire body. The rash is red and swollen, and is worse in certain areas such as my arms and legs. I have also lost my appetite. ","developed skin rash covers entire body rash red swollen , worse certain areas arms legs also lost appetite" +5201,Dengue,I have been experiencing chills and shivering. There is a strong pain in my back and also behind my eyes. I have also noticed small red spots on my back and neck. ,experiencing chills shivering strong pain back also behind eyes also noticed small red spots back neck +5202,Dengue,I have been experiencing severe joint pain that is making my day very difficult. I feel like vomiting all the time and have a mild headache too.,experiencing severe joint pain making day difficult feel like vomiting time mild headache +5203,Dengue,"I have been vomiting frequently and have lost my appetite as a result. There are rashes on my skin and my eyes pain, because of which I cannot sleep properly.","vomiting frequently lost appetite result rashes skin eyes pain , sleep properly" +5204,Dengue,I have a high fever along with a severe headache. The fever is accompanied by extreme body pain and chills. I am worried about my health and don’t know what to do.,high fever along severe headache fever accompanied extreme body pain chills worried health know +5205,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. The fatigue is so severe that I struggle to get out of bed. I have noticed small red spots on my arms and legs. ","feeling extremely tired fatigued , energy anything fatigue severe struggle get bed noticed small red spots arms legs" +5206,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I feel tired and fatigued because of which I cannot work all day. I am worried about my health.,experiencing severe headache accompanied pain behind eyes feel tired fatigued work day worried health +5207,Dengue,"I have been feeling nauseous and have a constant urge to vomit, which is accompanied with mild fever and headache. ","feeling nauseous constant urge vomit , accompanied mild fever headache" +5208,Dengue,I have developed rashes on my body that are itchy and. I have lost my appetite and feel very tired all day. I feel something is wrong with my body.,developed rashes body itchy lost appetite feel tired day feel something wrong body +5209,Dengue,"I have been experiencing muscle pain and headache. The muscle pain feels like a constant ache and is worse when I try to use the affected muscles. There are small red spots developing on my face, neck and arms.","experiencing muscle pain headache muscle pain feels like constant ache worse try use affected muscles small red spots developing face , neck arms" +5210,Dengue,"My back hurts, and I have rashes on my arms and armpits. The back of my eyeballs hurt a lot. I also have a mild fever, which is making us concerned about my health. ","back hurts , rashes arms armpits back eyeballs hurt lot also mild fever , making us concerned health" +5211,Dengue,"I am experiencing very high fever and chills every night. It is really concerning me. Moreover, I don’t feel like eating anything and my back, arms, legs pain a lot. There is a strange pain behing my eyes. I can’t do any physical activities. ","experiencing high fever chills every night really concerning moreover , feel like eating anything back , arms , legs pain lot strange pain behing eyes physical activities" +5212,Dengue,"As a result of my regular vomiting, I've lost my appetite. My muscles, joints and back constantly hurt. I am starting to have fever too. I am really worried and not sure what to do.","result regular vomiting , lost appetite muscles , joints back constantly hurt starting fever really worried sure" +5213,Dengue,I have been experiencing a severe fever that is accompanied by pain behind my eyes and headache. I feel tired and exhasuted because of which I cannot do any work.,experiencing severe fever accompanied pain behind eyes headache feel tired exhasuted work +5214,Dengue,"My whole body is paining a lot and I don’t feel like eating anything. I have mild fever and get chills every night. Also, there are some red spots developing on my back and neck.","whole body paining lot feel like eating anything mild fever get chills every night also , red spots developing back neck" +5215,Dengue,"My joints and back pain everyday. I feel like vomitting and this has made me very weak. Because of my body pain, I am not able to focus on my work and don’t feel like doing anything.","joints back pain everyday feel like vomitting made weak body pain , able focus work feel like anything" +5216,Dengue,The body pain I have been feeling is extreme. I has lost my appetite and developed rashes on my arms and face. The back of my eyes pain a lot.,body pain feeling extreme lost appetite developed rashes arms face back eyes pain lot +5217,Dengue,I have developed rashes on my body. I am also experiencing high fever along with chills and headache. My joints and back hurt and there is a strange pain in the back of my eyes.,developed rashes body also experiencing high fever along chills headache joints back hurt strange pain back eyes +5218,Dengue,"I have been feeling nauseous and have a constant urge to vomit. I get high fever and chills every night and feel terrible because of this. Also, I feel I have lost my appetite.","feeling nauseous constant urge vomit get high fever chills every night feel terrible also , feel lost appetite" +5219,Dengue,"There are rashes on my skin, which itch if I touch them. I don’t feel good as my joints pain whole day. At night, I have mild fever and get chills, because of which I can’t sleep too.","rashes skin , itch touch feel good joints pain whole day night , mild fever get chills , sleep" +5220,Fungal infection,"I have raised lumps, a rash that looks red and inflamed, discoloured areas of skin that are different colours from the rest of my skin, and itching on my skin.","raised lumps , rash looks red inflamed , discoloured areas skin different colours rest skin , itching skin" +5221,Fungal infection,"All over my body, there has been a severe itching that has been followed by a red, bumpy rash. My skin also has a few darkened spots and a few tiny, nodular breakouts. It has been happening for several days and is becoming worse.","body , severe itching followed red , bumpy rash skin also darkened spots tiny , nodular breakouts happening several days becoming worse" +5222,Fungal infection,"I've had a rash on my skin that looks like dischromic patches, and I also have a lot of nodular eruptions and really bad itching. During the previous week, it has become worse.","rash skin looks like dischromic patches , also lot nodular eruptions really bad itching previous week , become worse" +5223,Fungal infection,"I've had a rash that won't go away and a bothersome itching on my skin. In addition, I've seen some color-different areas and bumps that resemble knots or lumps on my skin.","rash go away bothersome itching skin addition , seen color different areas bumps resemble knots lumps skin" +5224,Fungal infection,"I have a rash all over my body, and I can't stop scratching because my skin is itchy. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples.","rash body , stop scratching skin itchy skin also spots hue altered lumps knot like pimples" +5225,Fungal infection,"Recently, my skin has been quite itchy, and I have a rash all over my body. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples.","recently , skin quite itchy , rash body skin also spots hue altered lumps knot like pimples" +5226,Fungal infection,"My skin has been itching a lot and developing a rash. Additionally, I have a few areas of my skin that are a different hue than the rest of it. Additionally, I have a few firm pimples or breakouts on my skin.","skin itching lot developing rash additionally , areas skin different hue rest additionally , firm pimples breakouts skin" +5227,Fungal infection,"All over my body has been itching like crazy, and now there are red areas all over. Additionally, some of the patches have a different tone than my natural skin. And on my skin, there are these lumps or pimples that have developed.","body itching like crazy , red areas additionally , patches different tone natural skin skin , lumps pimples developed" +5228,Fungal infection,"My skin has been acting up recently, becoming extremely itchy and rashes-prone. Additionally, there are certain spots that deviate from my natural skin tone in terms of hue. And now my skin has these lumps or bumps that weren't there before.","skin acting recently , becoming extremely itchy rashes prone additionally , certain spots deviate natural skin tone terms hue skin lumps bumps" +5229,Fungal infection,"On my arms and legs, I have a lot of red pimples and itchy skin. My skin also has a few odd-looking lesions. And occasionally there are bumps that are somewhat uncomfortable.","arms legs , lot red pimples itchy skin skin also odd looking lesions occasionally bumps somewhat uncomfortable" +5230,Fungal infection,I have an itchy skin and lots of red bumps on my arms and legs. There are some weird looking spots on my skin too. And sometimes there are bumps that feel kind of hard.,itchy skin lots red bumps arms legs weird looking spots skin sometimes bumps feel kind hard +5231,Fungal infection,"Doctor, I have a really itchy rash on my skin and there are some weird spots that are a different color. There are also some bumps on my skin that look like little knots","doctor , really itchy rash skin weird spots different color also bumps skin look like little knots" +5232,Fungal infection,"Doctor, My skin is covered in a very uncomfortable rash, along with some odd patches of a different hue. My skin also has a few pimples that resemble little knots","doctor , skin covered uncomfortable rash , along odd patches different hue skin also pimples resemble little knots" +5233,Fungal infection,"I have lots of itchy spots on my skin, and sometimes they turn red or bumpy. There are also some weird patches that are different colors than the rest of my skin, and sometimes I get these weird bumps that look like little balls.","lots itchy spots skin , sometimes turn red bumpy also weird patches different colors rest skin , sometimes get weird bumps look like little balls" +5234,Fungal infection,"My skin frequently develops itchy bumps that can occasionally turn red or rough. Aside from that, my skin occasionally develops strange pimples that resemble small balls and some odd spots that are a different hue from the rest of my skin.","skin frequently develops itchy bumps occasionally turn red rough aside , skin occasionally develops strange pimples resemble small balls odd spots different hue rest skin" +5235,Fungal infection,"Doctor, I have these red rashes that keep popping up and my skin is continuously itching. In addition, I've observed some odd color-different spots on my skin, as well as some little nodules on my skin that appear to be expanding.","doctor , red rashes keep popping skin continuously itching addition , observed odd color different spots skin , well little nodules skin appear expanding" +5236,Fungal infection,"I have been experiencing some really intense itching all over my body, along with redness and bumps on my skin. There are also these weird patches that are different colors than the rest of my skin, and sometimes I get these nodules that look like small bumps.","experiencing really intense itching body , along redness bumps skin also weird patches different colors rest skin , sometimes get nodules look like small bumps" +5237,Fungal infection,"All over my body, I've been scratching so much that my skin has become red and developed pimples. Additionally, I occasionally get these nodules that resemble little pimples, as well as these strange patches that are a different hue from the rest of my skin.","body , scratching much skin become red developed pimples additionally , occasionally get nodules resemble little pimples , well strange patches different hue rest skin" +5238,Fungal infection,"I've been experiencing a lot of itching, which has been accompanied with a rash that appears to be growing worse over time. There are also certain areas of skin that are different colours from the rest, and I've spotted several lumps that resemble little nodes.","experiencing lot itching , accompanied rash appears growing worse time also certain areas skin different colours rest , spotted several lumps resemble little nodes" +5239,Fungal infection,"I've been having a lot of problems with itching, and it's been accompanied by a rash that seems to be getting worse over time. There are also some patches of skin that are different colors than the rest, and I've noticed some bumps that look like little nodes.","lot problems itching , accompanied rash seems getting worse time also patches skin different colors rest , noticed bumps look like little nodes" +5240,Fungal infection,"Doctor, My skin is covered in an uncomfortable rash and has a few odd patches of skin that are a different colour. There are a few pimples on my skin that resemble little knots.","doctor , skin covered uncomfortable rash odd patches skin different colour pimples skin resemble little knots" +5241,Fungal infection,"I've been itching a lot, and it's been accompanied with a rash that looks to be getting worse over time. There are also some patches of skin that are different colours from the rest of the skin, as well as some lumps that resemble little nodes.","itching lot , accompanied rash looks getting worse time also patches skin different colours rest skin , well lumps resemble little nodes" +5242,Fungal infection,"My skin has been acting up lately, becoming exceedingly itchy and prone to rashes. Furthermore, several patches differ from my normal skin tone in terms of colour. And now I have lumps or bumps on my skin that weren't there before.","skin acting lately , becoming exceedingly itchy prone rashes furthermore , several patches differ normal skin tone terms colour lumps bumps skin" +5243,Fungal infection,"A rash that appears to be developing throughout my skin has been accompanying my recent bouts of intense itching and discomfort. On my skin, I also have some dischromic spots and little lumps that seem to be appearing everywhere.","rash appears developing throughout skin accompanying recent bouts intense itching discomfort skin , also dischromic spots little lumps seem appearing everywhere" +5244,Fungal infection,"My skin always itches, and occasionally it becomes quite rough and red. In addition, I occasionally get little pimples that resemble tiny balls and certain spots that are a different colour from the rest of my skin. It severely irritates me and itches.","skin always itches , occasionally becomes quite rough red addition , occasionally get little pimples resemble tiny balls certain spots different colour rest skin severely irritates itches" +5245,Fungal infection,"I have a lot of itching all over my skin, and sometimes it gets really red and bumpy. There are also some patches that are different colors than the rest of my skin, and sometimes I get these little bumps that look like little balls. It's really annoying and itchy.","lot itching skin , sometimes gets really red bumpy also patches different colors rest skin , sometimes get little bumps look like little balls really annoying itchy" +5246,Fungal infection,"I have a pretty irritating itch all over my body, and my skin also has a few red, bumpy areas. I've also had some pimples that resemble small balls and other spots that are a different colour than the rest of my skin. ","pretty irritating itch body , skin also red , bumpy areas also pimples resemble small balls spots different colour rest skin" +5247,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my skin that are a different hue than the rest of it, and I've had some pimples that resemble little balls.","pretty uncomfortable itch body , well red bumpy areas skin also certain patches skin different hue rest , pimples resemble little balls" +5248,Fungal infection,"I've been having this really annoying itch all over my body, and I have red and bumpy spots on my skin too. There are also some areas that are a different color than the rest of my skin, and I've had some bumps that look like little balls.","really annoying itch body , red bumpy spots skin also areas different color rest skin , bumps look like little balls" +5249,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my epidermis with a distinct shade than the rest of it, and I've had some pimples that resemble little balls.","pretty uncomfortable itch body , well red bumpy areas skin also certain patches epidermis distinct shade rest , pimples resemble little balls" +5250,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that look different in shade than the rest of my skin, and I've had some bumps that are kind of hard.","really itchy lately rashy spots skin also areas look different shade rest skin , bumps kind hard" +5251,Fungal infection,"I've been quite itchy recently, and I have rashy patches all over my skin. There are also certain regions that are darker in colour than the rest of my skin, and I've got some firm lumps.","quite itchy recently , rashy patches skin also certain regions darker colour rest skin , got firm lumps" +5252,Fungal infection,"I've been rather itchy recently, and I have rashy blotches all over my skin. There are also certain regions that are more dark in color than the rest of my skin, and I've got some painful lumps.","rather itchy recently , rashy blotches skin also certain regions dark color rest skin , got painful lumps" +5253,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. Additionally, I've had a few pimples that are rather firm, and there are certain spots on my body that have a different shade of brown than the rest of my skin.","recently , scratching lot , skin covered rashy places additionally , pimples rather firm , certain spots body different shade brown rest skin" +5254,Fungal infection,"My skin has been really itchy and there are these rashy spots all over. There are also some patches that look different in color than the rest of my skin, and I've had some bumps that are kind of hard.","skin really itchy rashy spots also patches look different color rest skin , bumps kind hard" +5255,Fungal infection,"My skin has been really scratchy, and there are rashes all over my body. I have some bumps that are quite firm, as well as some areas that are a darker shade from the rest of my skin. It's extremely unpleasant.","skin really scratchy , rashes body bumps quite firm , well areas darker shade rest skin extremely unpleasant" +5256,Fungal infection,"There are rashy areas all over my skin, which has been really irritating. Additionally, I have some bumps that are fairly firm and some patches that are a different colour from the rest of my skin.","rashy areas skin , really irritating additionally , bumps fairly firm patches different colour rest skin" +5257,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. In addition, there are a few spots where my skin doesn't appear to be its usual shade, and I've experienced a few lumps that are quite painful.","recently , scratching lot , skin covered rashy places addition , spots skin appear usual shade , experienced lumps quite painful" +5258,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that don't look like the normal color of my skin, and I've had some bumps that are kind of hard","really itchy lately rashy spots skin also areas look like normal color skin , bumps kind hard" +5259,Fungal infection,"I've been quite itchy recently, and I have rashy places all over my body. There are also some regions that don't appear to be the typical hue of my skin, and I've experienced some firm lumps.","quite itchy recently , rashy places body also regions appear typical hue skin , experienced firm lumps" +5260,Fungal infection,"I've been itching and have rashy patches all over my skin recently. There are also some regions that don't appear to be the regular tone of my skin, and I've experienced some painful bumps.","itching rashy patches skin recently also regions appear regular tone skin , experienced painful bumps" +5261,Fungal infection,"Recently, I've been itching myself a lot, and my skin is covered with rashy patches. Furthermore, there are a few regions where my skin doesn't appear to be its usual tone, and I've experienced a few lumps that are exceptionally painful.","recently , itching lot , skin covered rashy patches furthermore , regions skin appear usual tone , experienced lumps exceptionally painful" +5262,Fungal infection,"I've been having this constant itch and there are these red and bumpy spots on my skin. There are also some patches that are a different color than the rest of my skin, and I've had some bumps that are kind of like little lumps.","constant itch red bumpy spots skin also patches different color rest skin , bumps kind like little lumps" +5263,Fungal infection,"There are red, bumpy areas on my skin, and I've been scratching myself nonstop. Additionally, I have some bumps that resemble little lumps and some spots that are a different shade of skin than the rest of my body.","red , bumpy areas skin , scratching nonstop additionally , bumps resemble little lumps spots different shade skin rest body" +5264,Fungal infection,"I've had a lot of itching on my skin, which occasionally turns into a rash. There are also some odd patches of skin that are a different hue than the rest of me, and I occasionally get little pimples that resemble nodules.","lot itching skin , occasionally turns rash also odd patches skin different hue rest , occasionally get little pimples resemble nodules" +5265,Fungal infection,"I've had a tendency of itching on my skin, that frequently turns into a rash. There are also some strange patches of skin that are a different tone than the rest of my skin, and I regularly get little lumps that mimic nodules.","tendency itching skin , frequently turns rash also strange patches skin different tone rest skin , regularly get little lumps mimic nodules" +5266,Fungal infection,"I've been experiencing a lot of itching on my skin, and sometimes it turns into a rash. There are also some strange patches of skin that are a different color than the rest of me, and sometimes I get little bumps that look like nodules.","experiencing lot itching skin , sometimes turns rash also strange patches skin different color rest , sometimes get little bumps look like nodules" +5267,Fungal infection,"My body has been itching terribly all over, and there are now red spots everywhere. Some of the patches also differ in tone from my natural complexion. And there are these lumps or pimples that have appeared on my skin.","body itching terribly , red spots everywhere patches also differ tone natural complexion lumps pimples appeared skin" +5268,Fungal infection,"My skin has been really itchy lately, and it occasionally erupts into a rash. In addition, I have a few odd areas of skin that are a different coloration from the rest of me, and occasionally I develop little bumps that look  like nodules.","skin really itchy lately , occasionally erupts rash addition , odd areas skin different coloration rest , occasionally develop little bumps look like nodules" +5269,Fungal infection,There are now red blotches all over my body where I have been itching horribly all over. A few of the patches also differ in complexion from my natural skin. And these lumps or bumps have developed on my skin.,red blotches body itching horribly patches also differ complexion natural skin lumps bumps developed skin +5270,Common Cold,"I can't stop sneezing and my nose is really runny. I'm also really cold and tired all the time, and I've been coughing a lot. My fever is really high too, like way above normal.","stop sneezing nose really runny also really cold tired time , coughing lot fever really high , like way normal" +5271,Common Cold,"My nose is extremely runny, and I can't seem to stop sneezing. In addition, I constantly feel cold, exhausted, and I've been coughing a lot. My fever is also really high far above normal.","nose extremely runny , seem stop sneezing addition , constantly feel cold , exhausted , coughing lot fever also really high far normal" +5272,Common Cold,"I've been sneezing nonstop and I can't seem to shake this chill. I'm feeling really weak and tired, and my cough won't go away. My fever is really high","sneezing nonstop seem shake chill feeling really weak tired , cough go away fever really high" +5273,Common Cold,"I've been sneezing incessantly and I just can't get this chill to go away. I feel so weak and exhausted, and my cough won't stop. My temperature is really high.","sneezing incessantly get chill go away feel weak exhausted , cough stop temperature really high" +5274,Common Cold,I'm constantly sneezing and my body is shaking from being cold. I'm so tired I can barely move and my head is killing me. My fever is through the roof,constantly sneezing body shaking cold tired barely move head killing fever roof +5275,Common Cold,"I'm constantly sneezing, and the cold is making my body tremble. I'm so exhausted that I can hardly move, and my head hurts. My fever is quite high.","constantly sneezing , cold making body tremble exhausted hardly move , head hurts fever quite high" +5276,Common Cold,"I've been quite exhausted and ill. I'm sneezing nonstop and am quite cold. My head is throbbing, and I lack energy. Additionally, I have a very high fever and feel like I am on fire.","quite exhausted ill sneezing nonstop quite cold head throbbing , lack energy additionally , high fever feel like fire" +5277,Common Cold,"I've been feeling really tired and sick. I've been sneezing a lot and I can't seem to get warm. I'm so tired and my head is killing me. And my fever is really high, like I'm boiling.","feeling really tired sick sneezing lot seem get warm tired head killing fever really high , like boiling" +5278,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak" +5279,Common Cold,"I've been quite exhausted and ill. I have been sneezing a lot and am having trouble warming up. I'm so exhausted, and my head hurts. And I feel like I am boiling over with my high temperature.","quite exhausted ill sneezing lot trouble warming exhausted , head hurts feel like boiling high temperature" +5280,Common Cold,I can't stop sneezing and I feel really tired and crummy. My throat is really sore and I have a lot of gunky stuff in my nose and throat. My neck feels swollen and puffy too.,stop sneezing feel really tired crummy throat really sore lot gunky stuff nose throat neck feels swollen puffy +5281,Common Cold,"I can't stop sneezing, and I'm exhausted and sick. My throat is really uncomfortable, and there is a lot of junk in my nose and throat. My neck is also swollen and puffy.","stop sneezing , exhausted sick throat really uncomfortable , lot junk nose throat neck also swollen puffy" +5282,Common Cold,"I keep sneezing, and I'm miserable and exhausted. I have a lot of gunky things in my nose and throat, and my throat is really hurting. My neck also feels puffy and swollen.","keep sneezing , miserable exhausted lot gunky things nose throat , throat really hurting neck also feels puffy swollen" +5283,Common Cold,I've been feeling really exhausted and sick to my stomach. I've had a really bad cough and my throat has hurt a lot. I've experienced substantial sinus pressure and a congested nose. I'm really unpleasant and worn out.,feeling really exhausted sick stomach really bad cough throat hurt lot experienced substantial sinus pressure congested nose really unpleasant worn +5284,Common Cold,I've been sneezing a lot and feeling really tired and sick. There's also a lot of gross stuff coming out of my nose and my throat feels really scratchy. And my neck feels swollen too.,sneezing lot feeling really tired sick also lot gross stuff coming nose throat feels really scratchy neck feels swollen +5285,Common Cold,"I've been wheezing a lot and am generally feeling sick and exhausted. My throat feels really scratchy, and a lot of gross stuff is flowing out of my nose. My neck also feels bloated.","wheezing lot generally feeling sick exhausted throat feels really scratchy , lot gross stuff flowing nose neck also feels bloated" +5286,Common Cold,"My sinuses feel incredibly congested, and my eyes are continuously red. I just constantly feel drained and exhausted. In addition, I have a lot of uncomfortable phlegm in my throat. My lymph nodes feel bloated, and breathing has been challenging.","sinuses feel incredibly congested , eyes continuously red constantly feel drained exhausted addition , lot uncomfortable phlegm throat lymph nodes feel bloated , breathing challenging" +5287,Common Cold,My eyes have been really red and my sinuses feel congested. I just don't have any energy and my throat has been really itchy. I've also noticed my lymph nodes are swollen and I've been coughing up a lot of phlegm.,eyes really red sinuses feel congested energy throat really itchy also noticed lymph nodes swollen coughing lot phlegm +5288,Common Cold,"My sinuses feel stuffy, and my eyes have been quite red. I simply lack energy, and my throat has been really scratchy. Along with the swelling in my lymph nodes, I've also been coughing up a lot of phlegm.","sinuses feel stuffy , eyes quite red simply lack energy , throat really scratchy along swelling lymph nodes , also coughing lot phlegm" +5289,Common Cold,"My eyes are always red and itchy, and my nose feels all stuffy and congested. I just feel kind of sick and tired all the time, and I keep coughing up all this gunk. My throat feels sore and scratchy, and I've noticed that the bumps on my neck are bigger than usual","eyes always red itchy , nose feels stuffy congested feel kind sick tired time , keep coughing gunk throat feels sore scratchy , noticed bumps neck bigger usual" +5290,Common Cold,"My nose always feels stuffy and congested, and my eyes are always red and itching. I have a feeling of being unwell and fatigued, and I keep hacking up this gunk. I have a scratchy, irritated throat, and I've seen that my neck's bumps are larger than usual.","nose always feels stuffy congested , eyes always red itching feeling unwell fatigued , keep hacking gunk scratchy , irritated throat , seen neck bumps larger usual" +5291,Common Cold,"I keep sneezing, and my eyes don't quit dripping. It's incredibly difficult for me to breathe because it feels like there is something trapped in my throat. I often feel exhausted, and lately, I've had a lot of phlegm. Moreover, my lymph nodes are enlarged.","keep sneezing , eyes quit dripping incredibly difficult breathe feels like something trapped throat often feel exhausted , lately , lot phlegm moreover , lymph nodes enlarged" +5292,Common Cold,My eyes are red and watery all the time. I've also had this pressure in my sinuses that won't go away. I'm always feeling tired and I've been having a lot of trouble breathing. I've also had a lot of gunk in my throat and my lymph nodes are swollen.,eyes red watery time also pressure sinuses go away always feeling tired lot trouble breathing also lot gunk throat lymph nodes swollen +5293,Common Cold,"My eyes are constantly red and runny. A persistent tightness in my sinuses has also been bothering me. I've been having a lot of difficulties breathing and constantly feel fatigued. In addition, I have a lot of throat mucus and inflamed lymph nodes.","eyes constantly red runny persistent tightness sinuses also bothering lot difficulties breathing constantly feel fatigued addition , lot throat mucus inflamed lymph nodes" +5294,Common Cold,"My nose feels quite clogged, and my eyes are constantly very red and runny. In addition, my chest hurts and I've been having a lot of breathing problems. In addition, my muscles feel quite painful, and I can't smell anything.","nose feels quite clogged , eyes constantly red runny addition , chest hurts lot breathing problems addition , muscles feel quite painful , smell anything" +5295,Common Cold,"My eyes are usually red and runny, and my nose is always stuffy. I've also been having difficulty breathing and my chest hurts. In addition, I can't smell anything and my muscles are quite painful.","eyes usually red runny , nose always stuffy also difficulty breathing chest hurts addition , smell anything muscles quite painful" +5296,Common Cold,"My eyes are usually red and inflamed, and I have the impression that something is clogging my sinuses. I've been coughing up a lot of gunk, and my chest hurts. I can't smell anything, and my muscles are aching.","eyes usually red inflamed , impression something clogging sinuses coughing lot gunk , chest hurts smell anything , muscles aching" +5297,Common Cold,"My eyes are always red and swollen, and I feel like there's something blocking my sinuses. I've been coughing up a lot of goo and my chest feels really heavy. I can't smell anything and my muscles are really sore","eyes always red swollen , feel like something blocking sinuses coughing lot goo chest feels really heavy smell anything muscles really sore" +5298,Common Cold,"I've been coughing a lot and feeling chilly and shivery. My nose has been quite clogged, and I am experiencing facial pressure. I also have a lot of phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching.","coughing lot feeling chilly shivery nose quite clogged , experiencing facial pressure also lot phlegm , coughing pains chest smell anything , muscles aching" +5299,Common Cold,"For days, I've had a nasty cough and cold. My sinuses are clogged, and I have facial pressure. I've also been creating phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching.","days , nasty cough cold sinuses clogged , facial pressure also creating phlegm , coughing pains chest smell anything , muscles aching" +5300,Common Cold,"I've had a nasty cough and cold for days. My sinuses are congested, and I have facial pressure. I've also been coughing up mucus, and it pains my chest. I can't smell anything and my muscles are aching.","nasty cough cold days sinuses congested , facial pressure also coughing mucus , pains chest smell anything muscles aching" +5301,Common Cold,"My cough and cold have been awful for days. My sinuses are congested, and my face is under strain. Additionally, I've been coughing up phlegm, and it hurts in my chest. I have no sense of smell, and my muscles hurt a lot.","cough cold awful days sinuses congested , face strain additionally , coughing phlegm , hurts chest sense smell , muscles hurt lot" +5302,Common Cold,"I'm coughing nonstop and I'm shivering terribly. I have a stuffy nose and my face is under strain. In addition, my throat is coughing up some nasty gunk, and my chest hurts. My muscles hurt a lot, and I can't smell anything.","coughing nonstop shivering terribly stuffy nose face strain addition , throat coughing nasty gunk , chest hurts muscles hurt lot , smell anything" +5303,Common Cold,I can't stop coughing and I feel really cold. My sinuses are all blocked and I have a lot of mucus. My chest hurts and I can't smell anything. My muscles are also really sore.,stop coughing feel really cold sinuses blocked lot mucus chest hurts smell anything muscles also really sore +5304,Common Cold,"I'm coughing nonstop and am really chilly. My mucus production is excessive, and my sinuses are fully clogged. I can't smell anything, and my chest hurts. My muscles are quite painful as well.","coughing nonstop really chilly mucus production excessive , sinuses fully clogged smell anything , chest hurts muscles quite painful well" +5305,Common Cold,"I can't stop coughing and I'm freezing. My sinuses are completely blocked, and I'm inundated with mucous. My chest hurts, and I'm unable to smell anything. My muscles are also really achy.","stop coughing freezing sinuses completely blocked , inundated mucous chest hurts , unable smell anything muscles also really achy" +5306,Common Cold,"I've been coughing a lot and finding it difficult to breathe. My throat hurts and I feel like I have a lot of phlegm trapped in my chest. My nose has been running a lot, and I've been feeling really congested.","coughing lot finding difficult breathe throat hurts feel like lot phlegm trapped chest nose running lot , feeling really congested" +5307,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak" +5308,Common Cold,"I've been experiencing severe weariness and a sickly sensation. My throat has been really painful and I've had a fairly severe cough. My nose has been quite stuffy, and I've had significant sinus pressure. I'm really miserable and extremely exhausted.","experiencing severe weariness sickly sensation throat really painful fairly severe cough nose quite stuffy , significant sinus pressure really miserable extremely exhausted" +5309,Common Cold,I've been feeling really sick and I've had a lot of fatigue. I've had a really bad cough and my throat has been really sore. I've had a lot of sinus pressure and my nose has been really congested. I just feel really run down and miserable.,feeling really sick lot fatigue really bad cough throat really sore lot sinus pressure nose really congested feel really run miserable +5310,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Simply put, I feel really run down and feeble.","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature simply put , feel really run feeble" +5311,Common Cold,I've been really weary and ill. I've been suffering from a severe cough and sore throat. I've got a lot of chills and a pretty high temperature. I simply feel tired and run down.,really weary ill suffering severe cough sore throat got lot chills pretty high temperature simply feel tired run +5312,Common Cold,"I can't quit sneezing, and my nose is running. I'm also constantly chilly and exhausted, and I've been coughing a lot. My fever is also really high, well above usual.","quit sneezing , nose running also constantly chilly exhausted , coughing lot fever also really high , well usual" +5313,Common Cold,"I've been feeling awful, with a lot of congestion and a runny nose. I've been coughing a lot and having a lot of chest pain. My fever has been really high, and I've been experiencing severe muscular discomfort.","feeling awful , lot congestion runny nose coughing lot lot chest pain fever really high , experiencing severe muscular discomfort" +5314,Common Cold,"My neck is swollen, and I'm exhausted. My throat is scratchy, and my eyes are burning red. My nose is really clogged, and I am experiencing facial pressure. My chest hurts, and I'm unable to smell anything.","neck swollen , exhausted throat scratchy , eyes burning red nose really clogged , experiencing facial pressure chest hurts , unable smell anything" +5315,Common Cold,"I lack energy and feel like my neck is bloated. My eyes are red, and my throat feels scratchy. I have severe congestion in my nostrils, and my face is under pressure. I can't smell anything, and my chest hurts.","lack energy feel like neck bloated eyes red , throat feels scratchy severe congestion nostrils , face pressure smell anything , chest hurts" +5316,Common Cold,"I feel quite weak, and my lymph nodes are enlarged. My eyes are burning, and my throat hurts. My sinuses are under strain, and my nose is stuffy. I can't smell anything, and my chest hurts.","feel quite weak , lymph nodes enlarged eyes burning , throat hurts sinuses strain , nose stuffy smell anything , chest hurts" +5317,Common Cold,"I've had a terrible cough and cold for days. My face is tired and my sinuses are blocked. In addition, my chest hurts from the phlegm I've been coughing up. I can't smell, and my muscles are in terrible pain.","terrible cough cold days face tired sinuses blocked addition , chest hurts phlegm coughing smell , muscles terrible pain" +5318,Common Cold,"I have red, watery eyes all the time. My sinuses have also been bothered by a constant tightness. My breathing has been quite tough, and I've been feeling worn out all the time. My lymph nodes are irritated, and I also have a lot of throat mucous.","red , watery eyes time sinuses also bothered constant tightness breathing quite tough , feeling worn time lymph nodes irritated , also lot throat mucous" +5319,Common Cold,"I always get hot, puffy eyes and the feeling that something is obstructing my sinuses. My chest feels quite heavy, and I've been coughing up a lot of gunk. I have no sense of smell, and my muscles hurt a lot.","always get hot , puffy eyes feeling something obstructing sinuses chest feels quite heavy , coughing lot gunk sense smell , muscles hurt lot" +5320,Pneumonia,"I've been feeling really cold and tired lately, and I've been coughing a lot with chest pain. My heart is beating really fast too, and when I cough, the phlegm is kind of a rusty color.","feeling really cold tired lately , coughing lot chest pain heart beating really fast , cough , phlegm kind rusty color" +5321,Pneumonia,"I've been coughing a lot recently with chest pain and feeling incredibly chilly and exhausted. Additionally, my heart is thumping rapidly, and the phlegm I cough up has a reddish hue.","coughing lot recently chest pain feeling incredibly chilly exhausted additionally , heart thumping rapidly , phlegm cough reddish hue" +5322,Pneumonia,"I've been feeling really drained and cold, and I can't stop coughing. It hurts in my chest when I do, and my heart feels like it's racing. The mucus I'm coughing up is a gross brownish color.","feeling really drained cold , stop coughing hurts chest , heart feels like racing mucus coughing gross brownish color" +5323,Pneumonia,"I've been exhausted and chilly, and I can't stop coughing. When I do, it pains in my chest and makes my heart race. My coughing mucous has a disgusting brownish hue.","exhausted chilly , stop coughing , pains chest makes heart race coughing mucous disgusting brownish hue" +5324,Pneumonia,"I've been having chills and feeling exhausted, and I can't seem to shake this cough. My chest hurts when I cough, and my heart feels like it's going a million miles an hour. The phlegm I'm coughing up is a dirty rust color.","chills feeling exhausted , seem shake cough chest hurts cough , heart feels like going million miles hour phlegm coughing dirty rust color" +5325,Pneumonia,"I've been experiencing chills, feeling worn out, and I can't seem to get rid of this cough. When I cough, my chest aches and my heart feels as like it is beating a million miles per hour. I'm coughing up a nasty rust-colored phlegm.","experiencing chills , feeling worn , seem get rid cough cough , chest aches heart feels like beating million miles per hour coughing nasty rust colored phlegm" +5326,Pneumonia,"I've been feeling really weak and cold lately, and this cough won't go away. It hurts in my chest when I cough, and my heart is pounding. The mucus I'm bringing up is a rusty brown color.","feeling really weak cold lately , cough go away hurts chest cough , heart pounding mucus bringing rusty brown color" +5327,Pneumonia,"I've been having chills and feeling really worn out, and this cough won't go away. My chest hurts when I cough, and my heart is racing. The mucus I'm bringing up is a gross brownish color.","chills feeling really worn , cough go away chest hurts cough , heart racing mucus bringing gross brownish color" +5328,Pneumonia,"I've been experiencing chills, feel really exhausted, and my cough just won't go away. When I cough, my chest aches and my heart is pounding. It's a disgusting brownish hue, the mucous I'm coming up.","experiencing chills , feel really exhausted , cough go away cough , chest aches heart pounding disgusting brownish hue , mucous coming" +5329,Pneumonia,"I have a really high fever, and I'm having trouble breathing. I'm sweating a lot and feeling really cold and tired. My heart is beating really fast, and I have some brownish sputum","really high fever , trouble breathing sweating lot feeling really cold tired heart beating really fast , brownish sputum" +5330,Pneumonia,"I'm having problems breathing and have a very high fever. I'm perspiring a lot and experiencing extreme fatigue and chilly. My heart is racing, and I'm coughing up some brownish mucus.","problems breathing high fever perspiring lot experiencing extreme fatigue chilly heart racing , coughing brownish mucus" +5331,Pneumonia,"My temperature is very high, and I'm having a hard time breathing. I'm sweating profusely, and I'm shaking with chills. I'm really tired, and my heart is beating really fast. I also have some brownish phlegm coming up","temperature high , hard time breathing sweating profusely , shaking chills really tired , heart beating really fast also brownish phlegm coming" +5332,Pneumonia,"I'm having trouble breathing, and my fever is really high. I'm drenched in sweat and shivering from the chill. My heart is thumping rapidly, and I'm quite exhausted. Additionally, I'm about to have some brownish phlegm.","trouble breathing , fever really high drenched sweat shivering chill heart thumping rapidly , quite exhausted additionally , brownish phlegm" +5333,Pneumonia,"My fever is really high, and I'm having trouble catching my breath. I'm sweating a lot, feeling cold and tired, and my heart is beating really fast. I also have some brownish phlegm coming up.","fever really high , trouble catching breath sweating lot , feeling cold tired , heart beating really fast also brownish phlegm coming" +5334,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm.","really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm" +5335,Pneumonia,"I've been feeling really sick with a high fever, shortness of breath, sweating, chills, and extreme fatigue. My heart rate is rapid, and I've been coughing up a lot of brownish sputum.","feeling really sick high fever , shortness breath , sweating , chills , extreme fatigue heart rate rapid , coughing lot brownish sputum" +5336,Pneumonia,"With a high temperature, shortness of breath, sweating, chills, and intense exhaustion, I've been feeling quite poorly. I've been coughing up a lot of brownish phlegm and my pulse rate is racing.","high temperature , shortness breath , sweating , chills , intense exhaustion , feeling quite poorly coughing lot brownish phlegm pulse rate racing" +5337,Pneumonia,I'm having a really hard time catching my breath and I'm sweating a lot. I feel really sick and have a lot of mucus in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is dark and looks like rust.,really hard time catching breath sweating lot feel really sick lot mucus throat chest hurts heart racing mucus coughing dark looks like rust +5338,Pneumonia,"I'm sweating profusely and finding it difficult to catch my breath. I feel quite ill, and my throat is very mucous. My heart is pounding, and my chest aches. I'm coughing up thick mucous that resembles rust.","sweating profusely finding difficult catch breath feel quite ill , throat mucous heart pounding , chest aches coughing thick mucous resembles rust" +5339,Pneumonia,"I'm having a lot of trouble breathing and am really uneasy. I'm feeling unwell and am perspiring a lot. My chest hurts and I have a lot of mucus in my throat. My heart is racing, and the hue of the mucus I'm coughing up is off.","lot trouble breathing really uneasy feeling unwell perspiring lot chest hurts lot mucus throat heart racing , hue mucus coughing" +5340,Pneumonia,I can't seem to get enough air and I'm sweating a lot. I don't feel well and there's a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is reddish in color.,seem get enough air sweating lot feel well lot phlegm throat chest hurts heart racing mucus coughing reddish color +5341,Pneumonia,"I'm sweating profusely and can't seem to get enough air. My throat is filled with a lot of mucus, and I don't feel good. My heart is pounding, and my chest aches. I'm coughing up reddish-colored mucous.","sweating profusely seem get enough air throat filled lot mucus , feel good heart pounding , chest aches coughing reddish colored mucous" +5342,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is yellowish.,seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing yellowish +5343,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up brownish mucous.","dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing brownish mucous" +5344,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish.,hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish +5345,Pneumonia,"I'm having trouble breathing and am quite uneasy. My throat is filled with a lot of phlegm, and I'm perspiring a lot. My heart is racing, and my chest aches. I'm coughing up reddish mucous.","trouble breathing quite uneasy throat filled lot phlegm , perspiring lot heart racing , chest aches coughing reddish mucous" +5346,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is brownish and stringy.,seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing brownish stringy +5347,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up a stringy, brownish mucous.","dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing stringy , brownish mucous" +5348,Pneumonia,"I'm drenched with sweat and struggling to breathe. I don't feel well and have a lot of mucous in my throat. My chest aches, and my heart is racing. I'm coughing up mucus that is crimson in colour.","drenched sweat struggling breathe feel well lot mucous throat chest aches , heart racing coughing mucus crimson colour" +5349,Pneumonia,"I've been feeling very lousy, with a high temperature, shortness of breath, sweating, chills, and extreme weariness. My heart is beating, and I've been coughing up a lot of brownish phlegm.","feeling lousy , high temperature , shortness breath , sweating , chills , extreme weariness heart beating , coughing lot brownish phlegm" +5350,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm.","really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm" +5351,Pneumonia,"My fever is really high, and I'm having difficulty breathing. I'm drenched in sweat and shivering with chills. I'm quite fatigued, and my heart is racing. I'm also expecting some brownish phlegm.","fever really high , difficulty breathing drenched sweat shivering chills quite fatigued , heart racing also expecting brownish phlegm" +5352,Pneumonia,"I've been getting chills, feeling tired, and I can't seem to shake this cough. My chest aches and my heart feels like it's racing at a million miles per hour when I cough. I'm coughing out a foul rusty phlegm.","getting chills , feeling tired , seem shake cough chest aches heart feels like racing million miles per hour cough coughing foul rusty phlegm" +5353,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish.,hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish +5354,Pneumonia,"I'm having trouble breathing and am really uncomfortable. I'm sweating profusely and have a lot of mucus in my throat. My chest aches, and my heart is racing. I'm coughing up dark mucous.","trouble breathing really uncomfortable sweating profusely lot mucus throat chest aches , heart racing coughing dark mucous" +5355,Pneumonia,"I've got a high fever and can't seem to catch my breath. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm. My chest aches, and my heart has been racing rapidly.","got high fever seem catch breath sweating profusely generally feeling ill weak also quite thick black phlegm chest aches , heart racing rapidly" +5356,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark.","lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark" +5357,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm.","recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick black phlegm" +5358,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark.","lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark" +5359,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and red phlegm.","recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick red phlegm" +5360,Pneumonia,"I've had chills, lethargy, a cough, a high temperature, and difficulties breathing lately. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm.","chills , lethargy , cough , high temperature , difficulties breathing lately sweating profusely generally feeling ill weak also quite thick black phlegm" +5361,Pneumonia,"I've been having a lot of respiratory issues lately along with chills, exhaustion, a cough, and a high temperature. I've been sweating profusely and generally feeling ill and weak. My chest aches, and my heart has been racing rapidly.","lot respiratory issues lately along chills , exhaustion , cough , high temperature sweating profusely generally feeling ill weak chest aches , heart racing rapidly" +5362,Pneumonia,"I've been suffering with chills, tiredness, and a cough recently. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My chest aches, and my heart has been racing.","suffering chills , tiredness , cough recently sweating tremendously feeling overall unwell weak also thick , black phlegm chest aches , heart racing" +5363,Pneumonia,"I'm running a temperature and can't seem to catch my breath. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My heart has been beating frantically, and my chest hurts.","running temperature seem catch breath sweating tremendously feeling overall unwell weak also thick , black phlegm heart beating frantically , chest hurts" +5364,Pneumonia,"I'm drenched with sweat and can't seem to catch my breath. My throat is clogged with mucus, and I'm miserable. My heart is racing, and my chest aches. I'm coughing up a brownish stringy mucus.","drenched sweat seem catch breath throat clogged mucus , miserable heart racing , chest aches coughing brownish stringy mucus" +5365,Pneumonia,"I'm saturated with sweat and struggling to breathe. My throat is blocked with mucous, and I'm uncomfortable. My heart is racing, and my chest aches. I'm coughing up a darkish stringy mucous.","saturated sweat struggling breathe throat blocked mucous , uncomfortable heart racing , chest aches coughing darkish stringy mucous" +5366,Pneumonia,"I'm having a lot of problems breathing. I'm not feeling good, and I'm sweating a lot. I have a lot of mucous in my throat and my chest hurts. My breathing is laboured, and the phlegm I'm coughing up has an odd tint.","lot problems breathing feeling good , sweating lot lot mucous throat chest hurts breathing laboured , phlegm coughing odd tint" +5367,Pneumonia,"I have a lot of difficulty breathing. I don't feel well, and I'm perspiring a lot. My chest hurts, and I have a lot of mucus in my throat. I'm having trouble breathing, and the phlegm I'm coughing up has a strange hue.","lot difficulty breathing feel well , perspiring lot chest hurts , lot mucus throat trouble breathing , phlegm coughing strange hue" +5368,Pneumonia,"I've been coughing a lot and feeling incredibly chilly and exhausted. I have a pretty high fever, and it's difficult for me to breathe. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm.","coughing lot feeling incredibly chilly exhausted pretty high fever , difficult breathe perspiring lot generally feeling weak ill quite thick black phlegm" +5369,Pneumonia,"I've recently had chills, exhaustion, a cough, a high temperature, and breathing issues. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm. My heart has been racing quite quickly.","recently chills , exhaustion , cough , high temperature , breathing issues perspiring lot generally feeling weak ill quite thick black phlegm heart racing quite quickly" +5370,Dimorphic Hemorrhoids,"Constipation, discomfort with bowel motions, and anus pain have all recently been bothering me. My anus has been quite inflamed, and my stool has been extremely bloody.","constipation , discomfort bowel motions , anus pain recently bothering anus quite inflamed , stool extremely bloody" +5371,Dimorphic Hemorrhoids,"Lately I've been experiencing constipation, pain during bowel movements, and pain in my anus. My stool has also been really bloody and my anus has been really irritated.","lately experiencing constipation , pain bowel movements , pain anus stool also really bloody anus really irritated" +5372,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. My bowel movements have been extremely uncomfortable and difficult for me to have.  My anus has been quite inflamed, and my stool has been extremely bloody.","recently , lot difficulty using restroom bowel movements extremely uncomfortable difficult anus quite inflamed , stool extremely bloody" +5373,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately. It's really painful when I do, and there's been some blood in my stool. I've also been having some pain and irritation around my anus.","lot trouble going bathroom lately really painful , blood stool also pain irritation around anus" +5374,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. When I do, it hurts a lot, and I've noticed some blood in my stool. Around my anus, I've also been experiencing some discomfort and itching.","recently , lot difficulty using restroom , hurts lot , noticed blood stool around anus , also experiencing discomfort itching" +5375,Dimorphic Hemorrhoids,"Lately I've been really constipated, and it's been really painful when I do go to the bathroom. I've also noticed some blood in my stool, and my anus has been really irritated.","lately really constipated , really painful go bathroom also noticed blood stool , anus really irritated" +5376,Dimorphic Hemorrhoids,"I've been suffering from severe constipation lately, and whenever I do go to the restroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool.","suffering severe constipation lately , whenever go restroom , hurts lot aside , anus really itchy , observed blood stool" +5377,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately, and it's been really painful. I've also noticed that my stool has been bloody and my anus has been really irritated.","lot trouble going bathroom lately , really painful also noticed stool bloody anus really irritated" +5378,Dimorphic Hemorrhoids,"Recently, I've been having a lot of discomfort and difficulty using the restroom. Additionally, I've noticed that my anus has been quite sore and that my stool has been bloody.","recently , lot discomfort difficulty using restroom additionally , noticed anus quite sore stool bloody" +5379,Dimorphic Hemorrhoids,"I've been terribly constipated lately, and when I do go to the bathroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool.","terribly constipated lately , go bathroom , hurts lot aside , anus really itchy , observed blood stool" +5380,Dimorphic Hemorrhoids,"I've been quite constipated lately, and going to the restroom has been excruciatingly uncomfortable. I've also observed blood in my stool, and my anus has been aggravated.","quite constipated lately , going restroom excruciatingly uncomfortable also observed blood stool , anus aggravated" +5381,Dimorphic Hemorrhoids,I've been having a lot of trouble going to the bathroom lately. It's been really painful and I've been experiencing pain in my anus. My stool has also been bloody and my anus has been really irritated.,lot trouble going bathroom lately really painful experiencing pain anus stool also bloody anus really irritated +5382,Dimorphic Hemorrhoids,"I've been having a lot of problems using the restroom recently. It's been excruciatingly uncomfortable, and I've been feeling agony in my anus. My stool has been bloody as well, and my anus has been really inflamed.","lot problems using restroom recently excruciatingly uncomfortable , feeling agony anus stool bloody well , anus really inflamed" +5383,Dimorphic Hemorrhoids,"I've been having trouble going to the restroom recently. When I try to go, it's really uncomfortable, and my anus hurts a lot. I've also had some blood in my stool, and my anus has been really uncomfortable.","trouble going restroom recently try go , really uncomfortable , anus hurts lot also blood stool , anus really uncomfortable" +5384,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful when I try to go and my anus hurts a lot. There's also been some blood in my stool and my anus has been really itchy.,really hard time going bathroom lately really painful try go anus hurts lot also blood stool anus really itchy +5385,Dimorphic Hemorrhoids,"I've been experiencing problems using the restroom recently. It's quite difficult for me to go, and it hurts when I do. I've also been experiencing buttock soreness and bloody stools. My anus has also been quite itching and sensitive.","experiencing problems using restroom recently quite difficult go , hurts also experiencing buttock soreness bloody stools anus also quite itching sensitive" +5386,Dimorphic Hemorrhoids,"Recently, I've been having problems using the restroom. Going is incredibly difficult, and doing so hurts. In addition, I've been experiencing some butt soreness, and my stools have been bloody. My anus has also been quite itching and aggravated.","recently , problems using restroom going incredibly difficult , hurts addition , experiencing butt soreness , stools bloody anus also quite itching aggravated" +5387,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5388,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt.","since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt" +5389,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5390,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt.","since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt" +5391,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5392,Dimorphic Hemorrhoids,"Constipation has made it quite difficult for me to use the restroom. My stool has been bloody when I do go, and it hurts. In addition, my anus has been quite itchy and inflamed, and I've been experiencing some butt soreness.","constipation made quite difficult use restroom stool bloody go , hurts addition , anus quite itchy inflamed , experiencing butt soreness" +5393,Dimorphic Hemorrhoids,"It's incredibly difficult for me to use the restroom, and when I do, it hurts a lot. My stools have been bloody, and my butt has been hurting. My anus has also been quite itching and aggravated.","incredibly difficult use restroom , , hurts lot stools bloody , butt hurting anus also quite itching aggravated" +5394,Dimorphic Hemorrhoids,I'm having a lot of trouble going to the bathroom and it's really painful when I do. My stool has been bloody and I've had some pain in my butt. My anus has been really itchy and irritated too.,lot trouble going bathroom really painful stool bloody pain butt anus really itchy irritated +5395,Dimorphic Hemorrhoids,I've been having trouble going to the bathroom. It's been really hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,trouble going bathroom really hard go hurts anus really sore bleeding go really painful really uncomfortable +5396,Dimorphic Hemorrhoids,"I've been finding it challenging to use the restroom. Going has been quite difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","finding challenging use restroom going quite difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5397,Dimorphic Hemorrhoids,"I've been having difficulty using the restroom. It's been difficult to go, and it aches when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","difficulty using restroom difficult go , aches anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5398,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable +5399,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5400,Dimorphic Hemorrhoids,"Constipation and soreness with bowel motions have been bothering me lately. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","constipation soreness bowel motions bothering lately go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5401,Dimorphic Hemorrhoids,I've been having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5402,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5403,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5404,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5405,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5406,Dimorphic Hemorrhoids,"My bowel motions are giving me a lot of problems right now. Going is difficult, and going hurts when I do it. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions giving lot problems right going difficult , going hurts go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5407,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable +5408,Dimorphic Hemorrhoids,"I've been having constipation and bowel motions that hurt recently. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","constipation bowel motions hurt recently go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5409,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5410,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5411,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5412,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5413,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5414,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's really painful and I'm really uncomfortable.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go really painful really uncomfortable" +5415,Dimorphic Hemorrhoids,"I've been getting a lot of bowel issues recently. It's difficult for me to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","getting lot bowel issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5416,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful and I'm only able to go every few days. There's also a lot of pain in my anus and around that area. My stool has been really bloody and my anus feels really irritated.,really hard time going bathroom lately really painful able go every days also lot pain anus around area stool really bloody anus feels really irritated +5417,Dimorphic Hemorrhoids,"I've been finding it incredibly difficult recently to use the restroom. I can only go sporadically because it hurts so much. My anus and the surrounding region are also quite painful. My anus feels really aggravated, and my stool has been extremely bloody.","finding incredibly difficult recently use restroom go sporadically hurts much anus surrounding region also quite painful anus feels really aggravated , stool extremely bloody" +5418,Dimorphic Hemorrhoids,I'm having a lot of trouble with constipation and pain while trying to go to the bathroom. It hurts a lot in my anus and the area around it. My stool has been bloody and my anus is really irritated.,lot trouble constipation pain trying go bathroom hurts lot anus area around stool bloody anus really irritated +5419,Dimorphic Hemorrhoids,"Constipation and bowel movement discomfort have been very common for me lately. The region surrounding my anus and I both ache a lot. My anus is really itchy, and my stool has been bloody.","constipation bowel movement discomfort common lately region surrounding anus ache lot anus really itchy , stool bloody" +5420,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I've been experiencing a lot of stiffness when I walk about and my joints have been swollen. Walking has also been really uncomfortable.","muscles feeling really weak , neck extremely tight experiencing lot stiffness walk joints swollen walking also really uncomfortable" +5421,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and I've been having a lot of stiffness when I move around. It's also been really painful to walk.,feeling really weak muscles neck really stiff joints swelling lot stiffness move around also really painful walk +5422,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen and I've been experiencing a lot of stiffness when I move around. Walking has also been excruciatingly uncomfortable.","muscles quite weak , neck really stiff joints swollen experiencing lot stiffness move around walking also excruciatingly uncomfortable" +5423,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's been hard to move around. Walking has been really painful.,feeling really weak muscles neck really stiff joints swelling hard move around walking really painful +5424,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult to move about. Walking has been excruciatingly uncomfortable.","muscles really weak , neck extremely stiff joints swollen , making difficult move walking excruciatingly uncomfortable" +5425,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. It has been difficult to move about since my joints have swollen. It has been really uncomfortable to walk.","experiencing severe muscular weakness , neck really stiff difficult move since joints swollen really uncomfortable walk" +5426,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. My joints have swollen, making it difficult for me to move. It has hurt a lot to walk.","muscles feeling really weak , neck extremely tight joints swollen , making difficult move hurt lot walk" +5427,Arthritis,"My neck has been so tense, and I've been feeling like my muscles are incredibly weak. I have trouble moving since my joints have enlarged. To walk has been quite painful.","neck tense , feeling like muscles incredibly weak trouble moving since joints enlarged walk quite painful" +5428,Arthritis,"My neck has been really stiff, and I've had terrible muscle weakness. Due to the swelling in my joints, it has been challenging to move about. Walking has been quite unpleasant.","neck really stiff , terrible muscle weakness due swelling joints , challenging move walking quite unpleasant" +5429,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles lately neck really stiff joints swelling hard move around without feeling stiff walking really painful +5430,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","recently , muscles felt quite weak , neck really tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5431,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable.","experiencing muscular weakness stiffness neck recently joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable" +5432,Arthritis,"Recently, I've been suffering neck muscle weakness and stiffness. My joints have enlarged and it is difficult for me to walk without feeling stiff. Walking has also been excruciatingly uncomfortable.","recently , suffering neck muscle weakness stiffness joints enlarged difficult walk without feeling stiff walking also excruciatingly uncomfortable" +5433,Arthritis,"Lately, my neck has been tight and my muscles have been weakened. I have swelling joints that make it difficult for me to move about without getting stiff. It has also been agonisingly painful to walk.","lately , neck tight muscles weakened swelling joints make difficult move without getting stiff also agonisingly painful walk" +5434,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5435,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5436,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable.","muscles quite weak , neck really stiff joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable" +5437,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable.","muscles really weak , neck extremely stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable" +5438,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to move without becoming stiff. Walking has been quite uncomfortable as well.","muscles quite weak , neck really stiff joints swollen , making difficult move without becoming stiff walking quite uncomfortable well" +5439,Arthritis,"My neck has been really tight, and my muscles have been rather weak. I have swelling joints that make it hard for me to move without getting stiff. Additionally, walking has been quite unpleasant.","neck really tight , muscles rather weak swelling joints make hard move without getting stiff additionally , walking quite unpleasant" +5440,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5441,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5442,Arthritis,My neck has been extremely tight and my muscles have been feeling extremely weak. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable.,neck extremely tight muscles feeling extremely weak difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable +5443,Arthritis,"My neck has been extremely stiff and my muscles have been extremely weak. As a result of swelling in my joints, I find it difficult to move around without feeling stiff. Additionally, walking has been extremely uneasy.","neck extremely stiff muscles extremely weak result swelling joints , find difficult move around without feeling stiff additionally , walking extremely uneasy" +5444,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable" +5445,Arthritis,"My neck has been extremely tight and my muscles have been feeling extremely weak. My joints have been swollen and I've been walking around with a lot of stiffness. Additionally, walking has been extremely uneasy.","neck extremely tight muscles feeling extremely weak joints swollen walking around lot stiffness additionally , walking extremely uneasy" +5446,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable" +5447,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5448,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable.","muscles quite weak , neck really stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable" +5449,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","experiencing severe muscular weakness , neck really stiff swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5450,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swollen and it's hard for me to move around. It's also been painful to walk.,feeling really weak muscles lately neck really stiff joints swollen hard move around also painful walk +5451,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. Swollen joints make it difficult for me to move around. Walking has also been difficult.,feeling truly frail muscles recently neck truly solid swollen joints make difficult move around walking also difficult +5452,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints, making it difficult for me to move. Walking has also been painful.","recently , muscles felt quite weak , neck really tight swollen joints , making difficult move walking also painful" +5453,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have enlarged, making it difficult for me to move. Walking has also been difficult.","experiencing muscular weakness stiffness neck recently joints enlarged , making difficult move walking also difficult" +5454,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. It has been difficult for me to move around because my joints have been swelling. Walking has also been extremely painful.,feeling truly frail muscles recently neck truly solid difficult move around joints swelling walking also extremely painful +5455,Arthritis,"My muscles have been feeling feeble recently, but my neck has been rock solid. My joints have become swollen, making it difficult for me to move about. Walking has been quite uncomfortable as well.","muscles feeling feeble recently , neck rock solid joints become swollen , making difficult move walking quite uncomfortable well" +5456,Arthritis,"My muscles have been feeling rather weak lately, but my neck has been really strong. My joints have swollen, making it challenging for me to move about. It has also been excruciatingly difficult to walk.","muscles feeling rather weak lately , neck really strong joints swollen , making challenging move also excruciatingly difficult walk" +5457,Arthritis,My neck has been extremely tight and my muscles have felt quite weak recently. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable.,neck extremely tight muscles felt quite weak recently difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable +5458,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of Pine Tree State to run whereas not getting stiff. additionally, walking has been terribly uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf pine tree state run whereas getting stiff additionally , walking terribly uncomfortable" +5459,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, creating it troublesome on behalf of me to run regarding while not changing into stiff. Walking has additionally been agonizingly uncomfortable.","experiencing muscular weakness stiffness neck recently joints swollen , creating troublesome behalf run regarding changing stiff walking additionally agonizingly uncomfortable" +5460,Arthritis,"My muscles are quite weak, and my neck has been very stiff. My joints have swollen, creating it troublesome on behalf of me to steer concerning while not feeling stiff. Walking has conjointly been very uncomfortable.","muscles quite weak , neck stiff joints swollen , creating troublesome behalf steer concerning feeling stiff walking conjointly uncomfortable" +5461,Arthritis,"My muscles area unit quite weak, and my neck has been terribly stiff. My joints have swollen, making it hard on behalf of Maine to steer regarding whereas not feeling stiff. Walking has put together been terribly uncomfortable.","muscles area unit quite weak , neck terribly stiff joints swollen , making hard behalf maine steer regarding whereas feeling stiff walking put together terribly uncomfortable" +5462,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's onerous on behalf of me to run while not obtaining stiff. in addition, walking has been extraordinarily uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , onerous behalf run obtaining stiff addition , walking extraordinarily uncomfortable" +5463,Arthritis,My neck has been very tight and my muscles have felt quite weak recently. it's tough on behalf of me to maneuver around while not changing into stiff thanks to my swollen joints. Walking has additionally been very uncomfortable.,neck tight muscles felt quite weak recently tough behalf maneuver around changing stiff thanks swollen joints walking additionally uncomfortable +5464,Arthritis,"Recently, when I try to walk about, I have stiffness, a stiff neck, swollen joints, and muscular weakness. Walking has also been really uncomfortable.","recently , try walk , stiffness , stiff neck , swollen joints , muscular weakness walking also really uncomfortable" +5465,Arthritis,"Lately i have been experiencing muscle weakness, a stiff neck, swelling joints, and stiffness after I attempt to move around. it is also been very painful to steer.","lately experiencing muscle weakness , stiff neck , swelling joints , stiffness attempt move around also painful steer" +5466,Arthritis,"Recently, the muscles in my neck have become tight and weak. It's difficult for me to run now since my joints are older without getting tight. The act of walking has also been quite unpleasant.","recently , muscles neck become tight weak difficult run since joints older without getting tight act walking also quite unpleasant" +5467,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of American state to run whereas not getting stiff. additionally, walking has been very uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf american state run whereas getting stiff additionally , walking uncomfortable" +5468,Arthritis,"Recently, the muscles in my neck have become tight and weak. Since my joints have matured, it is difficult for the American government for me to run without becoming stiff. Walking has also been quite unpleasant.","recently , muscles neck become tight weak since joints matured , difficult american government run without becoming stiff walking also quite unpleasant" +5469,Arthritis,"Lately, I've been having stiffness and weakness in my neck muscles. Since my joints have matured, it is difficult for the American state to operate without becoming stiff. Furthermore, walking has been quite painful.","lately , stiffness weakness neck muscles since joints matured , difficult american state operate without becoming stiff furthermore , walking quite painful" +5470,Acne,I've been having a really bad rash on my skin lately. It's full of pus-filled pimples and blackheads. My skin has also been scurring a lot.,really bad rash skin lately full pus filled pimples blackheads skin also scurring lot +5471,Acne,I've just developed a severe rash on my skin. It's clogged with pus-filled pimples and blackheads. My skin has also been quite sensitive.,developed severe rash skin clogged pus filled pimples blackheads skin also quite sensitive +5472,Acne,"My skin has been breaking out in a terrible rash lately. Blackheads and pus-filled pimples abound on it. Additionally, my skin has been scurring a lot.","skin breaking terrible rash lately blackheads pus filled pimples abound additionally , skin scurring lot" +5473,Acne,"I've recently been experiencing a severe skin rash. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been scurring a lot.","recently experiencing severe skin rash blackheads pimples packed pus everywhere additionally , skin scurring lot" +5474,Acne,I've been having a very unhealthy rash on my skin latterly. It's filled with pus-filled pimples and blackheads. My skin has additionally been scurring heaps.,unhealthy rash skin latterly filled pus filled pimples blackheads skin additionally scurring heaps +5475,Acne,My skin has just acquired a nasty rash. It's full of pus-filled pimples and blackheads. My skin has been really sensitive as well.,skin acquired nasty rash full pus filled pimples blackheads skin really sensitive well +5476,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive.","nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive" +5477,Acne,"I recently experienced a severe skin rash. Blackheads and pimples filled with pus are clogging it. Additionally, my skin has been quite irritated.","recently experienced severe skin rash blackheads pimples filled pus clogging additionally , skin quite irritated" +5478,Acne,My skin has recently been severely rashy. Blackheads and pus-filled pimples have blocked it. My skin has been quite delicate as well.,skin recently severely rashy blackheads pus filled pimples blocked skin quite delicate well +5479,Acne,Lately I've been experiencing a skin rash with a lot of pus-filled pimples and blackheads. My skin has also been scurring a lot.,lately experiencing skin rash lot pus filled pimples blackheads skin also scurring lot +5480,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot.","skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot" +5481,Acne,My skin has now developed a revolting rash. There are pus-filled pimples and blackheads everywhere. My skin has also been really sensitive.,skin developed revolting rash pus filled pimples blackheads everywhere skin also really sensitive +5482,Acne,"My skin has developed a horrible rash. There are blackheads and pus-filled pimples everywhere. Furthermore, my skin has been exceedingly sensitive.","skin developed horrible rash blackheads pus filled pimples everywhere furthermore , skin exceedingly sensitive" +5483,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive.","nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive" +5484,Acne,My skin has simply nonheritable a nasty rash. It's packed with pus-filled pimples and blackheads. My skin has been very sensitive moreover.,skin simply nonheritable nasty rash packed pus filled pimples blackheads skin sensitive moreover +5485,Acne,"My skin has developed a terrible rash that is not inherited. It has a lot of blackheads and pus-filled pimples. Furthermore, my skin has been exceedingly sensitive.","skin developed terrible rash inherited lot blackheads pus filled pimples furthermore , skin exceedingly sensitive" +5486,Acne,"Recently, I've been experiencing a lot of acne breakouts with pimples that contain pus. I've also been struggling with blackheads.","recently , experiencing lot acne breakouts pimples contain pus also struggling blackheads" +5487,Acne,I woke up this morning and found that I have a really nasty rash all over my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,woke morning found really nasty rash skin ton blackheads pimples filled pus skin also really scurrying +5488,Acne,I've been noticing a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,noticing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5489,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying +5490,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5491,Acne,I woke up this morning to find a really nasty rash on my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,woke morning find really nasty rash skin ton blackheads pimples filled pus skin also really scurrying +5492,Acne,I've been struggling with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,struggling really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5493,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying +5494,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5495,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying everywhere.,recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying everywhere +5496,Acne,I recently had a horrible rash on my skin. There are several blackheads and pus-filled pimples. My skin has also been moving around a lot.,recently horrible rash skin several blackheads pus filled pimples skin also moving around lot +5497,Acne,"This morning when I woke up, I discovered that I have an extremely bad rash all over my body. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot.","morning woke , discovered extremely bad rash body several pus filled pimples blackheads around skin also moving around lot" +5498,Acne,I awoke this morning to see that I had a horrible rash all over my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about.,awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying +5499,Acne,I've just developed a skin rash with several pus-filled pimples and blackheads. My skin has also been quite sensitive.,developed skin rash several pus filled pimples blackheads skin also quite sensitive +5500,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot.","skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot" +5501,Acne,"I woke up this morning to find that I have a terrible rash all over my body. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been changing a lot.","woke morning find terrible rash body blackheads pus filled pimples place additionally , skin changing lot" +5502,Acne,"When I awoke this morning, I realised that I had a severe rash all over my body. There are many pus-filled pimples and blackheads all over the place. My skin has also been scurring a lot.","awoke morning , realised severe rash body many pus filled pimples blackheads place skin also scurring lot" +5503,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying about.,recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying +5504,Acne,I awoke this morning to see a horrible rash on my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about.,awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying +5505,Acne,"This morning when I woke up, I discovered an extremely bad rash on my skin. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot.","morning woke , discovered extremely bad rash skin several pus filled pimples blackheads around skin also moving around lot" +5506,Acne,I've recently been battling a pretty itchy rash on my skin. There are pus-filled pimples and blackheads all over it. My skin has also been scurring a lot.,recently battling pretty itchy rash skin pus filled pimples blackheads skin also scurring lot +5507,Acne,"This morning, I realized that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot.","morning , realized major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot" +5508,Acne,"I woke up today to find that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot.","woke today find major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot" +5509,Acne,"I woke up this morning to find that I had a major rash all over my body. It's covered in pus-filled pimples and blackheads, and my skin has been scurrying a lot","woke morning find major rash body covered pus filled pimples blackheads , skin scurrying lot" +5510,Acne,"This morning, I saw a large rash all over my body. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot.","morning , saw large rash body lot pus filled pimples blackheads face , skin scurrying lot" +5511,Acne,"I discovered that I had a significant rash all over my body this morning. Blackheads and pus-filled pimples are proliferating, and my skin has been scurrying a lot.","discovered significant rash body morning blackheads pus filled pimples proliferating , skin scurrying lot" +5512,Acne,"Yesterday, I noticed an enormous rash all over my skin. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot.","yesterday , noticed enormous rash skin lot pus filled pimples blackheads face , skin scurrying lot" +5513,Acne,"I discovered a huge rash on my skin yesterday. My face is covered of blackheads and pus-filled pimples, and my skin has been crawling a lot.","discovered huge rash skin yesterday face covered blackheads pus filled pimples , skin crawling lot" +5514,Acne,"My skin has a horrible rash that is absolutely nonheritable. Blackheads and pus-filled pimples abound on it. In addition, my skin has been quite sensitive.","skin horrible rash absolutely nonheritable blackheads pus filled pimples abound addition , skin quite sensitive" +5515,Acne,"My skin has merely developed an uninherited rash. It has a lot of pus-filled pimples and blackheads. Furthermore, my skin has been quite sensitive.","skin merely developed uninherited rash lot pus filled pimples blackheads furthermore , skin quite sensitive" +5516,Acne,"When I awoke this morning, I saw a severe rash across my skin. There are many pus-filled pimples and blackheads all over the place. My skin has also been shifting a lot.","awoke morning , saw severe rash across skin many pus filled pimples blackheads place skin also shifting lot" +5517,Acne,"When I woke up this morning, I saw a terrible rash on my skin. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been shifting a lot.","woke morning , saw terrible rash skin blackheads pus filled pimples place additionally , skin shifting lot" +5518,Acne,"I've recently struggled with a really irritating skin rash. There are blackheads and pus-filled pimples all over it. Additionally, my skin has been scurring a lot.","recently struggled really irritating skin rash blackheads pus filled pimples additionally , skin scurring lot" +5519,Acne,I've recently been dealing with an itching rash on my skin. It's covered in pus-filled pimples and blackheads. My skin has also been quite sensitive.,recently dealing itching rash skin covered pus filled pimples blackheads skin also quite sensitive +5520,Bronchial Asthma,"I have been feeling extremely tired and weak, and I've also been coughing a lot with difficulty breathing. My fever is very high, and I'm producing a lot of mucus when I cough.","feeling extremely tired weak , also coughing lot difficulty breathing fever high , producing lot mucus cough" +5521,Bronchial Asthma,"I've got a cough that won't go away, and I'm exhausted. I've been coughing up thick mucous and my fever is also pretty high.","got cough go away , exhausted coughing thick mucous fever also pretty high" +5522,Bronchial Asthma,"I have a persistent cough and have been feeling quite fatigued. My fever is through the roof, and I'm having trouble breathing. When I cough, I also cough up a lot of mucous.","persistent cough feeling quite fatigued fever roof , trouble breathing cough , also cough lot mucous" +5523,Bronchial Asthma,"I've been having issues with exhaustion, a dry cough, and breathing. I have a very high fever and have been coughing up a lot of thick, mucoid phlegm.","issues exhaustion , dry cough , breathing high fever coughing lot thick , mucoid phlegm" +5524,Bronchial Asthma,"I feel really fatigued and weak, and I have a bad cough. My fever is really high, and my breathing has become shallow. When I cough, a lot of saliva comes out as well.","feel really fatigued weak , bad cough fever really high , breathing become shallow cough , lot saliva comes well" +5525,Bronchial Asthma,"I've had a lot of sleepiness, a cough that refuses to go away, and breathing difficulty. I've been coughing up a lot of thick, mucoid saliva and have a high fever.","lot sleepiness , cough refuses go away , breathing difficulty coughing lot thick , mucoid saliva high fever" +5526,Bronchial Asthma,"doctor, i have been having high fever since past few days , saliva also became thick , dry cough , weakness also seen","doctor , high fever since past days , saliva also became thick , dry cough , weakness also seen" +5527,Bronchial Asthma,"I have a cough that has continued for days, and I feel really weak and tired. My fever is high, and my breath has become strained. When I cough, I also generate a lot of mucus.","cough continued days , feel really weak tired fever high , breath become strained cough , also generate lot mucus" +5528,Bronchial Asthma,"Mom, Dad, I've been feeling really tired and weak lately, and I've had this cough that just won't go away. It's been hard for me to catch my breath, and my fever has been really high. When I cough, I've been producing a lot of mucus.","mom , dad , feeling really tired weak lately , cough go away hard catch breath , fever really high cough , producing lot mucus" +5529,Bronchial Asthma,"Hey Mom, Hey Dad, I've been feeling really exhausted lately and have had this persistent cough. My breathing has become shallow, and my fever is very high. I've also been coughing up a lot of thick, mucoid sputum","hey mom , hey dad , feeling really exhausted lately persistent cough breathing become shallow , fever high also coughing lot thick , mucoid sputum" +5530,Bronchial Asthma,"Recently, I've felt quite weak and exhausted, and I've also had a cough that simply won't go away. My fever has been really high, and it has been challenging for me to catch my breath. I've been making a lot of mucous when I cough.","recently , felt quite weak exhausted , also cough simply go away fever really high , challenging catch breath making lot mucous cough" +5531,Bronchial Asthma,"I've felt terribly weak and drained, and I've also had a cough that that won't go away. My fever has been exceptionally high, and it has been challenging to try to catch my breath. I've been creating a lot of mucous when I cough.","felt terribly weak drained , also cough go away fever exceptionally high , challenging try catch breath creating lot mucous cough" +5532,Bronchial Asthma,"I'm feeling really tired and weak lately, and I've had this cough that just won't go away. My breathing has become shallow, and my fever has been really high. When I cough, I've been producing a lot of thick, mucoid sputum","feeling really tired weak lately , cough go away breathing become shallow , fever really high cough , producing lot thick , mucoid sputum" +5533,Bronchial Asthma,"feeling extremely exhausted and have had this persistent cough. It's been hard for me to catch my breath, and my fever is very high. I've also been producing a lot of mucus when I cough","feeling extremely exhausted persistent cough hard catch breath , fever high also producing lot mucus cough" +5534,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum.","struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum" +5535,Bronchial Asthma,"I've had a nagging cough that won't go away, and my breathing has become labored. My fever is also very high, and I'm feeling very weak and tired. I've been producing a lot of mucus when I cough","nagging cough go away , breathing become labored fever also high , feeling weak tired producing lot mucus cough" +5536,Bronchial Asthma,"I've been experiencing a high fever, a persistent cough, and shortness of breath. I've also been producing a lot of thick, mucoid sputum, and I'm feeling very tired and weak.","experiencing high fever , persistent cough , shortness breath also producing lot thick , mucoid sputum , feeling tired weak" +5537,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so drained and tired from having to deal with all of this.","breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling drained tired deal" +5538,Bronchial Asthma,"I've had this cough that's been lingering for days and difficulty breathing. My fever is sky-high, and I'm feeling so weak and tired. I've also been producing a lot of mucus when I cough, and it's just been so overwhelming to deal with all of these symptoms. I'm getting so frustrated with all of this.","cough lingering days difficulty breathing fever sky high , feeling weak tired also producing lot mucus cough , overwhelming deal symptoms getting frustrated" +5539,Bronchial Asthma,"I've had a persistent cough for days, and I also have breathing problems. I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything.","persistent cough days , also breathing problems weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything" +5540,Bronchial Asthma,"I've been struggling with difficulty breathing, a constant cough, and fatigue. My fever is extremely high, and I've been coughing up a lot of thick, mucoid sputum. It's been so hard to deal with all of this, and I'm just feeling so drained and worn out","struggling difficulty breathing , constant cough , fatigue fever extremely high , coughing lot thick , mucoid sputum hard deal , feeling drained worn" +5541,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so exhausted and tired from having to cope with all of this.","breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling exhausted tired cope" +5542,Bronchial Asthma,"I've been feeling really ill lately. I've had this persistent cough and difficulty breathing, and my fever has been off the charts. I'm also feeling extremely exhausted, and I've been producing a lot of mucus when I cough. It's just been so overwhelming to deal with all of these symptoms","feeling really ill lately persistent cough difficulty breathing , fever charts also feeling extremely exhausted , producing lot mucus cough overwhelming deal symptoms" +5543,Bronchial Asthma,"Recently, I've been feeling terrible. My fever has been through the roof, and I've had a persistent cough and breathing problems. I've been coughing up a lot of phlegm and am also feeling quite weary. Dealing with all of these symptoms has been quite difficult.","recently , feeling terrible fever roof , persistent cough breathing problems coughing lot phlegm also feeling quite weary dealing symptoms quite difficult" +5544,Bronchial Asthma,"I've had a fever, a cough that won't go away, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I feel quite worn out and weak.","fever , cough go away , shortness breath addition , coughing lot thick , mucoid saliva feel quite worn weak" +5545,Bronchial Asthma,"Hey, I've had a dry cough, breathing difficulties, as well as a high fever. a lot of mucous is being produced, and I feel incredibly weak and tired.""","hey , dry cough , breathing difficulties , well high fever lot mucous produced , feel incredibly weak tired" +5546,Bronchial Asthma,"Recently, I have had a number of concerning symptoms, including a dry cough, impaired breathing, a high fever, and a lot of mucus. I also feel very weak and tired.","recently , number concerning symptoms , including dry cough , impaired breathing , high fever , lot mucus also feel weak tired" +5547,Bronchial Asthma,"I am currently dealing with a number of health issues, including a dry cough, difficulty breathing, a high fever, and increased mucus production. I am also feeling very weak and tired","currently dealing number health issues , including dry cough , difficulty breathing , high fever , increased mucus production also feeling weak tired" +5548,Bronchial Asthma,"its been a week , i am suffering from continious health issues like dry cough , problems in breathing , weakness throughout the day.","week , suffering continious health issues like dry cough , problems breathing , weakness throughout day" +5549,Bronchial Asthma,"Doctor , from couple of days i am not able to brethe propelry , lying on bed due to high fever , lot of mucus gets out . please suggest me some medicines.","doctor , couple days able brethe propelry , lying bed due high fever , lot mucus gets please suggest medicines" +5550,Bronchial Asthma,"I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling so drained and exhausted. It's been so hard to deal with all of this.","experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling drained exhausted hard deal" +5551,Bronchial Asthma," I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything.","weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything" +5552,Bronchial Asthma," must confess that I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling quite drained and exhausted. It's all been rather tough to deal with, and I'm feeling quite sick at the moment","must confess experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling quite drained exhausted rather tough deal , feeling quite sick moment" +5553,Bronchial Asthma,"I must admit that I have been having a high fever, a persistent cough, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I've been feeling really depleted and worn out.","must admit high fever , persistent cough , shortness breath addition , coughing lot thick , mucoid saliva feeling really depleted worn" +5554,Bronchial Asthma,"I've been having a tough time with this constant cough, difficulty breathing, and fatigue. My fever is high, and I've been coughing up a lot of thick, mucoid sputum. It's all been rather draining and exhausting, and I'm feeling quite sick at the moment.","tough time constant cough , difficulty breathing , fatigue fever high , coughing lot thick , mucoid sputum rather draining exhausting , feeling quite sick moment" +5555,Bronchial Asthma,"I've been struggling with a persistent cough, breathing issues, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really tiring and exhausting, and right now I'm feeling rather ill.","struggling persistent cough , breathing issues , exhaustion coughing lot thick , mucoid sputum high fever really tiring exhausting , right feeling rather ill" +5556,Bronchial Asthma,"I've been dealing with a bad cough, breathing issues, and drowsiness. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really exhausting and exhausting, and right now I'm feeling rather ill.","dealing bad cough , breathing issues , drowsiness coughing lot thick , mucoid sputum high fever really exhausting exhausting , right feeling rather ill" +5557,Bronchial Asthma,"My persistent cough, breathing problems, and exhaustion have been making things difficult for me. I've been producing copious amounts of thick, mucoid sputum while also having a high fever. I'm currently feeling fairly ill because everything has been so tiring and exhausting.","persistent cough , breathing problems , exhaustion making things difficult producing copious amounts thick , mucoid sputum also high fever currently feeling fairly ill everything tiring exhausting" +5558,Bronchial Asthma,"With my persistent cough, respiratory issues, and exhaustion, I've been struggling. I have a high fever and have been producing a lot of thick, mucoid sputum while coughing. I currently feel rather sick as a result of how draining and tiresome everything has been.","persistent cough , respiratory issues , exhaustion , struggling high fever producing lot thick , mucoid sputum coughing currently feel rather sick result draining tiresome everything" +5559,Bronchial Asthma,"My fever is through the roof, and I'm so weak and tired out. I've been coughing up a lot of mucous, and managing all of these symptoms has been really hard. Everything is making me so upset.","fever roof , weak tired coughing lot mucous , managing symptoms really hard everything making upset" +5560,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feelinf too tired. Please recommend some medications for me.","doctor due high fever , able breathe via nose mouth days feelinf tired please recommend medications" +5561,Bronchial Asthma,"Hey, I've got a dry cough, trouble breathing, and a high fever. I'm producing a lot of mucus and am feeling quite weak and exhausted.","hey , got dry cough , trouble breathing , high fever producing lot mucus feeling quite weak exhausted" +5562,Bronchial Asthma,"I've been coughing nonstop for days, and I also have respiratory issues. My fever is through the roof, and I'm so weak and worn out. All of these symptoms have been really challenging for me to control,","coughing nonstop days , also respiratory issues fever roof , weak worn symptoms really challenging control ," +5563,Bronchial Asthma,"In addition to sleepiness, I've been having trouble breathing due to a persistent cough. I've been coughing up a lot of thick, mucoid sputum and have a high fever.","addition sleepiness , trouble breathing due persistent cough coughing lot thick , mucoid sputum high fever" +5564,Bronchial Asthma,"I've been struggling to breathe, coughing constantly, and feeling worn out. I have a very high fever and have been coughing up a lot of thick, mucoid saliva. I simply feel so worn out and exhausted from trying to deal with everything.","struggling breathe , coughing constantly , feeling worn high fever coughing lot thick , mucoid saliva simply feel worn exhausted trying deal everything" +5565,Bronchial Asthma,"I've been experiencing difficulty breathing, a chronic cough, and weariness. I've been producing a lot of thick, mucoid sputum while also running a very high temperature. Due to having to cope with all of this, I'm simply feeling extremely worn out and exhausted.","experiencing difficulty breathing , chronic cough , weariness producing lot thick , mucoid sputum also running high temperature due cope , simply feeling extremely worn exhausted" +5566,Bronchial Asthma,"Hello, Mom and Father Recently, I've felt incredibly worn out and have had a cough that won't go away. My fever is really high, and my breathing has become shallow. Additionally, I've been coughing up a lot of mucous, thick sputum.","hello , mom father recently , felt incredibly worn cough go away fever really high , breathing become shallow additionally , coughing lot mucous , thick sputum" +5567,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum.","struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum" +5568,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feeling too tired.sometimes mucus has been seen too.Please recommend some medications for me.","doctor due high fever , able breathe via nose mouth days feeling tired sometimes mucus seen please recommend medications" +5569,Bronchial Asthma,"I've had ongoing health problems for a week, including a dry cough, breathing difficulties, and general weakness.","ongoing health problems week , including dry cough , breathing difficulties , general weakness" +5570,Hypertension,"I have been experiencing a headache, chest pain, dizziness, and difficulty maintaining my balance. I also feel like I am having trouble concentrating","experiencing headache , chest pain , dizziness , difficulty maintaining balance also feel like trouble concentrating" +5571,Hypertension,"Along with a headache, chest pain, instability, and balance issues, I've also been feeling dizzy. I also think I'm having problems focusing.","along headache , chest pain , instability , balance issues , also feeling dizzy also think problems focusing" +5572,Hypertension,"Along with a head pain, chest pain, instability, and balance issues, I've also been feeling unwell. I also think I'm having problems focusing.","along head pain , chest pain , instability , balance issues , also feeling unwell also think problems focusing" +5573,Hypertension,"In addition to a head pain, chest pain, instability, and balance issues, I've already been feeling unwell. I also suppose I'm having issues focusing.","addition head pain , chest pain , instability , balance issues , already feeling unwell also suppose issues focusing" +5574,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. My ability to concentrate and focus has also been challenging.","experiencing balance issues , headache , chest pain , dizziness ability concentrate focus also challenging" +5575,Hypertension,"I have been having a headache, chest pain, dizziness, and trouble with my balance. It has also been hard for me to focus and concentrate.","headache , chest pain , dizziness , trouble balance also hard focus concentrate" +5576,Hypertension,"I've been encountering trouble walking, a headache, chest pain, and dizziness. My concentration skills and focus has also been challenging.","encountering trouble walking , headache , chest pain , dizziness concentration skills focus also challenging" +5577,Hypertension,"I've been encountering poor balance, a headache, chest pain, and dizziness. My ability to pay attention and focus has also been problematic.","encountering poor balance , headache , chest pain , dizziness ability pay attention focus also problematic" +5578,Hypertension,"My coordination has been off, and I've been experiencing a headache, chest pain, and dizziness. Additionally, I've had trouble concentrating and focusing.","coordination , experiencing headache , chest pain , dizziness additionally , trouble concentrating focusing" +5579,Hypertension,"My symptoms include a headache, chest pain, dizziness, lack of balance, and trouble concentrating.","symptoms include headache , chest pain , dizziness , lack balance , trouble concentrating" +5580,Hypertension,"I have been experiencing symptoms such as a headache, chest pain, dizziness, loss of balance, and difficulty focusing.","experiencing symptoms headache , chest pain , dizziness , loss balance , difficulty focusing" +5581,Hypertension,"I've been suffering from symptoms including a headache, chest pain, dizziness, losing my balance, and trouble concentrating.","suffering symptoms including headache , chest pain , dizziness , losing balance , trouble concentrating" +5582,Hypertension,"Headache, chest discomfort, dizziness, lack of balance, and difficulty concentrating are some of the symptoms I've been having.","headache , chest discomfort , dizziness , lack balance , difficulty concentrating symptoms" +5583,Hypertension,"Along with a headache and chest pain, I also experienced fainting and balance issues. Additionally, I've discovered that it's hard for me to focus.","along headache chest pain , also experienced fainting balance issues additionally , discovered hard focus" +5584,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. I've also realised that I'm having trouble focusing.","experiencing balance issues , headache , chest pain , dizziness also realised trouble focusing" +5585,Hypertension,"My balance has been off, and I have a headache, chest pain, and dizziness. I've also observed that it's hard for me to concentrate.","balance , headache , chest pain , dizziness also observed hard concentrate" +5586,Hypertension,"I've been experiencing balance issues, chest pain, headaches, and pains. I've been having trouble focusing as well.","experiencing balance issues , chest pain , headaches , pains trouble focusing well" +5587,Hypertension,"I have been experiencing chest pain, dizziness, and a headache that feels like a continual pressure in my forehead.","experiencing chest pain , dizziness , headache feels like continual pressure forehead" +5588,Hypertension,"I have been feeling lightheaded and unsteady on my feet, and have also noticed a decline in my ability to focus and concentrate.","feeling lightheaded unsteady feet , also noticed decline ability focus concentrate" +5589,Hypertension,"I've been experiencing dizziness and shakiness, as well as a loss in my attention span and ability to concentrate.","experiencing dizziness shakiness , well loss attention span ability concentrate" +5590,Hypertension,"I've been experiencing dizziness and anxiousness, as well as a loss in my attention and concentration and ability to concentrate.","experiencing dizziness anxiousness , well loss attention concentration ability concentrate" +5591,Hypertension,"I've had intense aches in my chest, a headache that won't go away, and I've been feeling dizzy and unsteady.","intense aches chest , headache go away , feeling dizzy unsteady" +5592,Hypertension,"I've had intense aches in my chest, a head  pain that refuses to go away, and I've been feeling dizzy and unsteady.","intense aches chest , head pain refuses go away , feeling dizzy unsteady" +5593,Hypertension,"Along with chest pain, dizziness, and a headache that feels like a narrow zone around my head, I have been having a lot of trouble.","along chest pain , dizziness , headache feels like narrow zone around head , lot trouble" +5594,Hypertension,"I have been struggling with a headache that feels like a tight band around my head, along with chest pain and dizziness.","struggling headache feels like tight band around head , along chest pain dizziness" +5595,Hypertension,I've been experiencing balance issues in addition to feeling disoriented and dizzy. My headache has also been present nonstop.,experiencing balance issues addition feeling disoriented dizzy headache also present nonstop +5596,Hypertension,"I have been feeling disoriented and dizzy, and have also had trouble keeping my balance. My headache has been a constant presence as well.","feeling disoriented dizzy , also trouble keeping balance headache constant presence well" +5597,Hypertension,"I've been experiencing balance issues along with feeling dizzy and lightheaded. Additionally, I've seen a drop in my concentration and focus.","experiencing balance issues along feeling dizzy lightheaded additionally , seen drop concentration focus" +5598,Hypertension,"In addition to feeling dizzy and lightheaded, I've been having problems keeping my equilibrium. My capacity to concentrate and focus has also been slipping, I've noticed.","addition feeling dizzy lightheaded , problems keeping equilibrium capacity concentrate focus also slipping , noticed" +5599,Hypertension,"I have been experiencing a headache that feels like a sharp pain in my temples, along with chest pain and dizziness.","experiencing headache feels like sharp pain temples , along chest pain dizziness" +5600,Hypertension,"Along with a chest pain and dizziness, I've had a headache that seems like a sharp pain in my forehead.","along chest pain dizziness , headache seems like sharp pain forehead" +5601,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a walk. It's been hard for me to focus and concentrate since then.","feeling fine day , suddenly developed headache , chest pain , dizziness walk hard focus concentrate since" +5602,Hypertension,"While taking a walk, I suddenly started experiencing headache, chest pain, and dizziness after feeling fine all day. Since then, it has been challenging for me to concentrate and focus.","taking walk , suddenly started experiencing headache , chest pain , dizziness feeling fine day since , challenging concentrate focus" +5603,Hypertension,"I woke up this morning with a headache and chest pain, and as the day has gone on, I've also been feeling dizzy and unsteady on my feet","woke morning headache chest pain , day gone , also feeling dizzy unsteady feet" +5604,Hypertension,"I had a headache and chest pain this morning, and as the day wore on, I also started to feel unsteady and unstable on my feet.","headache chest pain morning , day wore , also started feel unsteady unstable feet" +5605,Hypertension,"I have been dealing with a headache and chest pain for a few days now, but today the dizziness and loss of balance became much worse.","dealing headache chest pain days , today dizziness loss balance became much worse" +5606,Hypertension,"For a few days now, I've been suffering from a headache and chest pain, but today the dizziness and lack of balance got considerably worse.","days , suffering headache chest pain , today dizziness lack balance got considerably worse" +5607,Hypertension,"I was at work when I started feeling a headache, chest pain, and dizziness. It's been hard for me to concentrate and focus on my tasks since then.","work started feeling headache , chest pain , dizziness hard concentrate focus tasks since" +5608,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was at work. Since then, it has been challenging for me to focus and concentrate on my work.","first experienced headache , chest pain , lightheadedness , work since , challenging focus concentrate work" +5609,Hypertension,"I was in the middle of a workout when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to maintain my balance since then","middle workout suddenly developed headache , chest pain , dizziness hard maintain balance since" +5610,Hypertension,"I instantly experienced a headache, chest pain, and dizziness while working out. Since then, it has been challenging for me to keep my balance.","instantly experienced headache , chest pain , dizziness working since , challenging keep balance" +5611,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while driving home from work. It's been hard for me to focus and concentrate on the road since then.","feeling fine day , suddenly developed headache , chest pain , dizziness driving home work hard focus concentrate road since" +5612,Hypertension,"I felt fine all day, but when I was driving home from work, I suddenly started to have headache, chest discomfort, and dizziness. Since then, it has been challenging for me to concentrate and focus while driving.","felt fine day , driving home work , suddenly started headache , chest discomfort , dizziness since , challenging concentrate focus driving" +5613,Hypertension,"I was out shopping when I started feeling a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my tasks since then.","shopping started feeling headache , chest pain , dizziness hard focus concentrate tasks since" +5614,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was out shopping. Since then, it has been difficult for me to concentrate on my work.","first experienced headache , chest pain , lightheadedness , shopping since , difficult concentrate work" +5615,Hypertension,"I woke up this morning feeling fine, but as the day went on, I started experiencing a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my work since then.","woke morning feeling fine , day went , started experiencing headache , chest pain , dizziness hard focus concentrate work since" +5616,Hypertension,"I felt good when I woke up this morning, but as the day wore on, I began to feel headachey, sick to my stomach, and dizzy. Since then, it has been challenging for me to concentrate and focus on my work.","felt good woke morning , day wore , began feel headachey , sick stomach , dizzy since , challenging concentrate focus work" +5617,Hypertension,"I was in the middle of a meeting when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on the discussion since then.","middle meeting suddenly developed headache , chest pain , dizziness hard focus concentrate discussion since" +5618,Hypertension,"I suddenly experienced a headache, chest pain, and dizziness in the middle of a conference. Since then, it has been challenging for me to concentrate and focus on the topic.","suddenly experienced headache , chest pain , dizziness middle conference since , challenging concentrate focus topic" +5619,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a run. It's been hard for me to maintain my balance since then","feeling fine day , suddenly developed headache , chest pain , dizziness run hard maintain balance since" +5620,Migraine,"I have been experiencing acidity and indigestion after meals, as well as frequent headaches and blurred vision.","experiencing acidity indigestion meals , well frequent headaches blurred vision" +5621,Migraine,"I've been getting frequent headaches and hazy vision, as well as acid reflux and indigestion after meals.","getting frequent headaches hazy vision , well acid reflux indigestion meals" +5622,Migraine,"I have been having trouble with my vision, seeing things as distorted and experiencing visual disturbances.","trouble vision , seeing things distorted experiencing visual disturbances" +5623,Migraine,"I've been suffering visual disruptions, seeing things as distorted, and eyesight problems.","suffering visual disruptions , seeing things distorted , eyesight problems" +5624,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties.","facing visual disruptions , seeing things distorted , eyesight difficulties" +5625,Migraine,"I have been feeling excessively hungry, even after eating, and have had a stiff neck.","feeling excessively hungry , even eating , stiff neck" +5626,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties.","facing visual disruptions , seeing things distorted , eyesight difficulties" +5627,Migraine,"I've been grumpy and gloomy lately, and I've also noticed a change in my vision.","grumpy gloomy lately , also noticed change vision" +5628,Migraine,"I have been feeling depressed and irritable, and have noticed a change in my vision.","feeling depressed irritable , noticed change vision" +5629,Migraine,"I've been irritated and depressed lately, and I've also noticed a change in my vision.","irritated depressed lately , also noticed change vision" +5630,Migraine,"Along with recurrent headaches and blurred vision, I suffer acid reflux and trouble digesting my food.","along recurrent headaches blurred vision , suffer acid reflux trouble digesting food" +5631,Migraine,"I have been experiencing acid reflux and difficulty digesting my food, along with regular headaches and impaired vision","experiencing acid reflux difficulty digesting food , along regular headaches impaired vision" +5632,Migraine,"I have been feeling hungry all the time and have had a sore neck, as well as problems with my vision.","feeling hungry time sore neck , well problems vision" +5633,Migraine,"In addition to having a stiff neck and eye issues, I have been always hungry.","addition stiff neck eye issues , always hungry" +5634,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance" +5635,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux" +5636,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been suffering indigestion, headaches, blurred vision, and stomach problems.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also suffering indigestion , headaches , blurred vision , stomach problems" +5637,Migraine,"I have been suffering from acid reflux, indigestion, frequent headaches, and impaired vision, as well as excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , frequent headaches , impaired vision , well excessive hunger , sore neck , depression , irritability , visual disturbance" +5638,Migraine,"Along with increased hunger, a sore neck, melancholy, impatience, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and blurred eyesight.","along increased hunger , sore neck , melancholy , impatience , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , blurred eyesight" +5639,Migraine,"Together with increased hunger, a sore neck, anxiety, irritation, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and impaired eyesight.","together increased hunger , sore neck , anxiety , irritation , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , impaired eyesight" +5640,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as regular headaches and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing digestive issues , including acidity indigestion , well regular headaches distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5641,Migraine,"In addition to recurrent headaches and blurred vision, increased appetite, a stiff neck, sadness, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity.","addition recurrent headaches blurred vision , increased appetite , stiff neck , sadness , irritability , visual disturbance , stomach problems , including indigestion acidity" +5642,Migraine,"In add to frequent headaches and blurred vision, increased appetite, a stiff neck, anxiety, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity.","add frequent headaches blurred vision , increased appetite , stiff neck , anxiety , irritability , visual disturbance , stomach problems , including indigestion acidity" +5643,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5644,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been experiencing blurred and distorted vision.","along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also experiencing blurred distorted vision" +5645,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been feeling blurred and distorted vision.","along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also feeling blurred distorted vision" +5646,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as frequent headaches and impaired vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance","experiencing digestive issues , including acidity indigestion , well frequent headaches impaired vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5647,Migraine,"Acidity and indigestion are among the digestive problems I've been having, along with regular headaches, blurred vision, increased hunger, stiff neck, sadness, impatience, and visual disruption.","acidity indigestion among digestive problems , along regular headaches , blurred vision , increased hunger , stiff neck , sadness , impatience , visual disruption" +5648,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , regular headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5649,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and regular headaches.","along distorted eyesight , excessive appetite , painful neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , regular headaches" +5650,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, anxiety, irritability, and regular headaches, I have also been battling acid reflux, indigestion, and regular headaches.","along distorted eyesight , excessive appetite , painful neck , anxiety , irritability , regular headaches , also battling acid reflux , indigestion , regular headaches" +5651,Migraine,"I have been experiencing acidity, indigestion, and frequent headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing acidity , indigestion , frequent headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5652,Migraine,"Stomach acid, indigestion, frequent headaches, hazy and distorted vision, increased appetite, stiff neck, depression, irritation, and visual distortion have all been bothering me.","stomach acid , indigestion , frequent headaches , hazy distorted vision , increased appetite , stiff neck , depression , irritation , visual distortion bothering" +5653,Migraine,"I have been struggling with digestive issues, including acid reflux and indigestion, as well as regular headaches and impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance","struggling digestive issues , including acid reflux indigestion , well regular headaches impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5654,Migraine,"I have been experiencing frequent headaches, blurred vision, excessive appetite, a sore neck, sadness, irritability, and digestive problems including indigestion and acid reflux.","experiencing frequent headaches , blurred vision , excessive appetite , sore neck , sadness , irritability , digestive problems including indigestion acid reflux" +5655,Migraine,"I have been enduring frequent headaches, blurred vision, excessive appetite, a sore neck, anxiety, irritability, and digestive difficulties including indigestion and acid reflux.","enduring frequent headaches , blurred vision , excessive appetite , sore neck , anxiety , irritability , digestive difficulties including indigestion acid reflux" +5656,Migraine,"I have been experiencing acidity, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance","experiencing acidity , indigestion , headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5657,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion.","along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion" +5658,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion.","along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion" +5659,Migraine,"I have been suffering from acid reflux, indigestion, and frequent headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , frequent headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5660,Migraine,"Along with impaired eyesight, increased appetite, a sore neck, melancholy, impatience, and regular headaches, I've also been experiencing heartburn, acid reflux, and indigestion.","along impaired eyesight , increased appetite , sore neck , melancholy , impatience , regular headaches , also experiencing heartburn , acid reflux , indigestion" +5661,Migraine,"Along with impaired seeing, excessive eating, a sore neck, melancholy, impatience, and constant headaches, I've also been fighting heartburn, acid reflux, and indigestion.","along impaired seeing , excessive eating , sore neck , melancholy , impatience , constant headaches , also fighting heartburn , acid reflux , indigestion" +5662,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort" +5663,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been bothering me and interfering with my usual activities.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms bothering interfering usual activities" +5664,Migraine,"As well as with excessive appetite, a tense neck, depression, irritability, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been disturbing me and interfering with my usual activities.","well excessive appetite , tense neck , depression , irritability , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms disturbing interfering usual activities" +5665,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of distress and making it difficult to go about my daily activities.","suffering acid reflux , indigestion , regular headaches , well impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot distress making difficult go daily activities" +5666,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent migraines. My regular activities have been made more challenging by these symptoms, which have been causing me a great deal of distress.","along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent migraines regular activities made challenging symptoms , causing great deal distress" +5667,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent dizziness. My regular activities have been made more tough by these symptoms, which have been causing me a great deal of distress.","along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent dizziness regular activities made tough symptoms , causing great deal distress" +5668,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort" +5669,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of problems and making it difficult to concentrate and function normally.","struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot problems making difficult concentrate function normally" +5670,Cervical spondylosis,"I have been experiencing severe back pain, a persistent cough, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance.","experiencing severe back pain , persistent cough , weakness limbs neck also hurts feeling dizzy balance" +5671,Cervical spondylosis,"Along with a chronic cough and limb weakness, I've been dealing with excruciating back discomfort. I've been experiencing neck pain as well as vertigo and instability.","along chronic cough limb weakness , dealing excruciating back discomfort experiencing neck pain well vertigo instability" +5672,Cervical spondylosis,"I have been suffering from back pain, a hacking cough, and weakness in my arms and legs. Additionally, my neck hurts and I have had issues with dizziness and maintaining my balance.","suffering back pain , hacking cough , weakness arms legs additionally , neck hurts issues dizziness maintaining balance" +5673,Cervical spondylosis,"Back pain, a hacking cough, and numbness in my arms and legs have been bothering me. In addition, my neck hurts, and I've having trouble staying balanced and without getting lightheaded.","back pain , hacking cough , numbness arms legs bothering addition , neck hurts , trouble staying balanced without getting lightheaded" +5674,Cervical spondylosis,"Back pain, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy.","back pain , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy" +5675,Cervical spondylosis,"Pain typically, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy.","pain typically , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy" +5676,Cervical spondylosis,"I have been struggling with back pain, a cough that won't go away, and weakness in my extremities. My neck hurts and I have had problems with dizziness and losing my balance.","struggling back pain , cough go away , weakness extremities neck hurts problems dizziness losing balance" +5677,Cervical spondylosis,"Back discomfort, a persistent cough, and weakness in my limbs have been bothering me. I have issues with vertigo and losing my equilibrium, and my neck hurts.","back discomfort , persistent cough , weakness limbs bothering issues vertigo losing equilibrium , neck hurts" +5678,Cervical spondylosis,"Back discomfort, a breathing difficulty, and weakness in my limbs have been hurting me. I have issues with vertigo and losing my balance, and my neck hurts.","back discomfort , breathing difficulty , weakness limbs hurting issues vertigo losing balance , neck hurts" +5679,Cervical spondylosis,"I have been experiencing intense back pain, a dry cough, and a lack of strength in my limbs. My neck hurts and I have been feeling dizzy and unsteady on my feet.","experiencing intense back pain , dry cough , lack strength limbs neck hurts feeling dizzy unsteady feet" +5680,Cervical spondylosis,"I've been struggling with severe back pain, a dry cough, and limb weakness. I've been feeling lightheaded and wobbly on my feet, and my neck hurts.","struggling severe back pain , dry cough , limb weakness feeling lightheaded wobbly feet , neck hurts" +5681,Cervical spondylosis,"I've been battling with back pain, a dry cough, and limb weakness. I've been feeling dizzy and unstable on my feet, and my neck hurts.","battling back pain , dry cough , limb weakness feeling dizzy unstable feet , neck hurts" +5682,Cervical spondylosis,"I've been struggling with back pain, a chronic cough, and limb weakness. I've been feeling disoriented and weak on my feet, and my neck hurts.","struggling back pain , chronic cough , limb weakness feeling disoriented weak feet , neck hurts" +5683,Cervical spondylosis,"I have been suffering from back pain, a productive cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and balance.","suffering back pain , productive cough , weakness limbs neck sore issues dizziness balance" +5684,Cervical spondylosis,"Back pain, a productive cough, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck hurts.","back pain , productive cough , limb weakness bothering balance dizzy concerns , neck hurts" +5685,Cervical spondylosis,"Backache, a difficulty breathing, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck suffers.","backache , difficulty breathing , limb weakness bothering balance dizzy concerns , neck suffers" +5686,Cervical spondylosis,"I have been struggling with back pain, a persistent cough, and weakness in my muscles. My neck hurts and I have had problems with dizziness and loss of balance.","struggling back pain , persistent cough , weakness muscles neck hurts problems dizziness loss balance" +5687,Cervical spondylosis,"Back pain, a lingering cough, and muscle weakness have been bothering me. I have issues with dizziness and losing my equilibrium, and my neck hurts.","back pain , lingering cough , muscle weakness bothering issues dizziness losing equilibrium , neck hurts" +5688,Cervical spondylosis,"Back pain, a chronic cough, and muscle weakness have been bothering me. I have concerns with dizziness and losing my position, and my neck hurts.","back pain , chronic cough , muscle weakness bothering concerns dizziness losing position , neck hurts" +5689,Cervical spondylosis,"I have been experiencing severe back pain, a cough that comes and goes, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance.","experiencing severe back pain , cough comes goes , weakness limbs neck also hurts feeling dizzy balance" +5690,Cervical spondylosis,"I've been having intermittent coughing fits, significant back pain, and limb weakness. I've been experiencing neck pain as well as a dizzy and unsteady sensation.","intermittent coughing fits , significant back pain , limb weakness experiencing neck pain well dizzy unsteady sensation" +5691,Cervical spondylosis,"I've been having periodic coughing fits, terrible back pain, and limb weakness. I've been feeling neck pain as well as a dizzy and unstable sensation.","periodic coughing fits , terrible back pain , limb weakness feeling neck pain well dizzy unstable sensation" +5692,Cervical spondylosis,"I have been dealing with back pain, a cough that won't go away, and weakness in my arms and legs. My neck hurts and I have had problems with dizziness and maintaining my balance.","dealing back pain , cough go away , weakness arms legs neck hurts problems dizziness maintaining balance" +5693,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts.","back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts" +5694,Cervical spondylosis,"Back pain, a dry cough, and stiffness in my arms and legs have been bothering me. I've had problems staying balanced and experience dizziness, and my neck hurts.","back pain , dry cough , stiffness arms legs bothering problems staying balanced experience dizziness , neck hurts" +5695,Cervical spondylosis,"I've been experiencing back pain, a persistent cough, and numbness in my arms and legs. I've been having trouble staying balanced and managing my vertigo, and my neck hurts.","experiencing back pain , persistent cough , numbness arms legs trouble staying balanced managing vertigo , neck hurts" +5696,Cervical spondylosis,"My arms and legs have been weak, and I have been suffering from back pain and a persistent cough. In addition to experiencing neck pain and balance issues, I also suffer dizziness.","arms legs weak , suffering back pain persistent cough addition experiencing neck pain balance issues , also suffer dizziness" +5697,Cervical spondylosis,"Back pain, a persistent cough, and arm and leg weakness have been bothering me. I've been experiencing neck pain, balance issues, and dizziness.","back pain , persistent cough , arm leg weakness bothering experiencing neck pain , balance issues , dizziness" +5698,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts.","back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts" +5699,Cervical spondylosis,"I have been suffering from back pain, a dry cough, and a lack of strength in my muscles. My neck is sore and I have been feeling dizzy and unsteady on my feet","suffering back pain , dry cough , lack strength muscles neck sore feeling dizzy unsteady feet" +5700,Cervical spondylosis,"Back pain, a dry cough, and a lack of muscle strength have been bothering me. My neck hurts, and I've been feeling lightheaded and shaky.","back pain , dry cough , lack muscle strength bothering neck hurts , feeling lightheaded shaky" +5701,Cervical spondylosis,"My muscles lack strength, and I have been experiencing back pain and a dry cough. I've been experiencing neck pain and feeling lightheaded and unstable on my feet.","muscles lack strength , experiencing back pain dry cough experiencing neck pain feeling lightheaded unstable feet" +5702,Cervical spondylosis,"My muscles haven't been very strong, and I've been experiencing back ache. I've been feeling lightheaded and wobbly on my feet, and my neck hurts.","muscles strong , experiencing back ache feeling lightheaded wobbly feet , neck hurts" +5703,Cervical spondylosis,"I've been experiencing back pain, a dry cough, and muscle weakness. I've been experiencing neck pain, feeling lightheaded, and having trouble standing still.","experiencing back pain , dry cough , muscle weakness experiencing neck pain , feeling lightheaded , trouble standing still" +5704,Cervical spondylosis,"I have been struggling with intense back pain, a chronic cough, and weakness in my arms and legs. My neck is sore and I have had problems with dizziness and loss of balance.","struggling intense back pain , chronic cough , weakness arms legs neck sore problems dizziness loss balance" +5705,Cervical spondylosis,"I've had terrible back pain, a persistent cough, and weakness in my arms and legs. I have issues with dizziness and balance loss, and my neck hurts.","terrible back pain , persistent cough , weakness arms legs issues dizziness balance loss , neck hurts" +5706,Cervical spondylosis,"I've been suffering from severe back pain, a persistent cough, and numbness in my arms and legs. I've been experiencing issues with vertigo and balance issues, and my neck hurts.","suffering severe back pain , persistent cough , numbness arms legs experiencing issues vertigo balance issues , neck hurts" +5707,Cervical spondylosis,"Along with a persistent cough, weakness in my arms and legs, and severe back pain, I've been having a lot of trouble. I've experienced issues with vertigo and balance loss, and my neck is hurting.","along persistent cough , weakness arms legs , severe back pain , lot trouble experienced issues vertigo balance loss , neck hurting" +5708,Cervical spondylosis,"I have been experiencing severe back pain, a cough that produces phlegm, and weakness in my muscles. My neck also hurts and I have been feeling dizzy and unsteady on my feet.","experiencing severe back pain , cough produces phlegm , weakness muscles neck also hurts feeling dizzy unsteady feet" +5709,Cervical spondylosis,"In addition to having excruciating back pain, I've also been coughing up mucus and feeling weak all over. I've been feeling lightheaded and unstable on my feet, and my neck hurts as well.","addition excruciating back pain , also coughing mucus feeling weak feeling lightheaded unstable feet , neck hurts well" +5710,Cervical spondylosis,"My muscles have been quite weak, and I've been coughing up phlegm along with significant back discomfort. In addition to feeling weak and disoriented, my neck has been hurting.","muscles quite weak , coughing phlegm along significant back discomfort addition feeling weak disoriented , neck hurting" +5711,Cervical spondylosis,"Along with a phlegmy cough and muscle weakness, I've been dealing with excruciating back pain. In addition to feeling woozy and shaky on my feet, my neck has been hurting.","along phlegmy cough muscle weakness , dealing excruciating back pain addition feeling woozy shaky feet , neck hurting" +5712,Cervical spondylosis,"I have been dealing with back pain, a persistent cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and loss of balance.","dealing back pain , persistent cough , weakness limbs neck sore issues dizziness loss balance" +5713,Cervical spondylosis,"Back ache, a chronic cough, and limb weakness have been bothering me. I have troubles with disorientation and balance loss, and my neck hurts.","back ache , chronic cough , limb weakness bothering troubles disorientation balance loss , neck hurts" +5714,Cervical spondylosis,"I've had back pain, a cough that won't go away, and limb weakness. I've been experiencing neck pain, instability, and balance concerns.","back pain , cough go away , limb weakness experiencing neck pain , instability , balance concerns" +5715,Cervical spondylosis,"I have been suffering from back pain, a chronic cough, and weakness in my arms and legs. My neck hurts and I have been feeling dizzy and off balance","suffering back pain , chronic cough , weakness arms legs neck hurts feeling dizzy balance" +5716,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. My neck hurts, and I've been feeling lightheaded and unsteady.","back pain , persistent cough , numbness arms legs bothering neck hurts , feeling lightheaded unsteady" +5717,Cervical spondylosis,"I've had back pain, a persistent cough, and weakness in my arms and legs. My neck hurts, and I've been feeling off-balance and woozy.","back pain , persistent cough , weakness arms legs neck hurts , feeling balance woozy" +5718,Cervical spondylosis,"I have been struggling with back pain, a productive cough, and weakness in my muscles. My neck is sore and I have had problems with dizziness and unsteady balance.","struggling back pain , productive cough , weakness muscles neck sore problems dizziness unsteady balance" +5719,Cervical spondylosis,"Back pain, a productive cough, and muscle weakness have been bothering me. I have issues with dizziness and uneven balance, and my neck hurts.","back pain , productive cough , muscle weakness bothering issues dizziness uneven balance , neck hurts" +5720,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5721,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5722,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach has been hurting.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow additionally , stomach hurting" +5723,Jaundice,"Extreme itchiness, sickness, and exhaustion have all been plaguing me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","extreme itchiness , sickness , exhaustion plaguing addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5724,Jaundice,I have been having severe itching and vomiting. I am also very tired and have lost weight. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain,severe itching vomiting also tired lost weight fever high skin turned yellow urine dark experiencing abdominal pain +5725,Jaundice,"I've been experiencing intense itching and nausea. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","experiencing intense itching nausea lost weight also really exhausted skin become yellow , severe fever dark urine , stomach pain" +5726,Jaundice,"I've been throwing up and experiencing intense itching. Along with losing weight, I'm also really exhausted. My skin has become yellow, and my fever is really high. I've been having stomach pain and my pee is black.","throwing experiencing intense itching along losing weight , also really exhausted skin become yellow , fever really high stomach pain pee black" +5727,Jaundice,"Strong itchiness and nausea have been bothering me. I have also lost weight and am really exhausted. I have a high fever, and my skin is becoming yellow. In addition to feeling stomach ache, my pee is black.","strong itchiness nausea bothering also lost weight really exhausted high fever , skin becoming yellow addition feeling stomach ache , pee black" +5728,Jaundice,I've been experiencing terrible itching and nausea. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. I have dark urine and stomach ache.,experiencing terrible itching nausea lost weight also really exhausted skin become yellow severe temperature dark urine stomach ache +5729,Jaundice,I have been feeling itchy and have been vomiting. I am also very fatigued and have lost weight. My fever is high and my skin has become yellow. My urine is dark and I have abdominal pain,feeling itchy vomiting also fatigued lost weight fever high skin become yellow urine dark abdominal pain +5730,Jaundice,"I've been feeling scratchy and throwing up. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have stomach ache and black urine.","feeling scratchy throwing lost weight also really exhausted skin become yellow , severe fever stomach ache black urine" +5731,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. Additionally, I get stomach ache and dark urine.","itchy throwing along losing weight , also really exhausted skin turned yellow , fever high additionally , get stomach ache dark urine" +5732,Jaundice,"I've had a scratchy stomach and been throwing up. Aside from losing weight, I am also really exhausted. I have a high fever and yellow skin. Besides having stomach ache, my pee is black.","scratchy stomach throwing aside losing weight , also really exhausted high fever yellow skin besides stomach ache , pee black" +5733,Jaundice,"I've been itchy and throwing up. In addition, I have lost weight and feel really exhausted. My skin has become yellow and I have a severe temperature. I have abdominal ache and black urine.","itchy throwing addition , lost weight feel really exhausted skin become yellow severe temperature abdominal ache black urine" +5734,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5735,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain","suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5736,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having","feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain" +5737,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5738,Jaundice,"I've had nausea, vomiting, and exhaustion. Additionally, I've lost weight and have a temperature. My urine is black and my skin has turned yellow. I've also been having stomach pain.","nausea , vomiting , exhaustion additionally , lost weight temperature urine black skin turned yellow also stomach pain" +5739,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well" +5740,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5741,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5742,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5743,Jaundice,"I've been constantly feeling scratchy, sick, and tired out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Furthermore, I have been experiencing stomach pain.","constantly feeling scratchy , sick , tired addition , lost weight temperature urine dark , skin turned yellow furthermore , experiencing stomach pain" +5744,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain" +5745,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain.","severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5746,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain.","feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain" +5747,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts.","experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts" +5748,Jaundice,"Extreme itchiness, nausea, and exhaustion have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present.","extreme itchiness , nausea , exhaustion bothering addition , developed fever lost weight pee black , developed yellow rash ache stomach also present" +5749,Jaundice,"Extreme itchiness, nausea, and fatigue have been troubling me. In moreover, I experienced a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present.","extreme itchiness , nausea , fatigue troubling moreover , experienced fever lost weight pee black , developed yellow rash ache stomach also present" +5750,Jaundice,I have been feeling itchy and have been vomiting. I am also very tired and have lost weight. My fever is high and my skin has become yellow. I have been experiencing abdominal pain as well.,feeling itchy vomiting also tired lost weight fever high skin become yellow experiencing abdominal pain well +5751,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. My stomach has also been hurting recently.","itchy throwing along losing weight , also really exhausted skin turned yellow , fever high stomach also hurting recently" +5752,Jaundice,"I've had a scratchy stomach and been throwing up. I have also lost weight and am really exhausted. I have a high fever and yellow skin. As well as you, I have been having stomach pain.","scratchy stomach throwing also lost weight really exhausted high fever yellow skin well , stomach pain" +5753,Jaundice,I've been itchy and throwing up. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. My stomach has also been hurting.,itchy throwing lost weight also really exhausted skin become yellow severe temperature stomach also hurting +5754,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5755,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain","suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5756,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having","feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain" +5757,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5758,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well" +5759,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5760,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain" +5761,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain.","severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5762,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain.","feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain" +5763,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts.","experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts" +5764,Jaundice,"I have been experiencing itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain.","experiencing itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5765,Jaundice,"I've been losing weight and experiencing nausea, itching, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight experiencing nausea , itching , exhaustion skin become yellow , severe fever dark urine , stomach pain" +5766,Jaundice,"I have been suffering from intense itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain","suffering intense itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5767,Jaundice,"I've been losing weight and experiencing severe itching, nausea, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight experiencing severe itching , nausea , exhaustion skin become yellow , severe fever dark urine , stomach pain" +5768,Jaundice,"I have been experiencing severe itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain","experiencing severe itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5769,Jaundice,"I've been losing weight, feeling really fatigued, and throwing up a lot. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight , feeling really fatigued , throwing lot skin become yellow , severe fever dark urine , stomach pain" +5770,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. I feel nauseous and my muscles are really sore","experiencing severe itching , chills , vomiting , high fever also sweating lot headache feel nauseous muscles really sore" +5771,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot.","high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot" +5772,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot.","high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot" +5773,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. My muscles are quite sore, and I feel sick.","strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot muscles quite sore , feel sick" +5774,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, My muscles hurt a lot, and I feel queasy.","along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , muscles hurt lot , feel queasy" +5775,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. My muscles hurt a lot, and I feel sick.","high fever , chills , intense itching addition , headache perspiring lot muscles hurt lot , feel sick" +5776,Malaria,"I've had intense itching all over my body, accompanied by chills and vomiting. My fever is really high and I've been sweating excessively. I also have a headache and feel nauseous. My muscles are really painful.","intense itching body , accompanied chills vomiting fever really high sweating excessively also headache feel nauseous muscles really painful" +5777,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort.","experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort" +5778,Malaria,"Along with severe body itchiness, chills, and nausea, I've been experiencing. I've been severely perspiring and have a very high fever. I'm feeling queasy and also have a headache. Really hurting muscles are me.","along severe body itchiness , chills , nausea , experiencing severely perspiring high fever feeling queasy also headache really hurting muscles" +5779,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort.","experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort" +5780,Malaria,"I've been experiencing severe body itchiness, along with chills and nausea. I've been perspiring a lot and have an extremely high fever. I feel sick to my stomach and have a headache. My muscles are hurting a lot.","experiencing severe body itchiness , along chills nausea perspiring lot extremely high fever feel sick stomach headache muscles hurting lot" +5781,Malaria,"I'm suffering from intense itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been bothering me.","suffering intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also bothering" +5782,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness" +5783,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache" +5784,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been bothered by nausea as well as muscle ache.","strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot bothered nausea well muscle ache" +5785,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and have been perspiring a lot. I've also been bothered by nausea and muscular ache.","high fever , chills , severe itching addition , headache perspiring lot also bothered nausea muscular ache" +5786,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness" +5787,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache" +5788,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me discomfort.","experiencing severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing discomfort" +5789,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache" +5790,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache.","strong itchiness , chills , nausea , high temperature plaguing along headache , also perspiring lot also bothered nausea muscle ache" +5791,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. I have a headache and am also perspiring a lot. I've been uncomfortable from nausea and muscle ache, too.","along intense scratching , chills , nausea , high fever , also feeling really unwell headache also perspiring lot uncomfortable nausea muscle ache ," +5792,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been suffering from nausea as well as muscle ache.","high fever , chills , intense itching addition , headache perspiring lot suffering nausea well muscle ache" +5793,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache" +5794,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable.","intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable" +5795,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles.","experiencing lot scratching , chills , vomiting , fever also headache perspiring lot terrible nausea soreness muscles" +5796,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache.","experienced severe itching , chills , nausea , high fever besides headache , also perspiring lot terrible nausea muscle ache" +5797,Malaria,"I have a high fever, chills, and severe itching. Along with my headache and excessive sweating, I've been terrible with nausea and muscle ache.","high fever , chills , severe itching along headache excessive sweating , terrible nausea muscle ache" +5798,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and am perspiring a lot. I've been feeling awful with nausea and muscle ache.","high fever , chills , severe itching addition , headache perspiring lot feeling awful nausea muscle ache" +5799,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been causing me a lot of discomfort.","experiencing severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain causing lot discomfort" +5800,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I've been really uncomfortable lately from nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot really uncomfortable lately nausea muscle ache" +5801,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. I've been suffering from severe muscle pain and nausea.","strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot suffering severe muscle pain nausea" +5802,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, I've been suffering from severe muscle pain and nausea.","along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , suffering severe muscle pain nausea" +5803,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been in a lot of agony from muscle ache and nausea.","high fever , chills , intense itching addition , headache perspiring lot lot agony muscle ache nausea" +5804,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been bothering me.","intense itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also bothering" +5805,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","experiencing lot scratching , chills , vomiting , fever also headache perspiring lot additionally hurting nausea muscle soreness" +5806,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache.","experienced severe itching , chills , nausea , high fever along headache , also perspiring lot also bothered nausea muscle ache" +5807,Malaria,"I have a high fever, chills, and severe itching. I have a headache and am also perspiring a lot. I've been bothered by nausea as well as muscle ache.","high fever , chills , severe itching headache also perspiring lot bothered nausea well muscle ache" +5808,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. In addition, I have a headache and am perspiring a lot. I've also been bothered by nausea and muscular ache.","experiencing severe itching , chills , vomiting , high fever addition , headache perspiring lot also bothered nausea muscular ache" +5809,Malaria,"I'm suffering from severe itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been causing me discomfort.","suffering severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also causing discomfort" +5810,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache" +5811,Malaria,"I have a high fever, severe itching, chills, and vomiting. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high fever , severe itching , chills , vomiting addition , perspiring lot headache also bothered nausea muscle ache" +5812,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been uncomfortable from nausea and muscle ache, too.","strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot uncomfortable nausea muscle ache ," +5813,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. In addition, I have a headache and have been perspiring a lot. I've been suffering from nausea as well as muscle ache.","strong itchiness , chills , nausea , high fever part current condition addition , headache perspiring lot suffering nausea well muscle ache" +5814,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache" +5815,Malaria,"I've been experiencing intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable.","experiencing intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable" +5816,Malaria,"Intense scratching, chills, nausea, and a high temperature have been plaguing me. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles.","intense scratching , chills , nausea , high temperature plaguing also headache perspiring lot terrible nausea soreness muscles" +5817,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache.","along high fever , chills , vomiting , severe itching besides headache , also perspiring lot terrible nausea muscle ache" +5818,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Along with my headache and excessive sweating, I've been feeling awful with nausea and muscle ache.","along high fever , chills , vomiting , severe itching along headache excessive sweating , feeling awful nausea muscle ache" +5819,Malaria,"I've had severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me a lot of discomfort.","severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing lot discomfort" +5820,urinary tract infection,"Frequent urges to urinate with little output, pain during urination, cloudy or bloody urine, strong or foul-smelling urine, pelvic pain, low fever, nausea and vomiting","frequent urges urinate little output , pain urination , cloudy bloody urine , strong foul smelling urine , pelvic pain , low fever , nausea vomiting" +5821,urinary tract infection,"I get frequent urges to urinate at night with little output, and a lot of pain during urination. The urine is coludy and bloody and sometime foul smelling, and I get nauseous","get frequent urges urinate night little output , lot pain urination urine coludy bloody sometime foul smelling , get nauseous" +5822,urinary tract infection,I get a burning sensation when I pee. Sometimes a lot of pain and foul smelling urine. I have been getting more urges to urinate at night,get burning sensation pee sometimes lot pain foul smelling urine getting urges urinate night +5823,urinary tract infection,I have been getting blood in my pee. Sometimes I get nauseous while peeing. This often almost coincides with me having a high temperature,getting blood pee sometimes get nauseous peeing often almost coincides high temperature +5824,urinary tract infection,"My pee looks cloudy and has storng and foul smell. I frequently get an urge to urinate at night, and have been getting high temperatures since these symptoms strted showing","pee looks cloudy storng foul smell frequently get urge urinate night , getting high temperatures since symptoms strted showing" +5825,urinary tract infection,"I have pain in my abdomen, and often get feverish. I have sudden and strong urges to pee. The pain is almost constant, and often increases at night time. My pee almost always has a foul smell","pain abdomen , often get feverish sudden strong urges pee pain almost constant , often increases night time pee almost always foul smell" +5826,urinary tract infection,"I have been frequently getting sudden strong urges to pee. There is blood in my pee sometimes and it is very foul smelling. I think I have an infection, what do I do?","frequently getting sudden strong urges pee blood pee sometimes foul smelling think infection ," +5827,urinary tract infection,"I get blood in my pee sometimes and sometimes get nauseous whie peeing. I also have a bad smell in my pee and sometimes get high temperatures at nights, help me","get blood pee sometimes sometimes get nauseous whie peeing also bad smell pee sometimes get high temperatures nights , help" +5828,urinary tract infection,"I have pain in my lower abdomen, and get a buring sensation in my pee. I also have been getting low temperatures since I started to get these other symptoms. I have been weak because of this","pain lower abdomen , get buring sensation pee also getting low temperatures since started get symptoms weak" +5829,urinary tract infection,There is blood in my urine and I have a low fever. My head hurts almost all the time and I get very strong uncontrollable urges to pee. I have been having pain in lower back also ,blood urine low fever head hurts almost time get strong uncontrollable urges pee pain lower back also +5830,urinary tract infection,I have been having low temperatures and bloody pee since some days now. My head hurts like crazy and pee also smells very foul. I have almost no control on my peeing and get very sudden urges,low temperatures bloody pee since days head hurts like crazy pee also smells foul almost control peeing get sudden urges +5831,urinary tract infection,I have pain near my pelvic region and vomit a lot. Sometimes there is blood in my pee and there is almost a very foul smell in my urine.I sometimes get headches and have trouble sleeping due to this,pain near pelvic region vomit lot sometimes blood pee almost foul smell urine sometimes get headches trouble sleeping due +5832,urinary tract infection,"I have to constantly to go the bathroom to relieve myself, but cant seem to empty my bladder. I get these very strong and uncontrollable urges to pee and sometimes get dark or bloody pee","constantly go bathroom relieve , cant seem empty bladder get strong uncontrollable urges pee sometimes get dark bloody pee" +5833,urinary tract infection,I been having very low temperatues and a very foul smelling pee. The area near my kidneys hurt a lot and I cant seem to hold my pee. I often get these uncontrollable urges,low temperatues foul smelling pee area near kidneys hurt lot cant seem hold pee often get uncontrollable urges +5834,urinary tract infection,"I have to go the bathroom all the time, but the urine output is very low often just a few drops. My stomach hurts a lot and and cant seem to be able to control my urges to pee","go bathroom time , urine output low often drops stomach hurts lot cant seem able control urges pee" +5835,urinary tract infection,My is pee is dark and often bloody and often has a very unfathomable smell. I have been having temperature fluctuations pretty frequently and often am not able to sleep at night because of this,pee dark often bloody often unfathomable smell temperature fluctuations pretty frequently often able sleep night +5836,urinary tract infection,I have been having pain in my bladder and have been getting ,pain bladder getting +5837,urinary tract infection,I have been urinating with blood in it. I occasionally feel queasy when urinating. I frequently almost have a fever at the same time.,urinating blood occasionally feel queasy urinating frequently almost fever time +5838,urinary tract infection,"My pee has a strong, unpleasant scent and a hazy appearance. Since these symptoms started appearing, I regularly feel the desire to urinate at night and have been experiencing high temperatures","pee strong , unpleasant scent hazy appearance since symptoms started appearing , regularly feel desire urinate night experiencing high temperatures" +5839,urinary tract infection,"My stomach hurts, and I frequently acquire a temperature. I experience sudden, intense cravings to urinate. The discomfort is virtually always there and frequently gets worse at night. My pee nearly always smells bad.","stomach hurts , frequently acquire temperature experience sudden , intense cravings urinate discomfort virtually always frequently gets worse night pee nearly always smells bad" +5840,urinary tract infection,"I've been experiencing frequent, intense, abrupt cravings to urinate. Sometimes I get blood in my pee, and it smells awful. What should I do if I believe I have an infection?","experiencing frequent , intense , abrupt cravings urinate sometimes get blood pee , smells awful believe infection" +5841,urinary tract infection,I occasionally urinate with blood in it and occasionally feel queasy while doing so. Help! I also occasionally get high temps at night and have a terrible odour coming from my pee.,occasionally urinate blood occasionally feel queasy help also occasionally get high temps night terrible odour coming pee +5842,urinary tract infection,"I have lower abdominal ache and a bursting sensation when I urinate. Since I began to experience these additional symptoms, I have also been experiencing low body temperatures. I've been weak as a result of this.","lower abdominal ache bursting sensation urinate since began experience additional symptoms , also experiencing low body temperatures weak result" +5843,urinary tract infection,"I have a mild temperature and blood in my pee. My head hurts almost constantly, and I frequently experience severe, involuntary desires to urinate. Additionally, I've been experiencing lower back ache","mild temperature blood pee head hurts almost constantly , frequently experience severe , involuntary desires urinate additionally , experiencing lower back ache" +5844,urinary tract infection,"Since a few days ago, I've been experiencing low temperatures and bloody urination. My head is in excruciating pain, and my urine smells awful. I can hardly control when I urinate, and the impulses come on suddenly.","since days ago , experiencing low temperatures bloody urination head excruciating pain , urine smells awful hardly control urinate , impulses come suddenly" +5845,urinary tract infection,"I frequently vomit and get discomfort at my pelvic area. My urine occasionally smells almost unbearably bad, and there is occasionally blood in it. Because of my headaches at times, I have problems falling asleep.","frequently vomit get discomfort pelvic area urine occasionally smells almost unbearably bad , occasionally blood headaches times , problems falling asleep" +5846,urinary tract infection,"I have to use the restroom frequently to relieve myself, but I can't seem to get my bladder empty. I occasionally get severe, uncontrolled desires to urinate, as well as black or crimson urine.","use restroom frequently relieve , seem get bladder empty occasionally get severe , uncontrolled desires urinate , well black crimson urine" +5847,urinary tract infection,"I've been experiencing really low moods and very bad urine odour. I can't seem to keep my urine back, and the area near my kidneys hurts a lot. I frequently experience these irrational cravings.","experiencing really low moods bad urine odour seem keep urine back , area near kidneys hurts lot frequently experience irrational cravings" +5848,urinary tract infection,"I have to use the restroom frequently, yet only a few drops of pee are usually produced. My stomach aches a lot, and I can't seem to control the desire to urinate.","use restroom frequently , yet drops pee usually produced stomach aches lot , seem control desire urinate" +5849,urinary tract infection,"My urine is frequently black, red, and has a really strange odour. I have been experiencing temperature changes very regularly, which usually prevents me from sleeping at night.","urine frequently black , red , really strange odour experiencing temperature changes regularly , usually prevents sleeping night" +5850,urinary tract infection,Blood has been found in my urination. I sometimes have nausea when urinating. I regularly feel like I'm almost feverish.,blood found urination sometimes nausea urinating regularly feel like almost feverish +5851,urinary tract infection,My pee smells strongly and is cloudy in appearance. I've had high temperatures and a regular urge to urinate at night since these symptoms first materialised.,pee smells strongly cloudy appearance high temperatures regular urge urinate night since symptoms first materialised +5852,urinary tract infection,"I've been having frequent, strong, sudden urges to urinate. I occasionally urinate with blood in it, and the stench is horrible. What ought I to do if I think I'm infected?","frequent , strong , sudden urges urinate occasionally urinate blood , stench horrible ought think infected" +5853,urinary tract infection,"On rare occasions, I pee with blood in it and have mild nausea. Help! I also occasionally experience high nighttime temperatures and a dreadful urine odour.","rare occasions , pee blood mild nausea help also occasionally experience high nighttime temperatures dreadful urine odour" +5854,urinary tract infection,"My lower abdomen hurts, and when I urinate, it feels like it's exploding. I've been having low body temps ever since I started having these new symptoms. Because of this, I've been weak.","lower abdomen hurts , urinate , feels like exploding low body temps ever since started new symptoms , weak" +5855,urinary tract infection,"Blood is in my pee, and I have a low body temperature. I have practically continual headaches and often strong, uncontrollable need to urinate. In addition, I've started having lower back pain.","blood pee , low body temperature practically continual headaches often strong , uncontrollable need urinate addition , started lower back pain" +5856,urinary tract infection,"I've had low temps and bloody urine for the past four days. My pee smells terrible, and my head hurts like hell. I scarcely have any control over when I urinate, and the urges strike without warning.","low temps bloody urine past four days pee smells terrible , head hurts like hell scarcely control urinate , urges strike without warning" +5857,urinary tract infection,"I regularly vomit and get pelvic pain. There is occasionally blood in my pee, and it occasionally has an absolutely intolerable odour. I occasionally have trouble falling asleep because of my migraines.","regularly vomit get pelvic pain occasionally blood pee , occasionally absolutely intolerable odour occasionally trouble falling asleep migraines" +5858,urinary tract infection,"I need to relieve myself regularly, but I can't seem to get my bladder to empty. On sometimes, I get intense, uncontrollable urges to urinate, along with dark or red urine.","need relieve regularly , seem get bladder empty sometimes , get intense , uncontrollable urges urinate , along dark red urine" +5859,urinary tract infection,"My spirits have been incredibly low, and my pee smells awful. My kidney region hurts a lot, and I can't seem to hold my urine in. I get these unreasonable urges all the time.","spirits incredibly low , pee smells awful kidney region hurts lot , seem hold urine get unreasonable urges time" +5860,urinary tract infection,"I have to go to the bathroom a lot, but generally only a few drops of urine come out. I have severe stomach pains and an overwhelming want to urinate.","go bathroom lot , generally drops urine come severe stomach pains overwhelming want urinate" +5861,urinary tract infection,"My urine often has a weird odour, is crimson or black in colour, and both. My body's temperature has been fluctuating often, which typically keeps me up at night.","urine often weird odour , crimson black colour , body temperature fluctuating often , typically keeps night" +5862,urinary tract infection,I noticed blood in my urinating. I occasionally feel sick after urinating. I frequently feel as though I have a fever.,noticed blood urinating occasionally feel sick urinating frequently feel though fever +5863,urinary tract infection,"My pee has a strong odour and a hazy look. Since these symptoms started, I've had high temperatures and frequent nighttime urges to urinate.","pee strong odour hazy look since symptoms started , high temperatures frequent nighttime urges urinate" +5864,urinary tract infection,I occasionally urinate with blood in it and feel a little queasy. Help! I also occasionally get horrible pee odours and excessive overnight temps.,occasionally urinate blood feel little queasy help also occasionally get horrible pee odours excessive overnight temps +5865,urinary tract infection,"My lower abdomen aches, and it feels like it may explode when I urinate. Since I began experiencing these new symptoms, my body temperature has been consistently low. That's why I've been weak.","lower abdomen aches , feels like may explode urinate since began experiencing new symptoms , body temperature consistently low weak" +5866,urinary tract infection,"In the last four days, I've experienced low temperatures and blood in my pee. My head hurts so much and my urine smells awful. The desires to urinate seldom come on cue, and I hardly ever have any control over when they do.","last four days , experienced low temperatures blood pee head hurts much urine smells awful desires urinate seldom come cue , hardly ever control" +5867,urinary tract infection,"My pee frequently has an odd smell and is either red or black, or both. The frequent changes in my body temperature usually keep me awake at night.","pee frequently odd smell either red black , frequent changes body temperature usually keep awake night" +5868,urinary tract infection,My pee smells strongly and seems cloudy. I've had fevers and frequent overnight urination needs ever since these symptoms began.,pee smells strongly seems cloudy fevers frequent overnight urination needs ever since symptoms began +5869,urinary tract infection,"I've had low temps and blood in my urine for the past three days. My pee smells terrible, and my head hurts so much. Urinary urges seldom occur on cue, and I almost never have any control over when they do.","low temps blood urine past three days pee smells terrible , head hurts much urinary urges seldom occur cue , almost never control" +5870,allergy,"I have a runny nose and I am sneezing all the time. My eyes are itchy and often watery, and I am coughing all the time. My head hurts and all the time","runny nose sneezing time eyes itchy often watery , coughing time head hurts time" +5871,allergy,I have sore throat and I am sneezing all the time. Sometimes I have swelling on my face like my lips and near my eyes. I just cant stop sneezing once I start sneezing,sore throat sneezing time sometimes swelling face like lips near eyes cant stop sneezing start sneezing +5872,allergy,I hace difficulty in breething and shortness of breath. I cough uncontrollably and get itchy eyes and swelling on my face and other body parts,hace difficulty breething shortness breath cough uncontrollably get itchy eyes swelling face body parts +5873,allergy,I have a nasal congestion and blocked nose. Sometimes at night I have chest pain and tightness. I have also lost my sense of smell and taste,nasal congestion blocked nose sometimes night chest pain tightness also lost sense smell taste +5874,allergy,I have asthma like symptoms like wheezing and difficulty breathing. I often get fever and have headaches. I feel tired all the time,asthma like symptoms like wheezing difficulty breathing often get fever headaches feel tired time +5875,allergy,"I feel tired all the time, I have lost my taste and have a really sore throat. I also get feverish and often have muscle aches. Sometimes my whole body just cramps up","feel tired time , lost taste really sore throat also get feverish often muscle aches sometimes whole body cramps" +5876,allergy,I have been experiencing a loss of appetite and have difficulty swallowing food. I have been suffering from sore throat and runnny nose also.,experiencing loss appetite difficulty swallowing food suffering sore throat runnny nose also +5877,allergy,"I feel fatigued all the time, and have a tingling sensation in my throat. I have also developed flaky skin. Sometimes I get puffy eyes and sometimes puffs up too.","feel fatigued time , tingling sensation throat also developed flaky skin sometimes get puffy eyes sometimes puffs" +5878,allergy,"I have stomach cramps, nausea and diarrhea. My throat is swollen, and I have difficulty breathing. Sometimes at night night I get chest pain and nauseous.","stomach cramps , nausea diarrhea throat swollen , difficulty breathing sometimes night night get chest pain nauseous" +5879,allergy,I have itchy and red skin. Sometimes these result in flaking. My face and lips puff up and causes a lot of inconvinience. I get watery eyes sometimes and headches when the puffing gets severe,itchy red skin sometimes result flaking face lips puff causes lot inconvinience get watery eyes sometimes headches puffing gets severe +5880,allergy,"I often sneeze and have a runny nose. My eyes are scratchy and frequently runny, and I frequently cough. My head hurts constantly.","often sneeze runny nose eyes scratchy frequently runny , frequently cough head hurts constantly" +5881,allergy,"I often sneeze and have a sore throat. My lips and the area around my eyes occasionally swell. Once I start sneezing, I just can't stop.","often sneeze sore throat lips area around eyes occasionally swell start sneezing , stop" +5882,allergy,"I have trouble breathing and get short of breath. I have a dry, hacking cough, itchy eyes, and swelling all over my face and body.","trouble breathing get short breath dry , hacking cough , itchy eyes , swelling face body" +5883,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort at night. I've also lost my ability to taste and smell.,plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability taste smell +5884,allergy,"I get symptoms of asthma, such as wheezing and breathing problems. I frequently have headaches and fever. All the time, I feel exhausted.","get symptoms asthma , wheezing breathing problems frequently headaches fever time , feel exhausted" +5885,allergy,"I always feel exhausted, have bad taste, and have an extremely scratchy throat. I also have muscular pain and heat. My entire body simply cramps up occasionally.","always feel exhausted , bad taste , extremely scratchy throat also muscular pain heat entire body simply cramps occasionally" +5886,allergy,"I've been losing my appetite, and I also have trouble swallowing. My nose has been running, and I have a sore throat.","losing appetite , also trouble swallowing nose running , sore throat" +5887,allergy,I'm always worn out and experiencing a tingle in my throat. I've also started to have dry skin. My eyes occasionally swell up,always worn experiencing tingle throat also started dry skin eyes occasionally swell +5888,allergy,"I feel queasy, nauseous, and dizzy. I have a swelling throat and am having breathing issues. I occasionally have chest discomfort and nausea at night.","feel queasy , nauseous , dizzy swelling throat breathing issues occasionally chest discomfort nausea night" +5889,allergy,"My skin is red and scratchy. These can occasionally flake. My cheeks and lips swell, which is really annoying. I occasionally have headaches and runny eyes because to the puffing.","skin red scratchy occasionally flake cheeks lips swell , really annoying occasionally headaches runny eyes puffing" +5890,allergy,"I frequently sneeze, and my nose runs. I constantly cough, and my eyes are sore and watery. My head hurts all the time.","frequently sneeze , nose runs constantly cough , eyes sore watery head hurts time" +5891,allergy,I have a sore throat and frequently sneeze. Sometimes the skin around my eyes and my lips swells. I just can't stop sneezing once I get going.,sore throat frequently sneeze sometimes skin around eyes lips swells stop sneezing get going +5892,allergy,"I have respiratory issues and experience breathlessness. My face and torso are swollen, my eyes are itching, and I have a dry, hacking cough.","respiratory issues experience breathlessness face torso swollen , eyes itching , dry , hacking cough" +5893,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. Additionally, I've lost my senses of taste and smell.","nasal congestion blocked nose occasion , night , stiffness chest pain additionally , lost senses taste smell" +5894,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I constantly feel worn out.","get breathing issues wheezing , asthma symptoms regularly fevers headaches constantly feel worn" +5895,allergy,"I always feel worn out, have unpleasant taste in my mouth, and have a really itchy throat. My muscles are also hot and hurting. Sometimes my whole body just cramps up.","always feel worn , unpleasant taste mouth , really itchy throat muscles also hot hurting sometimes whole body cramps" +5896,allergy,"Along with losing my appetite, I've been having swallowing issues. I have a sore throat, and my nose has been running.","along losing appetite , swallowing issues sore throat , nose running" +5897,allergy,I always feel exhausted and have a tickle in my throat. My skin has also started to feel dry. I occasionally get ocular swelling.,always feel exhausted tickle throat skin also started feel dry occasionally get ocular swelling +5898,allergy,"I'm dizzy, nauseated, and shaky. I'm having trouble breathing since my throat is swollen. On occasion, throughout the night, my chest hurts and I feel sick.","dizzy , nauseated , shaky trouble breathing since throat swollen occasion , throughout night , chest hurts feel sick" +5899,allergy,"My skin is irritated and inflamed. Sometimes, they can flake. My lips and cheeks expand, and it is really unpleasant. Because of the puffing, I occasionally have headaches and wet eyes.","skin irritated inflamed sometimes , flake lips cheeks expand , really unpleasant puffing , occasionally headaches wet eyes" +5900,allergy,"My nose runs and I sneeze a lot. My eyes are wet and hurt, and I cough all the time. My head aches constantly.","nose runs sneeze lot eyes wet hurt , cough time head aches constantly" +5901,allergy,"I sneeze a lot and have a sore throat. My lips and the skin surrounding my eyes will occasionally swell. Once I start, I just can't stop sneezing.","sneeze lot sore throat lips skin surrounding eyes occasionally swell start , stop sneezing" +5902,allergy,"I have breathing problems and become out of breath easily. My eyes ache, I have a dry, hacking cough, and my face and body are bloated.","breathing problems become breath easily eyes ache , dry , hacking cough , face body bloated" +5903,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort during the night. I've also lost my ability to smell and taste.,plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability smell taste +5904,allergy,"I get wheezing and breathing difficulties, which are asthma symptoms. I frequently have headaches and fever. I'm continuously exhausted.","get wheezing breathing difficulties , asthma symptoms frequently headaches fever continuously exhausted" +5905,allergy,"I always feel exhausted, have a bad taste in my mouth, and my throat itches a lot. Also heated and painful are my muscles. My entire body can cramp up at times.","always feel exhausted , bad taste mouth , throat itches lot also heated painful muscles entire body cramp times" +5906,allergy,"I've been losing my appetite and having trouble swallowing. My nose has been running, and I have a sore throat.","losing appetite trouble swallowing nose running , sore throat" +5907,allergy,I always get a tickle in my throat and feel fatigued. My skin has begun to feel dry as well. I have ocular edema on occasion.,always get tickle throat feel fatigued skin begun feel dry well ocular edema occasion +5908,allergy,"I feel queasy, sick, and wobbly. My throat is enlarged and making it difficult for me to breathe. My chest occasionally pains all through the night, and I occasionally feel ill.","feel queasy , sick , wobbly throat enlarged making difficult breathe chest occasionally pains night , occasionally feel ill" +5909,allergy,My skin is swollen and itchy. They may occasionally flake. It hurts a lot when my cheeks and lips swell. I occasionally get headaches and watery eyes from the puffing.,skin swollen itchy may occasionally flake hurts lot cheeks lips swell occasionally get headaches watery eyes puffing +5910,allergy,"I sneeze a lot and my nose is running. My eyes ache and are damp, and I frequently croak. My head hurts all the time.","sneeze lot nose running eyes ache damp , frequently croak head hurts time" +5911,allergy,"I have a sore throat and a lot of sneezing. There are times when the skin around my eyes and my lips swell. I find that once I start, I just cannot stop.","sore throat lot sneezing times skin around eyes lips swell find start , stop" +5912,allergy,"I have trouble breathing and easily get out of breath. My face and torso are swollen, my eyes hurt, and I have a dry, hacking cough.","trouble breathing easily get breath face torso swollen , eyes hurt , dry , hacking cough" +5913,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. I've also lost my senses of taste and smell.","nasal congestion blocked nose occasion , night , stiffness chest pain also lost senses taste smell" +5914,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I'm always worn out.","get breathing issues wheezing , asthma symptoms regularly fevers headaches always worn" +5915,allergy,"I frequently have exhaustion, a terrible taste in my mouth, and throat itchiness. My muscles are also burning and uncomfortable. Sometimes I have cramps all throughout my body.","frequently exhaustion , terrible taste mouth , throat itchiness muscles also burning uncomfortable sometimes cramps throughout body" +5916,allergy,"My appetite has decreased, and I've been having swallowing issues. I have a sore throat, and my nose has been running.","appetite decreased , swallowing issues sore throat , nose running" +5917,allergy,"My throat always tickles, and I'm worn out. Additionally, my skin has started to feel dry. Ocular inflammation occasionally affects me.","throat always tickles , worn additionally , skin started feel dry ocular inflammation occasionally affects" +5918,allergy,"I'm nauseous, ill, and shaky. I have a huge throat, which makes it tough for me to breathe. I occasionally have nighttime chest aches and occasional sickness.","nauseous , ill , shaky huge throat , makes tough breathe occasionally nighttime chest aches occasional sickness" +5919,allergy,"My skin is itching and swollen. Sometimes, they could flake. My lips and cheeks swelling aches a lot. The puffing occasionally gives me headaches and runny eyes.","skin itching swollen sometimes , could flake lips cheeks swelling aches lot puffing occasionally gives headaches runny eyes" +5920,gastroesophageal reflux disease,I often get aburning sensation in my throat while and especially after eating. Sometimes this also leaves a sour or bitter taste in my mouth and I get nauseos beacuse of this,often get aburning sensation throat especially eating sometimes also leaves sour bitter taste mouth get nauseos beacuse +5921,gastroesophageal reflux disease,"I have heartburn and indigestion. I often vomit whatever I eat and have difficultly swallowing food, beacuse the food gets stuck in my throat. I have a nagging pain in my upper abdomen","heartburn indigestion often vomit whatever eat difficultly swallowing food , beacuse food gets stuck throat nagging pain upper abdomen" +5922,gastroesophageal reflux disease,"I have frequent belching and burping. I have chest pain that often radiates to the back of my neck, jaw and arm. I get a feeling of tightness and pressure on my chest","frequent belching burping chest pain often radiates back neck , jaw arm get feeling tightness pressure chest" +5923,gastroesophageal reflux disease,"I have a persistent sour taste in my mouth, even when I haven't eaten anything acidic. I get frequent hiccups and a feeling of lump in my throat.","persistent sour taste mouth , even eaten anything acidic get frequent hiccups feeling lump throat" +5924,gastroesophageal reflux disease,"I have a chronic bad breath and a sour taste in my mouth, It sometimes gets difficult to swallow food because of this tingling sensation in my throat","chronic bad breath sour taste mouth , sometimes gets difficult swallow food tingling sensation throat" +5925,gastroesophageal reflux disease,"I get frequent heartburn and indigestion, especially eating spicy foods or fatty foods. I get chest pain that gets worse when I lie down or bend over. I also often have chest pain","get frequent heartburn indigestion , especially eating spicy foods fatty foods get chest pain gets worse lie bend also often chest pain" +5926,gastroesophageal reflux disease,"I have a loss of appetite and difficulty swallowing. I often have this persistent feeling of fullness, even after eating small meals. I usually throw up and get heartburn and a tingling sensation in my throat","loss appetite difficulty swallowing often persistent feeling fullness , even eating small meals usually throw get heartburn tingling sensation throat" +5927,gastroesophageal reflux disease,"I have a sore throat or hoarseness, especially in the morning. I have a chronic nagging pain in my throat and bad breath. I also have frequent belching","sore throat hoarseness , especially morning chronic nagging pain throat bad breath also frequent belching" +5928,gastroesophageal reflux disease,"I have a feeling of food or acid backing up into my throat. I chest pain which gets worse if I lie down. I get frequent heartburn or indigestion, after eating food and vomit it out","feeling food acid backing throat chest pain gets worse lie get frequent heartburn indigestion , eating food vomit" +5929,gastroesophageal reflux disease,I feel uneasiness after eating and usually vomit whatever I've eaten. I always have this pain in my abdomen and have really bad acid reflux,feel uneasiness eating usually vomit whatever eaten always pain abdomen really bad acid reflux +5930,gastroesophageal reflux disease,"My throat frequently feels like it is burning, especially after eating. Additionally, I occasionally get a sour or bitter aftertaste, which causes me to feel queasy.","throat frequently feels like burning , especially eating additionally , occasionally get sour bitter aftertaste , causes feel queasy" +5931,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and I have trouble swallowing food because it gets caught in my throat. My upper abdomen is bothering me.","indigestion heartburn frequently vomit everything eat , trouble swallowing food gets caught throat upper abdomen bothering" +5932,gastroesophageal reflux disease,"My burping and belching are frequent. I frequently get chest discomfort that spreads to the back of my neck, jaw, and arm. I have pressure and tension in my chest.","burping belching frequent frequently get chest discomfort spreads back neck , jaw , arm pressure tension chest" +5933,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have hiccups and a lump in my throat.","even anything acidic stomach , constantly sour taste mouth frequently hiccups lump throat" +5934,gastroesophageal reflux disease,"I always have foul breath and a sour taste in my mouth, and occasionally, the tingling in my throat makes it difficult to swallow meals.","always foul breath sour taste mouth , occasionally , tingling throat makes difficult swallow meals" +5935,gastroesophageal reflux disease,"I frequently have heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lie down or stoop over, my chest discomfort worsens. My chest hurts quite a bit too.","frequently heartburn indigestion , particularly consuming spicy fatty foods lie stoop , chest discomfort worsens chest hurts quite bit" +5936,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after eating little meals, I frequently get this lingering sense of fullness. Typically, I have heartburn, nausea, and tingling in my throat.","feel like eating , swallowing challenging even eating little meals , frequently get lingering sense fullness typically , heartburn , nausea , tingling throat" +5937,gastroesophageal reflux disease,"I often wake up with a sore throat or a scratchy voice. My throat hurts constantly, and I also have poor breath. I also frequently burp.","often wake sore throat scratchy voice throat hurts constantly , also poor breath also frequently burp" +5938,gastroesophageal reflux disease,"I feel as though acid or food is backing up into my throat. My chest hurts, and lying down makes it worse. After eating, I frequently have heartburn or indigestion and throw up.","feel though acid food backing throat chest hurts , lying makes worse eating , frequently heartburn indigestion throw" +5939,gastroesophageal reflux disease,"After eating, I get queasy and frequently throw up everything I've eaten. I always get severe abdominal ache and have terrible acid reflux.","eating , get queasy frequently throw everything eaten always get severe abdominal ache terrible acid reflux" +5940,gastroesophageal reflux disease,"Especially after eating, my throat regularly feels like it is burning. I also occasionally get a bitter or sour aftertaste, which makes me feel sick.","especially eating , throat regularly feels like burning also occasionally get bitter sour aftertaste , makes feel sick" +5941,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly vomit everything I eat, and food gets stuck in my throat, making it difficult for me to swallow. I have a pain in my upper abdomen.","heartburn indigestion regularly vomit everything eat , food gets stuck throat , making difficult swallow pain upper abdomen" +5942,gastroesophageal reflux disease,"Belching and burping are common in me. I often get chest pain that radiates to the back of my neck, my jaw, and my arm. In my chest, there is pressure and stress.","belching burping common often get chest pain radiates back neck , jaw , arm chest , pressure stress" +5943,gastroesophageal reflux disease,"I get a sour taste in my mouth all the time, even when there is nothing acidic in my stomach. I often get the hiccups and have a lump in my throat.","get sour taste mouth time , even nothing acidic stomach often get hiccups lump throat" +5944,gastroesophageal reflux disease,"I periodically find it challenging to swallow food due to the tingling in my throat, bad breath, and bad taste in my mouth.","periodically find challenging swallow food due tingling throat , bad breath , bad taste mouth" +5945,gastroesophageal reflux disease," regularly have indigestion and heartburn, especially after eating spicy or fatty foods. My chest pain is worse when I hunch over or lie down. Additionally, my chest hurts a lot.","regularly indigestion heartburn , especially eating spicy fatty foods chest pain worse hunch lie additionally , chest hurts lot" +5946,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling.","mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling" +5947,gastroesophageal reflux disease,I frequently get a scratchy voice or a painful throat when I wake up. I have bad breath and a continual sore throat. I also vomit a lot.,frequently get scratchy voice painful throat wake bad breath continual sore throat also vomit lot +5948,gastroesophageal reflux disease,My throat feels as though food or acid is backing up. Lying down only makes my chest pain more. I regularly have heartburn or indigestion after eating and puke up.,throat feels though food acid backing lying makes chest pain regularly heartburn indigestion eating puke +5949,gastroesophageal reflux disease,I often feel sick after eating and puke up the entire meal. I constantly get excruciating acid reflux and severe stomach pain.,often feel sick eating puke entire meal constantly get excruciating acid reflux severe stomach pain +5950,gastroesophageal reflux disease,"My throat often feels like it is burning, especially after eating. A bitter or sour aftertaste that I occasionally experience also makes me feel unwell.","throat often feels like burning , especially eating bitter sour aftertaste occasionally experience also makes feel unwell" +5951,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and it is hard for me to swallow since food gets caught in my throat. My upper abdomen is in discomfort.","indigestion heartburn frequently vomit everything eat , hard swallow since food gets caught throat upper abdomen discomfort" +5952,gastroesophageal reflux disease,"My tendency is to belch and burp frequently. I frequently get chest pain that spreads to my arm, jaw, and the back of my neck. There is pressure and stress in my chest.","tendency belch burp frequently frequently get chest pain spreads arm , jaw , back neck pressure stress chest" +5953,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups.","even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups" +5954,gastroesophageal reflux disease,"Periodically, the tingling in my throat, poor breath, and bad taste in my mouth make it difficult for me to swallow meals.","periodically , tingling throat , poor breath , bad taste mouth make difficult swallow meals" +5955,gastroesophageal reflux disease,"I routinely experience heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lean forward or lie down, my chest discomfort becomes worse. My chest hurts a lot as well.","routinely experience heartburn indigestion , particularly consuming spicy fatty foods lean forward lie , chest discomfort becomes worse chest hurts lot well" +5956,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after little meals, I frequently get this lingering sensation of fullness. My normal symptoms include nausea, heartburn, and tingling in my throat.","feel like eating , swallowing challenging even little meals , frequently get lingering sensation fullness normal symptoms include nausea , heartburn , tingling throat" +5957,gastroesophageal reflux disease,"I regularly wake up with a scratchy voice or a sore throat. My throat is constantly irritated, and I have horrible breath. I frequently throw up.","regularly wake scratchy voice sore throat throat constantly irritated , horrible breath frequently throw" +5958,gastroesophageal reflux disease,"It feels like food or acid is backing up in my throat. My chest discomfort only becomes worse while I'm lying down. After eating, I frequently have heartburn or indigestion and throw up.","feels like food acid backing throat chest discomfort becomes worse lying eating , frequently heartburn indigestion throw" +5959,gastroesophageal reflux disease,"After eating, I frequently feel unwell and throw up the entire meal. I suffer from painful acid reflux and excruciating stomach discomfort all the time.","eating , frequently feel unwell throw entire meal suffer painful acid reflux excruciating stomach discomfort time" +5960,gastroesophageal reflux disease,"Especially after eating, my throat frequently feels scorching. I occasionally get a bitter or sour aftertaste that makes me feel sick.","especially eating , throat frequently feels scorching occasionally get bitter sour aftertaste makes feel sick" +5961,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly throw up everything I eat, and swallowing is difficult for me since food gets stuck in my throat. I'm experiencing pain in my upper abdomen.","heartburn indigestion regularly throw everything eat , swallowing difficult since food gets stuck throat experiencing pain upper abdomen" +5962,gastroesophageal reflux disease,"I have a tendency to burp and belch regularly. I often get chest discomfort that radiates to my arm, jaw, and neck. My chest feels tight and stressed.","tendency burp belch regularly often get chest discomfort radiates arm , jaw , neck chest feels tight stressed" +5963,gastroesophageal reflux disease,"I always get a sour taste in my mouth, even when I don't have anything acidic in my stomach. I regularly have the hiccups and a knot in my throat.","always get sour taste mouth , even anything acidic stomach regularly hiccups knot throat" +5964,gastroesophageal reflux disease,"I occasionally have trouble swallowing food because of the tingling in my throat, terrible breath, and bad taste in my mouth.","occasionally trouble swallowing food tingling throat , terrible breath , bad taste mouth" +5965,gastroesophageal reflux disease,"I frequently have indigestion and heartburn, especially after eating spicy or fatty foods. My chest hurts when I lean forward or while I'm lying down. Additionally, my chest hurts a lot.","frequently indigestion heartburn , especially eating spicy fatty foods chest hurts lean forward lying additionally , chest hurts lot" +5966,gastroesophageal reflux disease,I regularly feel sick after eating and puke up the entire meal. I constantly get horrible acid reflux agony and stomach discomfort.,regularly feel sick eating puke entire meal constantly get horrible acid reflux agony stomach discomfort +5967,gastroesophageal reflux disease,"My throat often feels like it's on fire, especially after eating. I occasionally get an aftertaste that is sour or bitter and makes me feel nauseous.","throat often feels like fire , especially eating occasionally get aftertaste sour bitter makes feel nauseous" +5968,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups.","even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups" +5969,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling.","mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling" +5970,drug reaction,"I have a metallic taste in my mouth, and also have a sense of change of taste and smell. Sometimes get very unbearable joint pain and muscle pain","metallic taste mouth , also sense change taste smell sometimes get unbearable joint pain muscle pain" +5971,drug reaction,"I have headaches and migraines, have been having difficulty sleeping. I have been having muscle twitching and tremors. Sometimes I get lightheaded","headaches migraines , difficulty sleeping muscle twitching tremors sometimes get lightheaded" +5972,drug reaction,I have fever and feel very dizzy and lightheaded. My heart is beating very fast and I feel very confused. I am not able to think very clearing and everything feels very foggy,fever feel dizzy lightheaded heart beating fast feel confused able think clearing everything feels foggy +5973,drug reaction,I have rashes on my skin and these flake off from time to time. This leaves me prone to infection. My fingers start twitching and sometimes I experience tremors.,rashes skin flake time time leaves prone infection fingers start twitching sometimes experience tremors +5974,drug reaction,I feel very nauseous and have chest pain. Recently I have been experiencing chest pain. I feel very uneasy and often sweat profusely,feel nauseous chest pain recently experiencing chest pain feel uneasy often sweat profusely +5975,drug reaction,"I have itching all over my body, and rashes in my chest and back. I get flaky skin from time to time and often this leaves marks on my body.","itching body , rashes chest back get flaky skin time time often leaves marks body" +5976,drug reaction,I have hair loss and there is a significant change in the texture of my hair. I have dry and itchy sclap and increased dandruff. My skin is also getting very dry,hair loss significant change texture hair dry itchy sclap increased dandruff skin also getting dry +5977,drug reaction,I am experiencing a decrease in my sex drive and difficulty to fucntion sexually. I feel very light headed and confused and often experince brain fog,experiencing decrease sex drive difficulty fucntion sexually feel light headed confused often experince brain fog +5978,drug reaction,I am experiencing changes in my menstrual cycle and unexpected vaginal discharge. I often get mood swings and feel agitated from time to time,experiencing changes menstrual cycle unexpected vaginal discharge often get mood swings feel agitated time time +5979,drug reaction,I have experinenced significant weight gain and become very obese. I have changes in my appetite and cravings for different foods,experinenced significant weight gain become obese changes appetite cravings different foods +5980,drug reaction,I have difficulty in maintianing concentration and very low mental clarity. I often forget things and in general have difficulty remembering things,difficulty maintianing concentration low mental clarity often forget things general difficulty remembering things +5981,drug reaction,"In addition to experiencing a change in taste and fragrance, I also have a metallic aftertaste in my tongue. occasionally get excruciating joint and muscular pain","addition experiencing change taste fragrance , also metallic aftertaste tongue occasionally get excruciating joint muscular pain" +5982,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My muscles have been trembling and twitching. I sometimes feel dizzy.","suffer migraines headaches , trouble falling asleep muscles trembling twitching sometimes feel dizzy" +5983,drug reaction,"I'm feeling really lightheaded and dizzy when I have a temperature. My mind is completely muddled, and my heart is racing. I find it difficult to think clearly, and everything seems quite hazy.","feeling really lightheaded dizzy temperature mind completely muddled , heart racing find difficult think clearly , everything seems quite hazy" +5984,drug reaction,"My skin occasionally peels off the rashes that I have. This makes me more vulnerable to infections. My hands begin to shake, and occasionally I have tremors.","skin occasionally peels rashes makes vulnerable infections hands begin shake , occasionally tremors" +5985,drug reaction,I have severe nausea and chest discomfort. I have been having chest discomfort lately. I often shiver a lot and feel really nervous.,severe nausea chest discomfort chest discomfort lately often shiver lot feel really nervous +5986,drug reaction,"I have rashes in my chest and back and itch all over my body. I occasionally have flaky skin, which frequently creates markings on my body.","rashes chest back itch body occasionally flaky skin , frequently creates markings body" +5987,drug reaction,"My hair's texture has significantly changed, and I'm experiencing hair loss. My scalp is dry and itching, and my dandruff is becoming worse. My skin is also becoming really dry.","hair texture significantly changed , experiencing hair loss scalp dry itching , dandruff becoming worse skin also becoming really dry" +5988,drug reaction,"My sex desire has decreased, and I'm finding it harder to function sexually. I regularly have brain fog and feel quite dizzy and disoriented.","sex desire decreased , finding harder function sexually regularly brain fog feel quite dizzy disoriented" +5989,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I frequently experience mood swings and experience occasional agitation.","monthly cycle changed , unexpected vaginal discharge frequently experience mood swings experience occasional agitation" +5990,drug reaction,"I've gained a lot of weight and am now quite fat. My appetite varies, and I have desires for various things.","gained lot weight quite fat appetite varies , desires various things" +5991,drug reaction,"I struggle to maintain focus, and my mental clarity is really poor. I have trouble remembering things and frequently forget stuff.","struggle maintain focus , mental clarity really poor trouble remembering things frequently forget stuff" +5992,drug reaction,My tongue also has a metallic aftertaste in addition to a change in taste and scent. occasionally get acute muscle and joint ache,tongue also metallic aftertaste addition change taste scent occasionally get acute muscle joint ache +5993,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. My entire body has been shaking and twitching. Sometimes I become lightheaded.","headaches migraines , difficulties sleeping entire body shaking twitching sometimes become lightheaded" +5994,drug reaction,"When I have a fever, I feel quite woozy and lightheaded. My heart is pounding, and my head is absolutely foggy. My ability to think properly is impaired, and everything appears to be somewhat blurry.","fever , feel quite woozy lightheaded heart pounding , head absolutely foggy ability think properly impaired , everything appears somewhat blurry" +5995,drug reaction,"My rashes occasionally cause my skin to peel off. I'm more susceptible to illnesses as a result. I start to tremble sometimes, and my hands start to shake.","rashes occasionally cause skin peel susceptible illnesses result start tremble sometimes , hands start shake" +5996,drug reaction,"Both chest pain and extreme nausea are present. Recently, my chest has been hurting. I frequently shiver a lot and am really anxious.","chest pain extreme nausea present recently , chest hurting frequently shiver lot really anxious" +5997,drug reaction,"My body itches all over, and I have rashes on my back and chest. My skin can be flaky on sometimes, which commonly results in body marks.","body itches , rashes back chest skin flaky sometimes , commonly results body marks" +5998,drug reaction,"I'm losing hair, and my hair's texture has considerably altered. My dandruff is becoming worse, and my dry, itchy scalp. My skin is getting quite dry as well.","losing hair , hair texture considerably altered dandruff becoming worse , dry , itchy scalp skin getting quite dry well" +5999,drug reaction,"My desire for sex has dropped, and I'm having trouble having sex. I frequently get brain fog, as well as feeling somewhat bewildered.","desire sex dropped , trouble sex frequently get brain fog , well feeling somewhat bewildered" +6000,drug reaction,"I've noticed a difference in my monthly cycle and an unexpected vaginal discharge. I become irritable every now and again, and my moods swing a lot.","noticed difference monthly cycle unexpected vaginal discharge become irritable every , moods swing lot" +6001,drug reaction,I have put on a lot of weight and am now very obese. I have different urges and different appetites.,put lot weight obese different urges different appetites +6002,drug reaction,I have terrible mental clarity and find it difficult to stay focused. I regularly forget things and have problems remembering things.,terrible mental clarity find difficult stay focused regularly forget things problems remembering things +6003,drug reaction,"Along with a change in taste and smell, my tongue also has a metallic aftertaste. occasionally get severe joint and muscular pain","along change taste smell , tongue also metallic aftertaste occasionally get severe joint muscular pain" +6004,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My whole body has been trembling and shivering. At times, I have dizziness.","suffer migraines headaches , trouble falling asleep whole body trembling shivering times , dizziness" +6005,drug reaction,"I am quite queasy and dizzy when I have a temperature. My brain is completely cloudy, and my heart is racing. I'm having trouble thinking straight, and everything seems a little fuzzy.","quite queasy dizzy temperature brain completely cloudy , heart racing trouble thinking straight , everything seems little fuzzy" +6006,drug reaction,"Sometimes my skin starts to flake off from my rashes. I'm more prone to becoming sick as a result. On occasion, my hands begin to quiver and I begin to tremble.","sometimes skin starts flake rashes prone becoming sick result occasion , hands begin quiver begin tremble" +6007,drug reaction,There is severe nausea and chest discomfort. My chest has been aching lately. I'm really nervous and shiver a lot of the time.,severe nausea chest discomfort chest aching lately really nervous shiver lot time +6008,drug reaction,"I have rashes on my back and chest, and my entire body itches. My skin may be dry and flaky at times, which frequently leaves body marks.","rashes back chest , entire body itches skin may dry flaky times , frequently leaves body marks" +6009,drug reaction,"I'm shedding hair, and the texture of my hair has changed significantly. My dry, itchy scalp and dandruff are becoming worse. My skin is also becoming pretty dry.","shedding hair , texture hair changed significantly dry , itchy scalp dandruff becoming worse skin also becoming pretty dry" +6010,drug reaction,"I no longer want to have sex, and it's difficult for me to do so. I regularly have brain fog and a sense of confusion.","longer want sex , difficult regularly brain fog sense confusion" +6011,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I occasionally lose my temper, and my moods change a lot.","monthly cycle changed , unexpected vaginal discharge occasionally lose temper , moods change lot" +6012,drug reaction,I've gained a lot of weight and am currently quite fat. I have many inclinations and cravings.,gained lot weight currently quite fat many inclinations cravings +6013,drug reaction,I have awful mental clarity and have trouble focusing. I frequently forget things and struggle with memory.,awful mental clarity trouble focusing frequently forget things struggle memory +6014,drug reaction,"My tongue also changes in taste and scent, leaving a metallic aftertaste. can have excruciating joint and muscle pain","tongue also changes taste scent , leaving metallic aftertaste excruciating joint muscle pain" +6015,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. I've been shaking and shivering all over. Sometimes I become lightheaded.","headaches migraines , difficulties sleeping shaking shivering sometimes become lightheaded" +6016,drug reaction,"When I have a temperature, I feel pretty nauseous and lightheaded. My heart is pounding, and my mind is absolutely foggy. Everything feels a little hazy to me, and I'm having difficulties thinking clearly.","temperature , feel pretty nauseous lightheaded heart pounding , mind absolutely foggy everything feels little hazy , difficulties thinking clearly" +6017,drug reaction,"My rashes occasionally cause my skin to start to fall off. I'm more likely to get ill as a result. My hands occasionally start to tremble, and I start to shake.","rashes occasionally cause skin start fall likely get ill result hands occasionally start tremble , start shake" +6018,drug reaction,"Chest pain and severe nausea are present. Recently, my chest has been hurting. I tremble a lot and am quite anxious.","chest pain severe nausea present recently , chest hurting tremble lot quite anxious" +6019,drug reaction,"My entire body itches, and I have rashes on my back and chest. Sometimes my skin might be dry and flaky, which often results in body stains.","entire body itches , rashes back chest sometimes skin might dry flaky , often results body stains" +6020,peptic ulcer disease,"I have a burning sensation in my upper abdomen, ofetn between or at night. I have heartburn and indigestion and often feel very nauseous","burning sensation upper abdomen , ofetn night heartburn indigestion often feel nauseous" +6021,peptic ulcer disease,I have bloating and a feeling of uneasiness. I have been experiencing weight loss and a loss of appetite. Sometimes I have dark and tarry stools and blood in my vomit,bloating feeling uneasiness experiencing weight loss loss appetite sometimes dark tarry stools blood vomit +6022,peptic ulcer disease,I have difficulty swallowing food and often get a sensation of the food getting stuck in my throat. I have constant belching and bloating. There is a persitent sour taste in my mouth,difficulty swallowing food often get sensation food getting stuck throat constant belching bloating persitent sour taste mouth +6023,peptic ulcer disease,I have been having bloody stools which has resulted in bloos loss and loss of iron. Thiis has caused me anemia and I feel very weak in general,bloody stools resulted bloos loss loss iron thiis caused anemia feel weak general +6024,peptic ulcer disease,"I have persistant, gnawing hunger and apetite. Sometimes I get abdominal cramps and spasms. There is bloating and gas after eating which causes me a great deal of uneasiness","persistant , gnawing hunger apetite sometimes get abdominal cramps spasms bloating gas eating causes great deal uneasiness" +6025,peptic ulcer disease,"I have changes in my bowel movements, such as constipation and diarrhea. I have a loss of appetite and energy and often feel very fatigued","changes bowel movements , constipation diarrhea loss appetite energy often feel fatigued" +6026,peptic ulcer disease,I have abdominal pain and it gets only worse if I bend over or lie down. I feel discomfort when I eat certain foods such as spicy or acidic food. Sometimes I get loose stools because of this,abdominal pain gets worse bend lie feel discomfort eat certain foods spicy acidic food sometimes get loose stools +6027,peptic ulcer disease,I have difficulty sleeping due to abdominal pain or discomfort. I have a loss of appetite and feel fatigued after going to the bathroom. I feel very tited all the time,difficulty sleeping due abdominal pain discomfort loss appetite feel fatigued going bathroom feel tited time +6028,peptic ulcer disease,I have a sour acidic taste in my mouth. I have frequent belching and burping. I have a feeling of pressure or fullness in my upper abdomen that last for a few hours,sour acidic taste mouth frequent belching burping feeling pressure fullness upper abdomen last hours +6029,peptic ulcer disease,I have unintended weight loss and difficulty gaining weight. I have pain and discomfort that is relieved by taking antacids. My mouth tastes very bad,unintended weight loss difficulty gaining weight pain discomfort relieved taking antacids mouth tastes bad +6030,peptic ulcer disease,"Occasionally throughout the day or at night, I have burning in my upper abdomen. I get indigestion, heartburn, and frequent bouts of extreme nausea.","occasionally throughout day night , burning upper abdomen get indigestion , heartburn , frequent bouts extreme nausea" +6031,peptic ulcer disease,"Bloating and unease are both present in me. I've been losing weight and losing interest in food. I occasionally get tarry, black stools and vomit that contains blood.","bloating unease present losing weight losing interest food occasionally get tarry , black stools vomit contains blood" +6032,peptic ulcer disease,"I have trouble swallowing, and I frequently feel like food is getting stuck in my throat. I feel bloated and belch constantly. I always get a sour taste in my mouth.","trouble swallowing , frequently feel like food getting stuck throat feel bloated belch constantly always get sour taste mouth" +6033,peptic ulcer disease,"My bloody stools have caused me to lose iron and bloos, among other things. I now have anaemia from this, and I generally feel quite weak.","bloody stools caused lose iron bloos , among things anaemia , generally feel quite weak" +6034,peptic ulcer disease,"My hunger and appetite are persistent and ravenous. Periodically, my stomach may cramp and spasm. After eating, I have bloating and gas, which makes me quite uncomfortable.","hunger appetite persistent ravenous periodically , stomach may cramp spasm eating , bloating gas , makes quite uncomfortable" +6035,peptic ulcer disease,"My bowel motions have changed; they've been constipated and diarrhoeal. I lack energy, appetite, and frequently feel really exhausted.","bowel motions changed constipated diarrhoeal lack energy , appetite , frequently feel really exhausted" +6036,peptic ulcer disease,"I have stomach ache, and bending over or lying down just makes it worse. When I consume certain meals, such as spicy or acidic cuisine, I have discomfort. This sometimes causes me to have loose stools.","stomach ache , bending lying makes worse consume certain meals , spicy acidic cuisine , discomfort sometimes causes loose stools" +6037,peptic ulcer disease,"I have trouble falling or staying asleep because of stomach ache. After using the restroom, I feel drained and lose my appetite. I constantly feel really anxious.","trouble falling staying asleep stomach ache using restroom , feel drained lose appetite constantly feel really anxious" +6038,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. My burping and belching are frequent. For a few hours, I get pressure or fullness in my upper belly.","mouth filled sour , acidic flavour burping belching frequent hours , get pressure fullness upper belly" +6039,peptic ulcer disease,I lose weight unintentionally and find it challenging to acquire weight. I use antacids to ease the pain and discomfort I experience. My mouth feels horrible.,lose weight unintentionally find challenging acquire weight use antacids ease pain discomfort experience mouth feels horrible +6040,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I get heartburn, indigestion, and regular episodes of severe nausea.","occasionally burning upper abdomen throughout day night get heartburn , indigestion , regular episodes severe nausea" +6041,peptic ulcer disease,"I feel bloated and uneasy at the same time. I've been losing weight, and I no longer like eating. I occasionally get bloody vomit and dark, tarry stools.","feel bloated uneasy time losing weight , longer like eating occasionally get bloody vomit dark , tarry stools" +6042,peptic ulcer disease,I often feel like food is getting caught in my throat and have problems swallowing. I feel bloated and frequently belch. I constantly have a bitter aftertaste.,often feel like food getting caught throat problems swallowing feel bloated frequently belch constantly bitter aftertaste +6043,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. Because of this, I now have anaemia and usually feel fairly weak.","lost lot stuff bloody stools , including iron bloos , anaemia usually feel fairly weak" +6044,peptic ulcer disease,"My appetite and chronic hunger are both ferocious. My stomach may occasionally ache and spasm. I have gas and bloating after eating, which is really painful.","appetite chronic hunger ferocious stomach may occasionally ache spasm gas bloating eating , really painful" +6045,peptic ulcer disease,My bowel movements have become constipated and diarrheal. I often feel quite tired and lack both energy and appetite.,bowel movements become constipated diarrheal often feel quite tired lack energy appetite +6046,peptic ulcer disease,"Bending down or reclining down only makes my stomach feel more. I have pain after eating some foods, such as hot or acidic food. I occasionally get loose stools as a result of this.","bending reclining makes stomach feel pain eating foods , hot acidic food occasionally get loose stools result" +6047,peptic ulcer disease,"Due to a stomach discomfort, I have problems sleeping or staying asleep. I am exhausted after using the bathroom and lose my appetite. I'm quite nervous all the time.","due stomach discomfort , problems sleeping staying asleep exhausted using bathroom lose appetite quite nervous time" +6048,peptic ulcer disease,"A sour, acidic taste is all over my mouth. Belching and burping are common in me. I have pressure or fullness in my upper abdomen for a few hours.","sour , acidic taste mouth belching burping common pressure fullness upper abdomen hours" +6049,peptic ulcer disease,"I unknowingly lose weight and find it difficult to gain weight. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so much.","unknowingly lose weight find difficult gain weight relieve pain discomfort feel , take antacids mouth hurts much" +6050,peptic ulcer disease,"On occasion, throughout the day or at night, I have burning in my upper abdomen. I frequently get extreme nauseous episodes, heartburn, and indigestion.","occasion , throughout day night , burning upper abdomen frequently get extreme nauseous episodes , heartburn , indigestion" +6051,peptic ulcer disease,"I have both bloating and unease. I no longer like eating because I've been losing weight. I sometimes vomit blood and have tarry, black stools.","bloating unease longer like eating losing weight sometimes vomit blood tarry , black stools" +6052,peptic ulcer disease,I frequently get swallowing issues and the sensation that food is getting stuck in my throat. I regularly belch and feel bloated. My aftertaste is unpleasant all the time.,frequently get swallowing issues sensation food getting stuck throat regularly belch feel bloated aftertaste unpleasant time +6053,peptic ulcer disease,"My bloody stools have caused me to lose a lot of things, including iron and bloos. I now have anaemia as a result, and I typically feel rather weak.","bloody stools caused lose lot things , including iron bloos anaemia result , typically feel rather weak" +6054,peptic ulcer disease,"Both my appetite and ongoing hunger are fierce. There are times when my stomach hurts and cramps. Following a meal, I have very painful gas and bloating.","appetite ongoing hunger fierce times stomach hurts cramps following meal , painful gas bloating" +6055,peptic ulcer disease,Constipated and diarrheal bowel motions have been happening to me. I frequently have a lack of energy and appetite.,constipated diarrheal bowel motions happening frequently lack energy appetite +6056,peptic ulcer disease,"My stomach only feels worse when I stoop or recline. After eating particular meals, such as spicy or acidic cuisine, I have discomfort. This occasionally causes me to have loose stools.","stomach feels worse stoop recline eating particular meals , spicy acidic cuisine , discomfort occasionally causes loose stools" +6057,peptic ulcer disease,"I have a stomach ache that keeps me from falling or staying asleep. After using the restroom, I feel worn out and lose interest in food. I'm constantly pretty anxious.","stomach ache keeps falling staying asleep using restroom , feel worn lose interest food constantly pretty anxious" +6058,peptic ulcer disease,"My mouth is filled with an acidic, sour flavour. Burping and belching are frequent in me. For a few hours, my upper abdomen has felt pressured or full.","mouth filled acidic , sour flavour burping belching frequent hours , upper abdomen felt pressured full" +6059,peptic ulcer disease,I inadvertently lose weight and have a hard time gaining it back. I use antacids to get rid of the pain and discomfort I experience. It aches so much in my mouth.,inadvertently lose weight hard time gaining back use antacids get rid pain discomfort experience aches much mouth +6060,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I regularly get severe heartburn, indigestion, and nausea.","occasionally burning upper abdomen throughout day night regularly get severe heartburn , indigestion , nausea" +6061,peptic ulcer disease,"I'm feeling both bloated and uneasy. Because I've been losing weight, I no longer like eating. I occasionally get tarry, black stools and blood in my vomit.","feeling bloated uneasy losing weight , longer like eating occasionally get tarry , black stools blood vomit" +6062,peptic ulcer disease,"I regularly have trouble swallowing, and I sometimes feel like food is becoming trapped in my throat. I frequently feel bloated and belch. Every time, I have a bad aftertaste.","regularly trouble swallowing , sometimes feel like food becoming trapped throat frequently feel bloated belch every time , bad aftertaste" +6063,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. As a result, I now have anaemia and generally feel rather weak.","lost lot stuff bloody stools , including iron bloos result , anaemia generally feel rather weak" +6064,peptic ulcer disease,I have a strong appetite and am constantly hungry. My stomach occasionally aches and cramps. I have really painful gas and bloating after eating.,strong appetite constantly hungry stomach occasionally aches cramps really painful gas bloating eating +6065,peptic ulcer disease,I've been experiencing bowel movements that are both constipated and diarrhoeic. I often lack the will to eat and energy.,experiencing bowel movements constipated diarrhoeic often lack eat energy +6066,peptic ulcer disease,"Only when I hunch down or lie down does my stomach hurt more. I have pain after eating certain foods, such as hot or acidic food. I occasionally get loose stools as a result of this.","hunch lie stomach hurt pain eating certain foods , hot acidic food occasionally get loose stools result" +6067,peptic ulcer disease,I can't get to sleep or remain asleep because I have a stomach pain. I get exhausted after using the bathroom and stop being hungry. I worry a lot of the time.,get sleep remain asleep stomach pain get exhausted using bathroom stop hungry worry lot time +6068,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. I have frequent belching and burping. My upper abdomen has felt pressed in or full for the past few hours.","mouth filled sour , acidic flavour frequent belching burping upper abdomen felt pressed full past hours" +6069,peptic ulcer disease,"I unintentionally lose weight and find it challenging to gain it back. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so severely right now.","unintentionally lose weight find challenging gain back relieve pain discomfort feel , take antacids mouth hurts severely right" +6070,diabetes,I have increased thirst and frequent urination. I often have a dry mouth and throat. Recently I have been having increased hunger and appetite,increased thirst frequent urination often dry mouth throat recently increased hunger appetite +6071,diabetes,I have blurred vision and it only seems to be getting worse. I feel fatigued and tired all the time. I also feel very dizzy and light headed at times,blurred vision seems getting worse feel fatigued tired time also feel dizzy light headed times +6072,diabetes,I have a dry mouth and throat. I also have been experiencing an increased appetite and hunger. However I do feel very tired at times,dry mouth throat also experiencing increased appetite hunger however feel tired times +6073,diabetes,I have slow healing of wounds and cuts. I have this tingling sensation in my hand and numbness in both my hands and feet,slow healing wounds cuts tingling sensation hand numbness hands feet +6074,diabetes,I have mood changes and have difficulty concentrating. My mind feels hazy and foggy at times and it gets difficult to do even regular chores,mood changes difficulty concentrating mind feels hazy foggy times gets difficult even regular chores +6075,diabetes,I have a feeling of tremors and muscle twitching. I have decreased sense of smell or taste and I feel fatigued. Sometimes I have a feeling of rapid hearbeat or palipatations,feeling tremors muscle twitching decreased sense smell taste feel fatigued sometimes feeling rapid hearbeat palipatations +6076,diabetes,I have rashes and skin irritations especially in the folds of the skin. There is also very slow healing of any cuts and bruises I have on my skin,rashes skin irritations especially folds skin also slow healing cuts bruises skin +6077,diabetes,I have a frequent need to urinate and often have these uncontrollable urges. I feel dizzy and often confused. I have also been loss of visuals,frequent need urinate often uncontrollable urges feel dizzy often confused also loss visuals +6078,diabetes,I have difficulty breathing especially during physical activity. I have unusual sweating and flushing. I frequently get yeast infections,difficulty breathing especially physical activity unusual sweating flushing frequently get yeast infections +6079,diabetes,I have persistent dry cough. My infections dont seem to be healing and I have palpitations. I also have this problem of sore throat that does seem to go away,persistent dry cough infections dont seem healing palpitations also problem sore throat seem go away +6080,diabetes,"I'm drinking more water and urinating more frequently. My throat and mouth are frequently dry. Recently, my appetite and hunger have both grown.","drinking water urinating frequently throat mouth frequently dry recently , appetite hunger grown" +6081,diabetes,"My vision is foggy, and it seems to be growing worse. I'm constantly feeling worn out and exhausted. Additionally, I occasionally have severe lightheadedness and dizziness.","vision foggy , seems growing worse constantly feeling worn exhausted additionally , occasionally severe lightheadedness dizziness" +6082,diabetes,My throat and mouth are dry. I've also been feeling more hungry and more hungry. But sometimes I do feel quite exhausted.,throat mouth dry also feeling hungry hungry sometimes feel quite exhausted +6083,diabetes,I have a sluggish wound and reduced healing rate. My hands and feet are both numb and have this tingling sensation.,sluggish wound reduced healing rate hands feet numb tingling sensation +6084,diabetes,"I struggle to focus and have emotional swings. At times, my head seems cloudy and foggy, making it challenging for me to do even simple tasks.","struggle focus emotional swings times , head seems cloudy foggy , making challenging even simple tasks" +6085,diabetes,I feel my muscles trembling and shaking. I feel worn out and my senses of taste and smell have diminished. Sometimes I have palpitations or a quick heartbeat.,feel muscles trembling shaking feel worn senses taste smell diminished sometimes palpitations quick heartbeat +6086,diabetes,"I experience skin irritations and rashes, especially in my skin's creases. Any wounds and bruises I have on my skin also heal quite slowly.","experience skin irritations rashes , especially skin creases wounds bruises skin also heal quite slowly" +6087,diabetes,I frequently feel the want to urinate and frequently have these strong cravings. I frequently feel woozy and bewildered. I've also had sight loss.,frequently feel want urinate frequently strong cravings frequently feel woozy bewildered also sight loss +6088,diabetes,"I have trouble breathing, especially when exercising. I'm flushed and sweating in an unexpected way. I have yeast infections a lot.","trouble breathing , especially exercising flushed sweating unexpected way yeast infections lot" +6089,diabetes,"I have a chronic dry cough. I have palpitations and my infections don't appear to be getting better. I also have a painful throat issue, although it does seem to go away.","chronic dry cough palpitations infections appear getting better also painful throat issue , although seem go away" +6090,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat regularly feel dry. My appetite and hunger have both increased recently.,water intake frequency urination increased mouth throat regularly feel dry appetite hunger increased recently +6091,diabetes,"I have blurry vision, and it seems to be getting worse. I'm continuously fatigued and worn out. I also occasionally have acute lightheadedness and vertigo.","blurry vision , seems getting worse continuously fatigued worn also occasionally acute lightheadedness vertigo" +6092,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. But on occasion, I do feel rather worn out.","mouth throat dry additionally , growing increasingly hungry occasion , feel rather worn" +6093,diabetes,My wound is healing slowly and at a slower rate. My hands and feet are numb and tingling at the same time.,wound healing slowly slower rate hands feet numb tingling time +6094,diabetes,"I have trouble focusing, and my emotions fluctuate. My brain might seem murky and foggy at times, making it difficult for me to complete even straightforward chores.","trouble focusing , emotions fluctuate brain might seem murky foggy times , making difficult complete even straightforward chores" +6095,diabetes,"My body is shaking and trembling. My senses of taste and smell have gotten weaker, and I feel exhausted. I occasionally have palpitations or a rapid pulse.","body shaking trembling senses taste smell gotten weaker , feel exhausted occasionally palpitations rapid pulse" +6096,diabetes,"I have rashes and skin irritations, especially in the crevices of my skin. My skin bruises and cuts also take a long time to heal.","rashes skin irritations , especially crevices skin skin bruises cuts also take long time heal" +6097,diabetes,I often feel the want to urinate and experience these intense desires. I often feel dizzy and confused. I also lost my sight.,often feel want urinate experience intense desires often feel dizzy confused also lost sight +6098,diabetes,"I have respiratory issues, especially when doing out. Unexpectedly, I'm sweating and flushed. I frequently have yeast infections and urinary tract infections","respiratory issues , especially unexpectedly , sweating flushed frequently yeast infections urinary tract infections" +6099,diabetes,"I constantly have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat hurts occasionally, but it does appear to get better.","constantly dry cough infections seem healing , palpitations throat hurts occasionally , appear get better" +6100,diabetes,"I've been drinking more water and urinating more frequently. My throat and mouth frequently feel dry. Recently, both my hunger and appetite have grown.","drinking water urinating frequently throat mouth frequently feel dry recently , hunger appetite grown" +6101,diabetes,"My vision is foggy, and it appears to be growing worse. I feel exhausted and worn out all the time. I also have severe dizziness and lightheadedness on occasion.","vision foggy , appears growing worse feel exhausted worn time also severe dizziness lightheadedness occasion" +6102,diabetes,"My throat and mouth are dry. I've also been getting hungry more and more. I do, however, occasionally feel rather exhausted.","throat mouth dry also getting hungry , however , occasionally feel rather exhausted" +6103,diabetes,My wound is recovering more slowly now. Both my hands and feet are tingling and going numb. I feel very weak,wound recovering slowly hands feet tingling going numb feel weak +6104,diabetes,"My emotions change, and I have difficulties focusing. At times, my mind might be cloudy and hazy, making it challenging for me to do even simple tasks.","emotions change , difficulties focusing times , mind might cloudy hazy , making challenging even simple tasks" +6105,diabetes,"My entire body is trembling and shaky. I've lost my ability to taste and smell, and I'm worn out. I sometimes get a racing heart or palpitations.","entire body trembling shaky lost ability taste smell , worn sometimes get racing heart palpitations" +6106,diabetes,"I get skin irritations and rashes, especially in my skin's crevices. Cuts and bruises on my skin also take a while to heal.","get skin irritations rashes , especially skin crevices cuts bruises skin also take heal" +6107,diabetes,"I frequently feel the want to urinate and have these strong cravings. I get woozy and disoriented a lot. Moreover, I have lost my vision considerably","frequently feel want urinate strong cravings get woozy disoriented lot moreover , lost vision considerably" +6108,diabetes,"I have breathing problems, especially when I'm outside. I'm suddenly flushed and perspiring. I experience yeast infections and urinary tract infections rather regularly.","breathing problems , especially outside suddenly flushed perspiring experience yeast infections urinary tract infections rather regularly" +6109,diabetes,"I have a dry cough that never stops. I have palpitations and my infections don't appear to be getting better. Sometimes my throat hurts, but it seems to get better.","dry cough never stops palpitations infections appear getting better sometimes throat hurts , seems get better" +6110,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat feel dry a lot. My hunger and appetite have both increased recently.,water intake frequency urination increased mouth throat feel dry lot hunger appetite increased recently +6111,diabetes,"My vision is blurry, and it feels like it's getting worse. All the time, I feel worn out and fatigued. I occasionally have extreme lightheadedness and vertigo as well.","vision blurry , feels like getting worse time , feel worn fatigued occasionally extreme lightheadedness vertigo well" +6112,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. However, I do get periodic bouts of exhaustion.","mouth throat dry additionally , growing increasingly hungry however , get periodic bouts exhaustion" +6113,diabetes,My wound is healing more slowly these days. My feet and hands are tingling and becoming numb. I feel really fragile.,wound healing slowly days feet hands tingling becoming numb feel really fragile +6114,diabetes,"My emotions fluctuate, and it's hard for me to concentrate. My mind can be foggy and foggy at times, making it difficult for me to perform even simple chores.","emotions fluctuate , hard concentrate mind foggy foggy times , making difficult perform even simple chores" +6115,diabetes,"I'm shaking and trembling all over. I've lost my sense of taste and smell, and I'm exhausted. I occasionally get palpitations or a speeding heart.","shaking trembling lost sense taste smell , exhausted occasionally get palpitations speeding heart" +6116,diabetes,"Particularly in the crevices of my skin, I have skin rashes and irritations. My skin bruises and cuts take a while to heal as well.","particularly crevices skin , skin rashes irritations skin bruises cuts take heal well" +6117,diabetes,I regularly experience these intense urges and the want to urinate. I frequently feel drowsy and lost. I've also significantly lost my vision.,regularly experience intense urges want urinate frequently feel drowsy lost also significantly lost vision +6118,diabetes,"I have trouble breathing, especially outside. I start to feel hot and start to sweat. I frequently have urinary tract infections and yeast infections.","trouble breathing , especially outside start feel hot start sweat frequently urinary tract infections yeast infections" +6119,diabetes,"I constantly sneeze and have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat does ache occasionally, but it usually gets better.","constantly sneeze dry cough infections seem healing , palpitations throat ache occasionally , usually gets better" diff --git a/Symptoms_Detection/requirements.txt b/Symptoms_Detection/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..4489866223583adf1b03a66f505a56ee43adecce --- /dev/null +++ b/Symptoms_Detection/requirements.txt @@ -0,0 +1,10 @@ +pandas +regex +nltk +sckit-learn +numpy +streamlit +tensorflow +opencv-python +opencv-python-headless +opencv-contrib-python diff --git a/Symptoms_Detection/training_data.csv b/Symptoms_Detection/training_data.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd73f9f53d7757b10a5b9e0a8457d0e5f8dade92 --- /dev/null +++ b/Symptoms_Detection/training_data.csv @@ -0,0 +1,4921 @@ +itching,skin_rash,nodal_skin_eruptions,continuous_sneezing,shivering,chills,joint_pain,stomach_pain,acidity,ulcers_on_tongue,muscle_wasting,vomiting,burning_micturition,spotting_ urination,fatigue,weight_gain,anxiety,cold_hands_and_feets,mood_swings,weight_loss,restlessness,lethargy,patches_in_throat,irregular_sugar_level,cough,high_fever,sunken_eyes,breathlessness,sweating,dehydration,indigestion,headache,yellowish_skin,dark_urine,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,constipation,abdominal_pain,diarrhoea,mild_fever,yellow_urine,yellowing_of_eyes,acute_liver_failure,fluid_overload,swelling_of_stomach,swelled_lymph_nodes,malaise,blurred_and_distorted_vision,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,weakness_in_limbs,fast_heart_rate,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus,neck_pain,dizziness,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,excessive_hunger,extra_marital_contacts,drying_and_tingling_lips,slurred_speech,knee_pain,hip_joint_pain,muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,spinning_movements,loss_of_balance,unsteadiness,weakness_of_one_body_side,loss_of_smell,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine,passage_of_gases,internal_itching,toxic_look_(typhos),depression,irritability,muscle_pain,altered_sensorium,red_spots_over_body,belly_pain,abnormal_menstruation,dischromic _patches,watering_from_eyes,increased_appetite,polyuria,family_history,mucoid_sputum,rusty_sputum,lack_of_concentration,visual_disturbances,receiving_blood_transfusion,receiving_unsterile_injections,coma,stomach_bleeding,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload,blood_in_sputum,prominent_veins_on_calf,palpitations,painful_walking,pus_filled_pimples,blackheads,scurring,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails,blister,red_sore_around_nose,yellow_crust_ooze,prognosis, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..52670f2314a07629c633c7b76e09af1231b69e61 --- /dev/null +++ b/app.py @@ -0,0 +1,500 @@ +import streamlit as st +import requests +from utils.ai71_utils import get_ai71_response +from datetime import datetime +import cv2 +import numpy as np +from PIL import Image +import supervision as sv +import matplotlib.pyplot as plt +import io +import os +from inference_sdk import InferenceHTTPClient +from bs4 import BeautifulSoup +import tensorflow as tf +import pandas as pd +from sklearn.feature_extraction.text import CountVectorizer +from sklearn.model_selection import train_test_split +from sklearn.linear_model import LogisticRegression +from sklearn.metrics import accuracy_score, classification_report +import nltk +import re +from nltk.tokenize import word_tokenize +from nltk.corpus import stopwords + +# --- Preprocess text function (moved outside session state) --- +def preprocess_text(text): + # Convert to lowercase + text = text.lower() + + cleaned_text = re.sub(r'[^a-zA-Z0-9\s\,]', ' ', text) + # Tokenize text + tokens = word_tokenize(cleaned_text) + + # Remove stop words + stop_words = set(stopwords.words('english')) + tokens = [word for word in tokens if word not in stop_words] + + # Rejoin tokens into a single string + cleaned_text = ' '.join(tokens) + + return cleaned_text + +st.title("Medi Scape Dashboard") + +# --- Session State Initialization --- +if 'disease_model' not in st.session_state: + try: + model_path = 'FINAL_MODEL.keras' + print(f"Attempting to load disease model from: {model_path}") + print(f"Model file exists: {os.path.exists(model_path)}") + st.session_state.disease_model = tf.keras.models.load_model(model_path) + print("Disease model loaded successfully!") + except FileNotFoundError: + st.error("Disease classification model not found. Please ensure 'FINAL_MODEL.keras' is in the same directory as this app.") + st.session_state.disease_model = None + +# Load the vectorizer +if 'vectorizer' not in st.session_state: + try: + vectorizer_path = "vectorizer.pkl" + print(f"Attempting to load vectorizer from: {vectorizer_path}") + print(f"Vectorizer file exists: {os.path.exists(vectorizer_path)}") + st.session_state.vectorizer = pd.read_pickle(vectorizer_path) + print("Vectorizer loaded successfully!") + except FileNotFoundError: + st.error("Vectorizer file not found. Please ensure 'vectorizer.pkl' is in the same directory as this app.") + st.session_state.vectorizer = None + +if 'model_llm' not in st.session_state: + # --- Load pre-trained model and vectorizer --- + st.session_state.model_llm = LogisticRegression() + try: + llm_model_path = "logistic_regression_model.pkl" + print(f"Attempting to load LLM model from: {llm_model_path}") + print(f"LLM Model file exists: {os.path.exists(llm_model_path)}") + st.session_state.model_llm = pd.read_pickle(llm_model_path) + print("LLM model loaded successfully!") + except FileNotFoundError: + st.error("LLM model file not found. Please ensure 'logistic_regression_model.pkl' is in the same directory.") + st.session_state.model_llm = None + + # Load datasets (only for reference, not used for training) + dataset_1 = pd.read_csv("Symptoms_Detection/training_data.csv") + dataset_2 = pd.read_csv("Symptoms_Detection/Symptom2Disease.csv") + + # Create symptoms_text column (only for reference, not used for training) + dataset_1['symptoms_text'] = dataset_1.apply(lambda row: ','.join([col for col in dataset_1.columns if row[col] == 1]), axis=1) + final_dataset = pd.DataFrame(dataset_1[["prognosis", "symptoms_text"]]) + final_dataset.columns = ['label', 'text'] + + # Combine datasets (only for reference, not used for training) + df_combined = pd.concat([final_dataset, dataset_2[['label', 'text']]], axis=0, ignore_index=True) + + # Store in session state (only for reference, not used for training) + st.session_state.df_combined = df_combined +# --- End of Session State Initialization --- + +# Load the disease classification model +try: + disease_model = tf.keras.models.load_model('FINAL_MODEL.keras') +except FileNotFoundError: + st.error("Disease classification model not found. Please ensure 'FINAL_MODEL.keras' is in the same directory as this app.") + disease_model = None + +# Sidebar Navigation +st.sidebar.title("Navigation") +page = st.sidebar.radio("Go to", ["Home", "AI Chatbot Diagnosis", "Drug Identification", "Disease Detection", "Outbreak Alert"]) + +# Access secrets using st.secrets +if "INFERENCE_API_URL" not in st.secrets or "INFERENCE_API_KEY" not in st.secrets: + st.error("Please make sure to set your secrets in the Streamlit secrets settings.") +else: + # Initialize the Inference Client + CLIENT = InferenceHTTPClient( + api_url=st.secrets["INFERENCE_API_URL"], + api_key=st.secrets["INFERENCE_API_KEY"] + ) + + # Function to preprocess the image + def preprocess_image(image_path): + # Load the image + image = cv2.imread(image_path) + + # Convert to grayscale + gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + + # Remove noise + blurred = cv2.GaussianBlur(gray, (5, 5), 0) + + # Thresholding/Binarization + _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU) + + # Dilation and Erosion + kernel = np.ones((1, 1), np.uint8) + dilated = cv2.dilate(binary, kernel, iterations=1) + eroded = cv2.erode(dilated, kernel, iterations=1) + + # Edge detection + edges = cv2.Canny(eroded, 100, 200) + + # Deskewing + coords = np.column_stack(np.where(edges > 0)) + angle = cv2.minAreaRect(coords)[-1] + if angle < -45: + angle = -(90 + angle) + else: + angle = -angle + + (h, w) = edges.shape[:2] + center = (w // 2, h // 2) + M = cv2.getRotationMatrix2D(center, angle, 1.0) + deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE) + + # Find contours + contours, _ = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + + # Draw contours on the original image + contour_image = image.copy() + cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2) + + return contour_image + + def get_x1(detection): + return detection.xyxy[0][0] + +# Access secrets using st.secrets +if "INFERENCE_API_URL" not in st.secrets or "INFERENCE_API_KEY" not in st.secrets: + st.error("Please make sure to set your secrets in the Streamlit secrets settings.") +else: + # Initialize the Inference Client + CLIENT = InferenceHTTPClient( + api_url=st.secrets["INFERENCE_API_URL"], + api_key=st.secrets["INFERENCE_API_KEY"] + ) + + # Function to preprocess the image + def preprocess_image(image_path): + # Load the image + image = cv2.imread(image_path) + + # Convert to grayscale + gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + + # Remove noise + blurred = cv2.GaussianBlur(gray, (5, 5), 0) + + # Thresholding/Binarization + _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU) + + # Dilation and Erosion + kernel = np.ones((1, 1), np.uint8) + dilated = cv2.dilate(binary, kernel, iterations=1) + eroded = cv2.erode(dilated, kernel, iterations=1) + + # Edge detection + edges = cv2.Canny(eroded, 100, 200) + + # Deskewing + coords = np.column_stack(np.where(edges > 0)) + angle = cv2.minAreaRect(coords)[-1] + if angle < -45: + angle = -(90 + angle) + else: + angle = -angle + + (h, w) = edges.shape[:2] + center = (w // 2, h // 2) + M = cv2.getRotationMatrix2D(center, angle, 1.0) + deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE) + + # Find contours + contours, _ = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + + # Draw contours on the original image + contour_image = image.copy() + cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2) + + return contour_image + + def get_x1(detection): + return detection.xyxy[0][0] + + # --- Prediction function (using session state) --- + def predict_disease(symptoms): + if st.session_state.vectorizer is not None and st.session_state.model_llm is not None: + preprocessed_symptoms = preprocess_text(symptoms) + symptoms_vectorized = st.session_state.vectorizer.transform([preprocessed_symptoms]) + prediction = st.session_state.model_llm.predict(symptoms_vectorized) + return prediction[0] + else: + st.error("Unable to make prediction. Vectorizer or LLM model is not loaded.") + return None + + # --- New function to analyze X-ray with LLM --- + def analyze_xray_with_llm(predicted_class): + prompt = f""" + Based on a chest X-ray analysis, the predicted condition is {predicted_class}. + Please provide a concise summary of this condition, including: + - A brief description of the condition. + - Common symptoms associated with it. + - Potential causes. + - General treatment approaches. + - Any other relevant information for a patient. + """ + llm_response = get_ai71_response(prompt) + st.write("## LLM Analysis of X-ray Results:") + st.write(llm_response) + + if page == "Home": + st.markdown("## Welcome to Medi Scape") + st.write("Medi Scape is an AI-powered healthcare application designed to streamline the process of understanding and managing medical information. It leverages advanced AI models to provide features such as prescription analysis, disease detection from chest X-rays, and symptom-based diagnosis assistance.") + + st.markdown("## Features") + st.write("Medi Scape provides various AI-powered tools for remote healthcare, including:") + features = [ + "**AI Chatbot Diagnosis:** Interact with an AI chatbot for preliminary diagnosis and medical information.", + "**Drug Identification:** Upload a prescription image to identify medications and access relevant details.", + "**Doctor's Handwriting Identification:** Our system can accurately recognize and process doctor's handwriting.", + "**Disease Detection:** Upload a chest X-ray image to detect potential diseases.", + "**Outbreak Alert:** Stay informed about potential disease outbreaks in your area." + ] + for feature in features: + st.markdown(f"- {feature}") + + st.markdown("## How it Works") + steps = [ + "**Upload:** You can upload a prescription image for drug identification or a chest X-ray image for disease detection.", + "**Process:** Our AI models will analyze the image and extract relevant information.", + "**Results:** You will receive identified drug names, uses, side effects, and more, or a potential disease diagnosis." + ] + for i, step in enumerate(steps, 1): + st.markdown(f"{i}. {step}") + + st.markdown("## Key Features") + key_features = [ + "**AI-Powered:** Leverages advanced AI models for accurate analysis and diagnosis.", + "**User-Friendly:** Simple and intuitive interface for easy navigation and interaction.", + "**Secure:** Your data is protected and handled with confidentiality." + ] + for feature in key_features: + st.markdown(f"- {feature}") + + st.markdown("Please use the sidebar to navigate to different features.") + + elif page == "AI Chatbot Diagnosis": + st.write("Enter your symptoms separated by commas:") + symptoms_input = st.text_area("Symptoms:") + if st.button("Diagnose"): + if symptoms_input: + # --- Pipeline 1 Implementation --- + # 1. Symptom Input (already done with st.text_area) + # 2. Regression Prediction + regression_prediction = predict_disease(symptoms_input) + + if regression_prediction is not None: + # 3. LLM Prompt Enhancement + prompt = f"""The predicted condition based on a symptom analysis is {regression_prediction}. + Provide a detailed explanation of this condition, including possible causes, common symptoms, + and general treatment approaches. Also, suggest when a patient should consult a doctor.""" + + # 4. LLM Output + llm_response = get_ai71_response(prompt) + + # 5. Combined Output + st.write("## Logistic Regression Prediction:") + st.write(regression_prediction) + + st.write("## LLM Explanation:") + st.write(llm_response) + # --- End of Pipeline 1 Implementation --- + + else: + st.write("Please enter your symptoms.") + + elif page == "Drug Identification": + st.write("Upload a prescription image for drug identification.") + uploaded_file = st.file_uploader("Upload prescription", type=["png", "jpg", "jpeg"]) + + if uploaded_file is not None: + # Display the uploaded image + image = Image.open(uploaded_file) + st.image(image, caption="Uploaded Prescription", use_column_width=True) + + if st.button("Process Prescription"): + # Save the image to a temporary file + temp_image_path = "temp_image.jpg" + image.save(temp_image_path) + + # Preprocess the image + preprocessed_image = preprocess_image(temp_image_path) + + # Perform inference + result_doch1 = CLIENT.infer(preprocessed_image, model_id="doctor-s-handwriting/1") + + # Extract labels and detections + labels = [item["class"] for item in result_doch1["predictions"]] + detections = sv.Detections.from_inference(result_doch1) + + # Sort detections and labels + sorted_indices = sorted(range(len(detections)), key=lambda i: get_x1(detections[i])) + sorted_detections = [detections[i] for i in sorted_indices] + sorted_labels = [labels[i] for i in sorted_indices] + + # Convert list to string + resulting_string = ''.join(sorted_labels) + + # Display results + st.subheader("Processed Prescription") + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6)) + + # Plot bounding boxes + image_with_boxes = preprocessed_image.copy() + for detection in sorted_detections: + x1, y1, x2, y2 = detection.xyxy[0] + cv2.rectangle(image_with_boxes, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0), 2) + ax1.imshow(cv2.cvtColor(image_with_boxes, cv2.COLOR_BGR2RGB)) + ax1.set_title("Bounding Boxes") + ax1.axis('off') + + # Plot labels + image_with_labels = preprocessed_image.copy() + for i, detection in enumerate(sorted_detections): + x1, y1, x2, y2 = detection.xyxy[0] + label = sorted_labels[i] + cv2.putText(image_with_labels, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2) + ax2.imshow(cv2.cvtColor(image_with_labels, cv2.COLOR_BGR2RGB)) + ax2.set_title("Labels") + ax2.axis('off') + + st.pyplot(fig) + + st.write("Extracted Text from Prescription:", resulting_string) + + # Prepare prompt for LLM + prompt = f"""Analyze the following prescription text: + {resulting_string} + + Please provide: + 1. Identified drug name(s) + 2. Full name of each identified drug + 3. Primary uses of each drug + 4. Common side effects + 5. Recommended dosage (if identifiable from the text) + 6. Any warnings or precautions + 7. Potential interactions with other medications (if multiple drugs are identified) + 8. Any additional relevant information for the patient + + If any part of the prescription is unclear or seems incomplete, please mention that and provide information about possible interpretations or matches. Always emphasize the importance of consulting a healthcare professional for accurate interpretation and advice.""" + + # Get LLM response + llm_response = get_ai71_response(prompt) + + st.subheader("AI Analysis of the Prescription") + st.write(llm_response) + + # Remove the temporary image file + os.remove(temp_image_path) + + else: + st.info("Please upload a prescription image to proceed.") + + elif page == "Disease Detection": + st.write("Upload a chest X-ray image for disease detection.") + uploaded_image = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"]) + + if uploaded_image is not None and st.session_state.disease_model is not None: + # Display the image + img_opened = Image.open(uploaded_image).convert('RGB') + image_pred = np.array(img_opened) + image_pred = cv2.resize(image_pred, (150, 150)) + + # Convert the image to a numpy array + image_pred = np.array(image_pred) + + # Rescale the image (if the model was trained with rescaling) + image_pred = image_pred / 255.0 + + # Add an extra dimension to match the input shape (1, 150, 150, 3) + image_pred = np.expand_dims(image_pred, axis=0) + + # Predict using the model + prediction = st.session_state.disease_model.predict(image_pred) + + # Get the predicted class + predicted_ = np.argmax(prediction) + + # Decode the prediction + if predicted_ == 0: + predicted_class = "Covid" + elif predicted_ == 1: + predicted_class = "Normal Chest X-ray" + else: + predicted_class = "Pneumonia" + + st.image(image_pred, caption='Input image by user', use_column_width=True) + st.write("Prediction Classes for different types:") + st.write("COVID: 0") + st.write("Normal Chest X-ray: 1") + st.write("Pneumonia: 2") + st.write("\n") + st.write("DETECTED DISEASE DISPLAY") + st.write(f"Predicted Class : {predicted_}") + st.write(predicted_class) + + # Analyze X-ray results with LLM + analyze_xray_with_llm(predicted_class) + else: + st.write("Please upload an image file or ensure the disease model is loaded.") + + elif page == "Outbreak Alert": + st.markdown("## **Disease Outbreak News (from WHO)**") + + # Fetch WHO news page + url = "https://www.who.int/news-room/events" + response = requests.get(url) + response.raise_for_status() # Raise an exception for bad status codes + + soup = BeautifulSoup(response.content, 'html.parser') + + # Find news articles (adjust selectors if WHO website changes) + articles = soup.find_all('div', class_='list-view--item') + + for article in articles[:5]: # Display the top 5 news articles + title_element = article.find('a', class_='link-container') + if title_element: + title = title_element.text.strip() + link = title_element['href'] + date_element = article.find('span', class_='date') + date = date_element.text.strip() if date_element else "Date not found" + + # Format date + date_parts = date.split() + if len(date_parts) >= 3: + try: + formatted_date = datetime.strptime(date, "%d %B %Y").strftime("%Y-%m-%d") + except ValueError: + formatted_date = date # Keep the original date if formatting fails + else: + formatted_date = date + + # Display news item in a card-like container + with st.container(): + st.markdown(f"**{formatted_date}**") + st.markdown(f"[{title}]({link})") + st.markdown("---") + else: + st.write("Could not find article details.") + +# Auto-scroll to the bottom of the chat container +st.markdown( + """ + + """, + unsafe_allow_html=True, +) diff --git a/app1.rs b/app1.rs new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/app1.rs @@ -0,0 +1 @@ + diff --git a/app_docr.py b/app_docr.py new file mode 100644 index 0000000000000000000000000000000000000000..ee44e7820cdfba162d06191f1dacc2b2fb52bfb3 --- /dev/null +++ b/app_docr.py @@ -0,0 +1,254 @@ + +import cv2 +import numpy as np +import matplotlib.pyplot as plt +import os +from PIL import Image +import cv2 +import numpy as np +import supervision as sv +import matplotlib.pyplot as plt + + +def preprocess_image(image_path): + # Load the image + #image = Image.open(image_path) + #image = cv2.imread(image_path) + image = np.array(image_path) + + # Convert to grayscale + gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + plt.subplot(3, 4, 1) + plt.title("Grayscale") + plt.imshow(gray, cmap='gray') + + # Remove noise + blurred = cv2.GaussianBlur(gray, (5, 5), 0) + plt.subplot(3, 4, 2) + plt.title("Blurred") + plt.imshow(blurred, cmap='gray') + + # Thresholding/Binarization + _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU) + plt.subplot(3, 4, 3) + plt.title("Binary") + plt.imshow(binary, cmap='gray') + + # Dilation and Erosion + kernel = np.ones((1, 1), np.uint8) + dilated = cv2.dilate(binary, kernel, iterations=1) + eroded = cv2.erode(dilated, kernel, iterations=1) + plt.subplot(3, 4, 4) + plt.title("Eroded") + plt.imshow(eroded, cmap='gray') + + # Display the original image and the edge-detected image + edges = cv2.Canny(eroded, 100, 200) + plt.subplot(3,4,5) + plt.title('Edge Image') + plt.imshow(edges, cmap='gray') + + + # Deskewing + coords = np.column_stack(np.where(edges > 0)) + angle = cv2.minAreaRect(coords)[-1] + print(f"Detected angle: {angle}") + if angle < -45: + angle = -(90 + angle) + else: + angle = -angle + + angle = 0 + print(f"Corrected angle: {angle}") + (h, w) = edges.shape[:2] + center = (w // 2, h // 2) + M = cv2.getRotationMatrix2D(center, angle, 1.0) + deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE) + plt.subplot(3, 4, 6) + plt.title("Deskewed") + plt.imshow(deskewed, cmap='gray') + + # Convert to grayscale + #gray = cv2.cvtColor(deskewed, cv2.COLOR_BGR2GRAY) + + # Find contours + contours, hierarchy = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + # Draw contours on the original image + contour_image = image.copy() + cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2) + plt.subplot(3, 4, 7) + plt.title('Contours') + plt.imshow(cv2.cvtColor(contour_image, cv2.COLOR_BGR2RGB)) + + plt.show() + + return contour_image + +########################################################################################################################## + +import os +from PIL import Image +from inference_sdk import InferenceHTTPClient +from roboflow import Roboflow +from PIL import Image +import supervision as sv +import cv2 + + +CLIENT = InferenceHTTPClient( + api_url="https://detect.roboflow.com", + api_key="LSbJ0tl3WTLn4Aqar0Sp" +) + + + + +def creating_display_image(preprocessed_image): + # Perform inference + result_doch1 = CLIENT.infer(preprocessed_image, model_id="doctor-s-handwriting/1") + + # Print or process the result + #print(result_doch1) + + labels = [item["class"] for item in result_doch1["predictions"]] + + detections = sv.Detections.from_inference(result_doch1) + + image_np = np.array(preprocessed_image) + + label_annotator = sv.LabelAnnotator() + bounding_box_annotator = sv.BoxAnnotator() + annotated_image = bounding_box_annotator.annotate( + scene=image_np, detections=detections) + annotated_image = label_annotator.annotate( + scene=annotated_image, detections=detections, labels=labels) + annotated_image_pil = Image.fromarray(annotated_image) + sv.plot_image(image=annotated_image_pil, size=(16, 16)) + + return annotated_image_pil + +###################################################################################################################### + +import cv2 +import numpy as np +import matplotlib.pyplot as plt +from PIL import Image +import supervision as sv + +def process_and_plot_image(preprocessed_image): + # Convert preprocessed image to numpy array + image_np = np.array(preprocessed_image) + + # Perform inference + result_doch1 = CLIENT.infer(preprocessed_image, model_id="doctor-s-handwriting/1") + + # Extract labels and detections + labels = [item["class"] for item in result_doch1["predictions"]] + detections = sv.Detections.from_inference(result_doch1) + + # Debug: Print unsorted detections and labels + print("Unsorted Detections and Labels:") + for i, detection in enumerate(detections): + print(f"Detection {i}: {detection} - Label: {labels[i]}") + + # Function to extract the x1 coordinate from the detection + def get_x1(detection): + return detection.xyxy[0][0] # Access the first element of the bounding box array + + # Sort detections and labels by the x-coordinate of the bounding box + sorted_indices = sorted(range(len(detections)), key=lambda i: get_x1(detections[i])) + sorted_detections = [detections[i] for i in sorted_indices] + sorted_labels = [labels[i] for i in sorted_indices] + + # Debug: Print sorted detections and labels + print("Sorted Detections and Labels:") + for i, detection in enumerate(sorted_detections): + print(f"Detection {i}: {detection} - Label: {sorted_labels[i]}") + + # Function to plot bounding boxes + def plot_bounding_boxes(image_np, detections): + image_with_boxes = image_np.copy() + for detection in detections: + x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates + cv2.rectangle(image_with_boxes, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0), 2) + return image_with_boxes + + # Function to plot labels + def plot_labels(image_np, detections, labels): + image_with_labels = image_np.copy() + for i, detection in enumerate(detections): + x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates + label = labels[i] + cv2.putText(image_with_labels, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2) + return image_with_labels + + # Plot bounding boxes with sorted detections + image_with_boxes = plot_bounding_boxes(image_np, sorted_detections) + + # Plot labels with sorted detections and labels + image_with_labels = plot_labels(image_np, sorted_detections, sorted_labels) + + # Convert images to RGB for plotting with matplotlib + image_with_boxes_rgb = cv2.cvtColor(image_with_boxes, cv2.COLOR_BGR2RGB) + image_with_labels_rgb = cv2.cvtColor(image_with_labels, cv2.COLOR_BGR2RGB) + + # Plot results using matplotlib + plt.figure(figsize=(12, 6)) + + plt.subplot(1, 2, 1) + plt.title("Bounding Boxes") + plt.imshow(image_with_boxes_rgb) + plt.axis('off') + + plt.subplot(1, 2, 2) + plt.title("Labels") + plt.imshow(image_with_labels_rgb) + plt.axis('off') + + plt.show() + return sorted_labels + + +########################################################################################################################## + +def image_result(sorted_labels): + # Convert list to string + resulting_string = ''.join(sorted_labels) + return resulting_string + +############################################################################################################################ + +import streamlit as st +from PIL import Image + +# Title of the app +st.title("DOCTOR HANDWRITING DETECTION") + +# Upload an image file +uploaded_image = st.file_uploader("Choose an image...", type="jpg") + +if uploaded_image is not None: + # Display the image + image = Image.open(uploaded_image) + preprocessed_image_for_streamlit = preprocess_image(image) + + display_boundingbox = creating_display_image(preprocessed_image_for_streamlit) + + result = process_and_plot_image(preprocessed_image_for_streamlit) + + input_image_result = image_result(result) + + + cv2.imwrite('preprocessed_image_2.jpg', preprocessed_image_for_streamlit) + + st.image(image, caption='Input image by user', use_column_width=True) + + st.image(display_boundingbox, caption='Displayed image through bounding boxes', use_column_width=True) + + + # Display some text + st.write("Detected text on the image uploaded by the user") + st.write(input_image_result) +else: + st.write("Please upload an image file.") + diff --git a/backend/api/__init__.py b/backend/api/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/backend/api/admin.py b/backend/api/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/backend/api/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/backend/api/apps.py b/backend/api/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..66656fd29b2cc651c92dc03b2eaf6ef9a4397df0 --- /dev/null +++ b/backend/api/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ApiConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'api' diff --git a/backend/api/models.py b/backend/api/models.py new file mode 100644 index 0000000000000000000000000000000000000000..0fe2dd5115f5a1234a7c4900a7d6333e2bd77457 --- /dev/null +++ b/backend/api/models.py @@ -0,0 +1,36 @@ +from django.db import models +import uuid +from django.utils import timezone + +# Create your models here. + +class AbstractUploadedFile(models.Model): + created = models.DateTimeField(default=timezone.now() ) + name = models.CharField(max_length=254, null=True, editable=False) + + class Meta: + abstract = True + + def __str__(self): + return self.name + + def save(self, **kwargs): + self.name = self.file.name + self.size = self.file.size + return super().save(**kwargs) + + def delete(self, *args, **kwargs): + keep_file = kwargs.pop("keep_file", False) + if keep_file: + self.file = None + return super().delete(*args, **kwargs) + + + +class DrugPrescriptionFileUpload(AbstractUploadedFile): + # patient_id = models.CharField(blank=False, max_length=20) + file = models.FileField(blank=False, null=True, upload_to='uploaded/') + # uploaded_on = models.DateTimeField(auto_now_add=True) + + # def __str__(self): + # return datetime.now() \ No newline at end of file diff --git a/backend/api/serializers.py b/backend/api/serializers.py new file mode 100644 index 0000000000000000000000000000000000000000..a31430f0de0ba32d7544806d49625e6c69286c05 --- /dev/null +++ b/backend/api/serializers.py @@ -0,0 +1,13 @@ +from rest_framework import serializers +from .models import DrugPrescriptionFileUpload + +class DiagnosisSerializer(serializers.Serializer): + diagnosis = serializers.CharField() + +class DrugSerializer(serializers.Serializer): + drug_info = serializers.CharField() + +class FileUploadSerializer(serializers.ModelSerializer): + class Meta: + model = DrugPrescriptionFileUpload + fields = ('file', 'created','name') diff --git a/backend/api/tests.py b/backend/api/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/backend/api/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/backend/api/urls.py b/backend/api/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..b6612796b277a8e68c51f10e2b66bbbc0d46af62 --- /dev/null +++ b/backend/api/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from .views import chatbot_diagnosis, drug_identification, upload_drug_prescription_view + +urlpatterns = [ + path('diagnosis/', chatbot_diagnosis, name='chatbot_diagnosis'), + path('drug/', drug_identification, name='drug_identification'), + path('upload_drug_prescription/', upload_drug_prescription_view.as_view(), name="upload_drug_prescription"), +] diff --git a/backend/api/views.py b/backend/api/views.py new file mode 100644 index 0000000000000000000000000000000000000000..dc87ac0685f5655dd062279f60e9cf9f68afb8cd --- /dev/null +++ b/backend/api/views.py @@ -0,0 +1,50 @@ +from rest_framework.decorators import api_view +from rest_framework.response import Response +from .serializers import DiagnosisSerializer, DrugSerializer + +from rest_framework.views import APIView +from rest_framework import status + +from rest_framework.parsers import FormParser, MultiPartParser + +from .serializers import FileUploadSerializer +from .models import DrugPrescriptionFileUpload + +@api_view(['GET']) +def chatbot_diagnosis(request): + # In a real application, you would process the diagnosis here + diagnosis_data = {"diagnosis": "This is a preliminary diagnosis based on symptoms."} + serializer = DiagnosisSerializer(diagnosis_data) + return Response(serializer.data) + +@api_view(['GET']) +def drug_identification(request): + # In a real application, you would process the drug identification here + drug_data = {"drug_info": "This is the identified drug information."} + serializer = DrugSerializer(drug_data) + return Response(serializer.data) + + +class upload_drug_prescription_view(APIView): + + serializer_class = FileUploadSerializer + parser_classes = (MultiPartParser, FormParser) + + + def post(self, request): + serialiser = self.serializer_class(data=request.data) + + if serialiser.is_valid(): + serialiser.save() + return Response( + serialiser.data, + status=status.HTTP_201_CREATED + ) + + return Response( + serialiser.errors, + status=status.HTTP_400_BAD_REQUEST + ) + + + diff --git a/backend/healthcare_project/__init__.py b/backend/healthcare_project/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/backend/healthcare_project/asgi.py b/backend/healthcare_project/asgi.py new file mode 100644 index 0000000000000000000000000000000000000000..5da8f2970564f20bcbd9a1149ab4700cb84e6e48 --- /dev/null +++ b/backend/healthcare_project/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for healthcare_project project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'healthcare_project.settings') + +application = get_asgi_application() diff --git a/backend/healthcare_project/settings.py b/backend/healthcare_project/settings.py new file mode 100644 index 0000000000000000000000000000000000000000..271d0b19916f2464d07e5863477db471067f9c70 --- /dev/null +++ b/backend/healthcare_project/settings.py @@ -0,0 +1,135 @@ +""" +Django settings for healthcare_project project. + +Generated by 'django-admin startproject' using Django 5.0.7. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/5.0/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-%y0hcq@iz!785q#z@*ju-+zs!acp9d#5u-e7#cp4nw6z%=x5o+' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'api', + 'corsheaders', + 'rest_framework', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', + 'corsheaders.middleware.CorsMiddleware', +] + +CORS_ORIGIN_ALLOW_ALL = True + +REST_FRAMEWORK = { + 'DEFAULT_PERMISSION_CLASSES': [ + 'rest_framework.permissions.AllowAny', + ] +} + +ROOT_URLCONF = 'healthcare_project.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'healthcare_project.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/5.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/5.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/5.0/howto/static-files/ + +STATIC_URL = 'static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/backend/healthcare_project/urls.py b/backend/healthcare_project/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..9666b6bbc57e9fe472292195be9199f1f1bf049b --- /dev/null +++ b/backend/healthcare_project/urls.py @@ -0,0 +1,7 @@ +from django.contrib import admin +from django.urls import path, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path('api/', include('api.urls')), +] diff --git a/backend/healthcare_project/wsgi.py b/backend/healthcare_project/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..1da4ebedac31b4ef520e503cfa0e7b5ad0712782 --- /dev/null +++ b/backend/healthcare_project/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for healthcare_project project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'healthcare_project.settings') + +application = get_wsgi_application() diff --git a/backend/manage.py b/backend/manage.py new file mode 100644 index 0000000000000000000000000000000000000000..78dda179849bd81779c23d6c47c3c49f2e967cdb --- /dev/null +++ b/backend/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'healthcare_project.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/covid_from_website.png b/covid_from_website.png new file mode 100644 index 0000000000000000000000000000000000000000..cc9ada56b5e4ccd021307c15c5a8343bef32fcd3 Binary files /dev/null and b/covid_from_website.png differ diff --git a/for_all_classe.ipynb b/for_all_classe.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..7fae470f80ebd9049a6c28e1c56860a26974e6b5 --- /dev/null +++ b/for_all_classe.ipynb @@ -0,0 +1,1292 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "76fe7874-7381-4b1b-ac6d-89747001b561", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-sdk in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.31.0)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.6.7)\n", + "Requirement already satisfied: opencv-python>=4.8.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (10.3.0)\n", + "Requirement already satisfied: supervision<1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.22.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (1.26.4)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.2.1)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.7.6)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (9.0.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2024.7.4)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pyyaml>=5.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (6.0.1)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (1.13.1)\n", + "Requirement already satisfied: packaging>=17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses-json>=0.6.0->inference-sdk) (23.2)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (3.0.9)\n", + "Requirement already satisfied: python-dateutil>=2.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (2.9.0.post0)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (1.0.0)\n", + "Requirement already satisfied: typing-extensions>=3.7.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (4.11.0)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil>=2.7->matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.16.0)\n" + ] + } + ], + "source": [ + "!pip install inference-sdk" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "320bfd94-b6ab-45e7-bcc8-0822b3b206c0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-cli in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests<=2.31.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.31.0)\n", + "Requirement already satisfied: docker==6.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.1.3)\n", + "Requirement already satisfied: typer==0.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.9.0)\n", + "Requirement already satisfied: rich<=13.5.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (13.3.5)\n", + "Requirement already satisfied: skypilot==0.4.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.4.1)\n", + "Requirement already satisfied: PyYAML>=6.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.0.1)\n", + "Requirement already satisfied: supervision>=0.17.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.22.0)\n", + "Requirement already satisfied: opencv-python>=4.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: tqdm>=4.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.66.4)\n", + "Requirement already satisfied: GPUtil>=1.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.4.0)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (9.0.0)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.2.1)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.6.7)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (10.3.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.26.4)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.7.6)\n", + "Requirement already satisfied: packaging>=14.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (23.2)\n", + "Requirement already satisfied: urllib3>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.26.19)\n", + "Requirement already satisfied: websocket-client>=0.32.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.8.0)\n", + "Requirement already satisfied: pywin32>=304 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (305.1)\n", + "Requirement already satisfied: wheel in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.43.0)\n", + "Requirement already satisfied: cachetools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.3.3)\n", + "Requirement already satisfied: click>=7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (8.1.7)\n", + "Requirement already satisfied: colorama<0.4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.4.4)\n", + "Requirement already satisfied: cryptography in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (42.0.5)\n", + "Requirement already satisfied: jinja2>=3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.1.4)\n", + "Requirement already satisfied: jsonschema in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.19.2)\n", + "Requirement already satisfied: networkx in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.2.1)\n", + "Requirement already satisfied: pandas>=1.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.2.2)\n", + "Requirement already satisfied: pendulum in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.0.0)\n", + "Requirement already satisfied: PrettyTable>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.10.2)\n", + "Requirement already satisfied: python-dotenv in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.21.0)\n", + "Requirement already satisfied: tabulate in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.9.0)\n", + "Requirement already satisfied: typing-extensions in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.11.0)\n", + "Requirement already satisfied: filelock>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.13.1)\n", + "Requirement already satisfied: psutil in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.9.0)\n", + "Requirement already satisfied: pulp in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.9.0)\n", + "Requirement already satisfied: awscli>=1.27.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.33.31)\n", + "Requirement already satisfied: botocore>=1.29.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: boto3>=1.26.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (3.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2024.7.4)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.15.1)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (1.13.1)\n", + "Requirement already satisfied: docutils<0.17,>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.16)\n", + "Requirement already satisfied: s3transfer<0.11.0,>=0.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.10.2)\n", + "Requirement already satisfied: rsa<4.8,>=3.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (4.7.2)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.0.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (2.9.0.post0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jinja2>=3.0->skypilot==0.4.1->inference-cli) (2.1.3)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich<=13.5.2->inference-cli) (0.1.0)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (3.0.9)\n", + "Requirement already satisfied: pytz>=2020.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2024.1)\n", + "Requirement already satisfied: tzdata>=2022.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2023.3)\n", + "Requirement already satisfied: wcwidth in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from PrettyTable>=2.0.0->skypilot==0.4.1->inference-cli) (0.2.5)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-cli) (1.0.0)\n", + "Requirement already satisfied: cffi>=1.12 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cryptography->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: jsonschema-specifications>=2023.03.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (2023.7.1)\n", + "Requirement already satisfied: referencing>=0.28.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.30.2)\n", + "Requirement already satisfied: rpds-py>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.10.6)\n", + "Requirement already satisfied: time-machine>=2.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pendulum->skypilot==0.4.1->inference-cli) (2.14.2)\n", + "Requirement already satisfied: pycparser in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cffi>=1.12->cryptography->skypilot==0.4.1->inference-cli) (2.21)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil<3.0.0,>=2.1->botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: pyasn1>=0.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rsa<4.8,>=3.1.2->awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.4.8)\n", + "Command failed. Cause: Error connecting to Docker daemon. Is docker installed and running? See https://www.docker.com/get-started/ for installation instructions.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\paramiko\\transport.py:219: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release\n", + " \"class\": algorithms.Blowfish,\n" + ] + } + ], + "source": [ + "!pip install inference-cli && inference server start" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e059518c-7cd2-4ec3-a18e-4f8610333cf0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "e34a866f-695a-4161-8010-44fc1a62759b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python-headless in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python-headless) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python-headless" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "349632ea-a626-4152-9485-6653ad96aaa1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python-headless in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python-headless) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python-headless" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "ba247bf8-e415-4f46-8cb6-6c7581d404d9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-contrib-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-contrib-python) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-contrib-python" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "d691f42e-c0e6-4a67-afaa-c2172a943ad1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pillow in c:\\users\\sriram\\anaconda3\\lib\\site-packages (10.3.0)\n" + ] + } + ], + "source": [ + "!pip install pillow" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "e380f580-00cd-4a25-befe-62a8e7d60a43", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded 3 Test image categories.\n", + "Loaded 3 Train image categories.\n" + ] + } + ], + "source": [ + "import os\n", + "import cv2\n", + "\n", + "def load_images_from_folder(folder):\n", + " images = []\n", + " for filename in os.listdir(folder):\n", + " if filename.endswith(('.png', '.jpg', '.jpeg')):\n", + " img_path = os.path.join(folder, filename)\n", + " #img = cv2.imread(img_path)\n", + " images.append(img_path)\n", + "\n", + " return images\n", + "\n", + "def load_images_test_dataset(test_folder):\n", + " test_images = [] # Initialize the list\n", + " covid_folder = os.path.join(test_folder, 'Covid')\n", + " normal_chestxray_folder = os.path.join(test_folder, 'Normal_chestxray')\n", + " pneumonia_folder = os.path.join(test_folder, 'Pneumonia')\n", + " \n", + " \n", + " test_images.append({\"category\": \"covid\", \"images\": load_images_from_folder(covid_folder)}) # Append images\n", + " test_images.append({\"category\": \"normal_chestray\", \"images\": load_images_from_folder(normal_chestxray_folder)}) # Append images\n", + " test_images.append({\"category\": \"pneumonia\", \"images\": load_images_from_folder(pneumonia_folder)}) # Append images\n", + " \n", + " return test_images\n", + "\n", + "def load_images_train_dataset(train_folder):\n", + " train_images = [] # Initialize the list\n", + " covid_folder = os.path.join(train_folder, 'Covid')\n", + " normal_chestxray_folder = os.path.join(train_folder, 'Normal_chestxray')\n", + " pneumonia_folder = os.path.join(train_folder, 'Pneumonia')\n", + " \n", + " train_images.append({\"category\": \"covid\", \"images\": load_images_from_folder(covid_folder)}) # Append images\n", + " train_images.append({\"category\": \"normal_chestray\", \"images\": load_images_from_folder(normal_chestxray_folder)}) # Append images\n", + " train_images.append({\"category\": \"pneumonia\", \"images\": load_images_from_folder(pneumonia_folder)}) # Append images\n", + " \n", + " return train_images\n", + "\n", + "def load_image_main_folder(main_folder):\n", + " test_folder = os.path.join(main_folder, 'test')\n", + " train_folder = os.path.join(main_folder, 'train')\n", + " \n", + " test_images = load_images_test_dataset(test_folder)\n", + " train_images = load_images_train_dataset(train_folder)\n", + " \n", + " return test_images, train_images\n", + "\n", + "# Example usage\n", + "main_folder = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification'\n", + "test_images, train_images = load_image_main_folder(main_folder)\n", + "\n", + "print(f\"Loaded {len(test_images)} Test image categories.\")\n", + "print(f\"Loaded {len(train_images)} Train image categories.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "2d72287e-faf5-4057-b6b2-837aef3c52f0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded [{'category': 'covid', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0100.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0102.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0105.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0106.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0108.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0111.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0112.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0113.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0115.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0118.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0119.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\0120.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\094.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\096.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\098.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-2020_01_31_20_24_2322_2020_01_31_x-ray_coronavirus_US.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-a-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-b-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-c-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\auntminnie-d-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00003b.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00012.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00022.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00033.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\COVID-00037.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Covid\\\\radiopaedia-2019-novel-coronavirus-infected-pneumonia.jpg']}, {'category': 'normal_chestray', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0101.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0102.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0103.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0105.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0106.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0107.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0108.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0109.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0110.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0111.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0112.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0114.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0115.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0116.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0117.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0118.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0119.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0120.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0121.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\0122.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0241-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0242-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0243-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0244-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0245-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0248-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0249-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0250-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0251-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0253-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0255-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0256-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0257-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0261-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0262-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0264-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0265-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0266-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0268-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0269-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0270-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0272-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0273-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0274-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0275-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0276-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0277-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0278-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0279-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0280-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0282-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0283-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Normal_chestxray\\\\IM-0285-0001.jpeg']}, {'category': 'pneumonia', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0115-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0117-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0119-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0122-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0125-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0127-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0128-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0129-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0131-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0133-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0135-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0137-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0140-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0141-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0143-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0145-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0147-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0149-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0151-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0152-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0154-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0156-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0158-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0160-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0162-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0164-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0166-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0168-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0170-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0172-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0176-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0177-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0178-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0180-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0182-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0183-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0185-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0187-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0189-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0191-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0193-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0195-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0199-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0201-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0203-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0205-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0206-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0207-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0209-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0210-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0211-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0213-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0214-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0215-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0216-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0217-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0218-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0219-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0220-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0221-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0222-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0223-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0224-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0225-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0226-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0227-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0228-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0229-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0230-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0231-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0234-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0235-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0236-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0237-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0238-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0239-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0240-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0241-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0242-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0243-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0244-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0245-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0248-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0249-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0250-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0251-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0253-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0255-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0256-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0257-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0261-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0262-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0264-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0265-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0266-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0268-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0269-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0270-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0272-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0273-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0274-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0275-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0276-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0277-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0278-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0279-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0280-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0282-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0283-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\test\\\\Pneumonia\\\\IM-0285-0001.jpeg']}] Test image categories.\n", + "Loaded [{'category': 'covid', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\01.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\010.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\012.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\015.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\019.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\02.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\020.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\021.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\022.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\024.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\025.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\026.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\027.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\03.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\031.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\032.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\033.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\039.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\04.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\040.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\041.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\042.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\043.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\044.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\045.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\046.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\047.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\048.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\049.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\050.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\051.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\052.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\053.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\054.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\055.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\056.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\057.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\058.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\059.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\06.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\060.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\061.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\062.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\064.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\065.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\067.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\068.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\069.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\07.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\071.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\072.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\073.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\074.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\076.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\078.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\079.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\08.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\080.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\081.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\082.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\083.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\084.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\085.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\086.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\088.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\089.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\09.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\090.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\091.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\092.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00001.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00002.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00003a.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00003b.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00004.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00005.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00006.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00007.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00008.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00009.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00010.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00011.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00012.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00013a.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00013b.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00014.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00015a.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00015b.png', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00016.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00017.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00018.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00019.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00020.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00021.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00022.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00023.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00024.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00025.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00026.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00027.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00028.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00029.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00030.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00031.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00032.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00033.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00034.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00035.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00036.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00037.jpg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Covid\\\\COVID-00038.jpg']}, {'category': 'normal_chestray', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\01.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\010.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\011.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\012.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\013.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\014.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\015.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\016.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\017.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\018.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\019.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\02.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\020.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\021.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\022.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\023.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\024.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\025.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\03.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\04.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\05.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\050.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\051.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\052.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\053.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\054.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\055.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\056.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\057.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\058.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\059.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\06.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\060.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\061.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\062.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\063.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\064.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\065.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\066.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\067.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\068.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\069.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\07.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\070.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\071.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\072.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\073.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\074.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\075.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\076.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\077.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\079.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\08.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\080.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\081.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\082.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\083.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\084.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\085.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\086.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\087.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\088.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\09.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\091.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\092.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\093.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\094.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\095.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\096.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\097.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0115-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0117-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0119-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0122-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0125-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0127-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0128-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0129-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0131-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0133-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0135-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0137-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0140-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0141-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0143-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0145-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0147-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0149-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0151-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0152-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0154-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0156-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0158-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0160-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0162-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0164-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0166-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0168-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0170-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0172-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0176-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0177-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0178-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0180-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0182-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0183-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0185-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0187-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0189-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0191-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0193-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0195-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0199-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0201-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0203-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0205-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0206-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0207-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0209-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0210-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0211-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0213-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0214-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0215-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0216-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0217-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0218-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0219-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0220-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0221-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0222-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0223-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0224-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0225-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0226-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0227-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0228-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0229-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0230-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0231-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0234-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0235-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0236-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0237-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0238-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0239-0001.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Normal_chestxray\\\\IM-0240-0001.jpeg']}, {'category': 'pneumonia', 'images': ['C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person10_bacteria_43.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person11_bacteria_45.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person12_bacteria_46.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person12_bacteria_47.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person12_bacteria_48.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person13_bacteria_49.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person13_bacteria_50.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person14_bacteria_51.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person15_bacteria_52.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person16_bacteria_53.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person16_bacteria_54.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person16_bacteria_55.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person17_bacteria_56.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person18_bacteria_57.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_58.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_59.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_60.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_61.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_62.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person19_bacteria_63.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person1_bacteria_1.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person1_bacteria_2.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_64.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_66.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_67.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_69.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person20_bacteria_70.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person21_bacteria_72.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person21_bacteria_73.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person22_bacteria_74.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person22_bacteria_76.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person22_bacteria_77.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_100.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_101.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_102.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_103.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_104.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_105.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_106.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_107.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_78.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_79.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_80.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_81.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_82.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_83.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_84.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_85.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_86.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_87.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_88.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_89.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_90.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_91.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_92.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_93.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_94.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_95.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_96.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_97.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_98.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person23_bacteria_99.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_108.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_109.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_110.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_111.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person24_bacteria_112.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_113.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_114.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_115.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_116.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_117.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_118.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_119.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_120.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person25_bacteria_121.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_122.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_123.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_124.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_126.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_127.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_128.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_129.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_130.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_131.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_132.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person26_bacteria_133.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_135.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_136.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_137.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person27_bacteria_138.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_139.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_141.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_142.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person28_bacteria_143.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person29_bacteria_144.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person2_bacteria_3.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person2_bacteria_4.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person30_bacteria_145.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person30_bacteria_146.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person30_bacteria_147.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_10.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_11.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_12.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person3_bacteria_13.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person4_bacteria_14.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_15.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_16.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_17.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person5_bacteria_19.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person6_bacteria_22.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_24.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_25.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_28.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person7_bacteria_29.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person8_bacteria_37.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_38.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_39.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_40.jpeg', 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\train\\\\Pneumonia\\\\person9_bacteria_41.jpeg']}] Train image categories.\n" + ] + } + ], + "source": [ + "print(f\"Loaded {test_images} Test image categories.\")\n", + "print(f\"Loaded {train_images} Train image categories.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "dd253634-c77e-4e6a-90f8-857c75b5a596", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: tensorflow in c:\\users\\sriram\\anaconda3\\lib\\site-packages (2.17.0)\n", + "Requirement already satisfied: tensorflow-intel==2.17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow) (2.17.0)\n", + "Requirement already satisfied: absl-py>=1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.1.0)\n", + "Requirement already satisfied: astunparse>=1.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.6.3)\n", + "Requirement already satisfied: flatbuffers>=24.3.25 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (24.3.25)\n", + "Requirement already satisfied: gast!=0.5.0,!=0.5.1,!=0.5.2,>=0.2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (0.6.0)\n", + "Requirement already satisfied: google-pasta>=0.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (0.2.0)\n", + "Requirement already satisfied: h5py>=3.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.11.0)\n", + "Requirement already satisfied: libclang>=13.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (18.1.1)\n", + "Requirement already satisfied: ml-dtypes<0.5.0,>=0.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (0.3.1)\n", + "Requirement already satisfied: opt-einsum>=2.3.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.3.0)\n", + "Requirement already satisfied: packaging in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (23.2)\n", + "Requirement already satisfied: protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.20.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.20.3)\n", + "Requirement already satisfied: requests<3,>=2.21.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.31.0)\n", + "Requirement already satisfied: setuptools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (69.5.1)\n", + "Requirement already satisfied: six>=1.12.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.16.0)\n", + "Requirement already satisfied: termcolor>=1.1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.4.0)\n", + "Requirement already satisfied: typing-extensions>=3.6.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (4.11.0)\n", + "Requirement already satisfied: wrapt>=1.11.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.14.1)\n", + "Requirement already satisfied: grpcio<2.0,>=1.24.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.65.1)\n", + "Requirement already satisfied: tensorboard<2.18,>=2.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (2.17.0)\n", + "Requirement already satisfied: keras>=3.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (3.4.1)\n", + "Requirement already satisfied: numpy<2.0.0,>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorflow-intel==2.17.0->tensorflow) (1.26.4)\n", + "Requirement already satisfied: wheel<1.0,>=0.23.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from astunparse>=1.6.0->tensorflow-intel==2.17.0->tensorflow) (0.43.0)\n", + "Requirement already satisfied: rich in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (13.3.5)\n", + "Requirement already satisfied: namex in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (0.0.7)\n", + "Requirement already satisfied: optree in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (0.12.1)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<3,>=2.21.0->tensorflow-intel==2.17.0->tensorflow) (2024.7.4)\n", + "Requirement already satisfied: markdown>=2.6.8 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (3.4.1)\n", + "Requirement already satisfied: tensorboard-data-server<0.8.0,>=0.7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (0.7.2)\n", + "Requirement already satisfied: werkzeug>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (3.0.3)\n", + "Requirement already satisfied: MarkupSafe>=2.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from werkzeug>=1.0.1->tensorboard<2.18,>=2.17->tensorflow-intel==2.17.0->tensorflow) (2.1.3)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich->keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich->keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (2.15.1)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich->keras>=3.2.0->tensorflow-intel==2.17.0->tensorflow) (0.1.0)\n", + "Requirement already satisfied: efficientnet in c:\\users\\sriram\\anaconda3\\lib\\site-packages (1.1.1)\n", + "Requirement already satisfied: keras-applications<=1.0.8,>=1.0.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from efficientnet) (1.0.8)\n", + "Requirement already satisfied: scikit-image in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from efficientnet) (0.23.2)\n", + "Requirement already satisfied: numpy>=1.9.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras-applications<=1.0.8,>=1.0.7->efficientnet) (1.26.4)\n", + "Requirement already satisfied: h5py in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from keras-applications<=1.0.8,>=1.0.7->efficientnet) (3.11.0)\n", + "Requirement already satisfied: scipy>=1.9 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (1.13.1)\n", + "Requirement already satisfied: networkx>=2.8 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (3.2.1)\n", + "Requirement already satisfied: pillow>=9.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (10.3.0)\n", + "Requirement already satisfied: imageio>=2.33 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (2.33.1)\n", + "Requirement already satisfied: tifffile>=2022.8.12 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (2023.4.12)\n", + "Requirement already satisfied: packaging>=21 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (23.2)\n", + "Requirement already satisfied: lazy-loader>=0.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from scikit-image->efficientnet) (0.4)\n" + ] + } + ], + "source": [ + "!pip install tensorflow\n", + "!pip install -U efficientnet" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "f056b2ef-bdb0-4f82-b0fe-9a3daa0163c3", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " category image\n", + "0 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "1 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "2 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "3 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "4 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + ".. ... ...\n", + "184 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "185 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "186 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "187 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "188 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "\n", + "[189 rows x 2 columns]\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "flattened_data = []\n", + "for entry in test_images:\n", + " category = entry['category']\n", + " for img in entry['images']:\n", + " flattened_data.append({'category': category, 'image': img})\n", + "\n", + "# Convert to DataFrame\n", + "test_dataset = pd.DataFrame(flattened_data)\n", + "\n", + "# Display the DataFrame\n", + "print(test_dataset)" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "beaa8548-b4c9-4de3-ac14-37a22f2b8062", + "metadata": {}, + "outputs": [], + "source": [ + "test_dataset_f = test_dataset.sample(frac=1).reset_index(drop=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "5b4c6248-259a-4b82-82cf-b67019bb7ab4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " category image\n", + "0 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "1 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "2 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "3 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "4 covid C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + ".. ... ...\n", + "373 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "374 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "375 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "376 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "377 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification...\n", + "\n", + "[378 rows x 2 columns]\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "flattened_data = []\n", + "for entry in train_images:\n", + " category = entry['category']\n", + " for img in entry['images']:\n", + " flattened_data.append({'category': category, 'image': img})\n", + "\n", + "# Convert to DataFrame\n", + "train_dataset = pd.DataFrame(flattened_data)\n", + "\n", + "# Display the DataFrame\n", + "print(train_dataset)" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "9543cc21-a078-4926-ab32-a37164c6df37", + "metadata": {}, + "outputs": [], + "source": [ + "train_dataset_f = train_dataset.sample(frac=1).reset_index(drop=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "c6ecb731-37e2-4d6f-86ac-d166fd1b2288", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Label to Integer Mapping:\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n" + ] + } + ], + "source": [ + "from sklearn.preprocessing import LabelEncoder\n", + "# Initialize the LabelEncoder\n", + "label_encoder = LabelEncoder()\n", + "\n", + "# Fit and transform the 'category' column\n", + "train_dataset_f['category_encoded'] = label_encoder.fit_transform(train_dataset_f['category'])\n", + "\n", + "# Print the DataFrame with encoded labels\n", + "#print(train_dataset_f)\n", + "\n", + "# Retrieve and print the mapping of labels to integers\n", + "classes_tra = label_encoder.classes_\n", + "print(\"Label to Integer Mapping:\")\n", + "for idx, label in enumerate(classes_tra):\n", + " print(f\"{label}: {idx}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "id": "ae819fc2-0bfa-4bd8-94d3-385ac88d4f14", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
categoryimagecategory_encoded
0pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
1pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
2pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
3normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
4pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
............
373covidC:\\Users\\SRIRAM\\Documents\\Image Classification...0
374normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
375pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
376normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
377pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
\n", + "

378 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " category image \\\n", + "0 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "1 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "2 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "3 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "4 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + ".. ... ... \n", + "373 covid C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "374 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "375 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "376 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "377 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "\n", + " category_encoded \n", + "0 2 \n", + "1 2 \n", + "2 2 \n", + "3 1 \n", + "4 2 \n", + ".. ... \n", + "373 0 \n", + "374 1 \n", + "375 2 \n", + "376 1 \n", + "377 2 \n", + "\n", + "[378 rows x 3 columns]" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train_dataset_f" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "847a0963-9f30-4d38-9572-69f7ca5ce822", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Label to Integer Mapping:\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n" + ] + } + ], + "source": [ + "# Initialize the LabelEncoder\n", + "label_encoder = LabelEncoder()\n", + "\n", + "# Fit and transform the 'category' column\n", + "test_dataset_f['category_encoded'] = label_encoder.fit_transform(test_dataset_f['category'])\n", + "\n", + "# Print the DataFrame with encoded labels\n", + "#print(df)\n", + "\n", + "# Retrieve and print the mapping of labels to integers\n", + "classes_tes = label_encoder.classes_\n", + "print(\"Label to Integer Mapping:\")\n", + "for idx, label in enumerate(classes_tes):\n", + " print(f\"{label}: {idx}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "57a86407-d8d9-4d5a-8ce1-9003b790c0f9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
categoryimagecategory_encoded
0pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
1covidC:\\Users\\SRIRAM\\Documents\\Image Classification...0
2normal_chestrayC:\\Users\\SRIRAM\\Documents\\Image Classification...1
3pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
4pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
............
184pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
185pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
186covidC:\\Users\\SRIRAM\\Documents\\Image Classification...0
187pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
188pneumoniaC:\\Users\\SRIRAM\\Documents\\Image Classification...2
\n", + "

189 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " category image \\\n", + "0 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "1 covid C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "2 normal_chestray C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "3 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "4 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + ".. ... ... \n", + "184 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "185 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "186 covid C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "187 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "188 pneumonia C:\\Users\\SRIRAM\\Documents\\Image Classification... \n", + "\n", + " category_encoded \n", + "0 2 \n", + "1 0 \n", + "2 1 \n", + "3 2 \n", + "4 2 \n", + ".. ... \n", + "184 2 \n", + "185 2 \n", + "186 0 \n", + "187 2 \n", + "188 2 \n", + "\n", + "[189 rows x 3 columns]" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_dataset_f" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "262e4f09-f7ab-4539-b8da-9270dfacba16", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found 378 validated image filenames belonging to 3 classes.\n", + "Found 189 validated image filenames belonging to 3 classes.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\keras\\src\\layers\\convolutional\\base_conv.py:107: UserWarning: Do not pass an `input_shape`/`input_dim` argument to a layer. When using Sequential models, prefer using an `Input(shape)` object as the first layer in the model instead.\n", + " super().__init__(activity_regularizer=activity_regularizer, **kwargs)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Epoch 1/10\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\keras\\src\\trainers\\data_adapters\\py_dataset_adapter.py:121: UserWarning: Your `PyDataset` class should call `super().__init__(**kwargs)` in its constructor. `**kwargs` can include `workers`, `use_multiprocessing`, `max_queue_size`. Do not pass these arguments to `fit()`, as they will be ignored.\n", + " self._warn_if_super_not_called()\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m50s\u001b[0m 3s/step - accuracy: 0.3158 - loss: 1.2204 - val_accuracy: 0.2857 - val_loss: 0.6017\n", + "Epoch 2/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.5890 - loss: 0.5441 - val_accuracy: 0.4180 - val_loss: 0.7031\n", + "Epoch 3/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.7783 - loss: 0.3766 - val_accuracy: 0.3968 - val_loss: 1.2036\n", + "Epoch 4/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.7288 - loss: 0.4041 - val_accuracy: 0.4074 - val_loss: 0.9209\n", + "Epoch 5/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.8326 - loss: 0.3062 - val_accuracy: 0.3704 - val_loss: 1.3143\n", + "Epoch 6/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m40s\u001b[0m 2s/step - accuracy: 0.8650 - loss: 0.2402 - val_accuracy: 0.5503 - val_loss: 0.6968\n", + "Epoch 7/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.8697 - loss: 0.2311 - val_accuracy: 0.4550 - val_loss: 0.9919\n", + "Epoch 8/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.8797 - loss: 0.2156 - val_accuracy: 0.3968 - val_loss: 1.7659\n", + "Epoch 9/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m41s\u001b[0m 2s/step - accuracy: 0.8894 - loss: 0.1851 - val_accuracy: 0.4021 - val_loss: 1.7183\n", + "Epoch 10/10\n", + "\u001b[1m12/12\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m39s\u001b[0m 2s/step - accuracy: 0.9005 - loss: 0.1703 - val_accuracy: 0.3862 - val_loss: 1.7062\n", + "\u001b[1m6/6\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m9s\u001b[0m 1s/step - accuracy: 0.4315 - loss: 1.5615\n", + "Validation accuracy: 0.38624337315559387\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from tensorflow.keras.preprocessing.image import ImageDataGenerator\n", + "from tensorflow.keras.models import Sequential\n", + "from tensorflow.keras.layers import Conv2D, MaxPooling2D, Flatten, Dense, Dropout\n", + "\n", + "\n", + "# Label Encoding\n", + "\n", + "# Create ImageDataGenerators\n", + "train_datagen = ImageDataGenerator(\n", + " rescale=1./255, \n", + " rotation_range=20, \n", + " zoom_range=0.2, \n", + " horizontal_flip=True\n", + ")\n", + "\n", + "val_datagen = ImageDataGenerator(rescale=1./255)\n", + "\n", + "# Create data generators using flow_from_dataframe\n", + "train_generator = train_datagen.flow_from_dataframe(\n", + " dataframe=train_dataset_f,\n", + " x_col='image',\n", + " y_col='category',\n", + " target_size=(150, 150),\n", + " batch_size=32,\n", + " class_mode='categorical' # Change to 'categorical' if you have more than 2 classes\n", + ")\n", + "\n", + "val_generator = val_datagen.flow_from_dataframe(\n", + " dataframe=test_dataset_f,\n", + " x_col='image',\n", + " y_col='category',\n", + " target_size=(150, 150),\n", + " batch_size=32,\n", + " class_mode='categorical'\n", + ")\n", + "\n", + "# Model selection and architecture\n", + "model = Sequential([\n", + " Conv2D(32, (3, 3), activation='relu', input_shape=(150, 150, 3)),\n", + " MaxPooling2D((2, 2)),\n", + " Conv2D(64, (3, 3), activation='relu'),\n", + " MaxPooling2D((2, 2)),\n", + " Conv2D(128, (3, 3), activation='relu'),\n", + " MaxPooling2D((2, 2)),\n", + " Flatten(),\n", + " Dense(512, activation='relu'),\n", + " Dropout(0.5),\n", + " Dense(3, activation='sigmoid') # Change to match the number of classes\n", + "])\n", + "\n", + "# Compile and train the model\n", + "model.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])\n", + "\n", + "history = model.fit(train_generator, epochs=10, validation_data=val_generator)\n", + "\n", + "# Evaluate the model\n", + "test_loss, test_acc = model.evaluate(val_generator)\n", + "print('Validation accuracy:', test_acc)\n", + "\n", + "# Save the model\n", + "#model.save('my_model.h5')" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "id": "8fe5fece-675a-44a9-a3bb-8e9c266531ac", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of the preprocessed image: (1, 150, 150, 3)\n", + "\u001b[1m1/1\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m0s\u001b[0m 63ms/step\n", + "Prediction_Classes for different types\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n", + "Predicted array for : 0\n", + "The predicted class is: Covid\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "# Example usage\n", + "image_path_axby = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\covid.jpg'\n", + "\n", + "# Load the image using OpenCV\n", + "image_pred = cv2.imread(image_path_axby)\n", + "\n", + "if image_pred is None:\n", + " print(f\"Error: Unable to load image at {image_path}\")\n", + "else:\n", + " # Resize the image to match the input shape of the model (150x150)\n", + " image_pred = cv2.resize(image_pred, (150, 150))\n", + "\n", + " # Convert the image to a numpy array\n", + " image_pred = np.array(image_pred)\n", + "\n", + " # Rescale the image (if the model was trained with rescaling)\n", + " image_pred = image_pred / 255.0\n", + "\n", + " # Add an extra dimension to match the input shape (1, 150, 150, 3)\n", + " image_pred = np.expand_dims(image_pred, axis=0)\n", + "\n", + " # Print the shape of the preprocessed image\n", + " print(\"Shape of the preprocessed image:\", image_pred.shape)\n", + "\n", + " # Predict using the model\n", + " prediction = model.predict(image_pred)\n", + " \n", + " # Example prediction output\n", + " prediction = np.array(prediction)\n", + "\n", + " print(f\"Prediction_Classes for different types\\ncovid: 0\\nnormal_chestray: 1\\npneumonia: 2\")\n", + " \n", + " # Get the predicted class\n", + " predicted_ = np.argmax(prediction)\n", + "\n", + "\n", + " print(f\"Predicted array for : {predicted_}\")\n", + "\n", + " # Decode the prediction\n", + " if predicted_ == 0:\n", + " predicted_class= \"Covid\"\n", + " elif predicted_ == 1:\n", + " predicted_class= \"Normal_chestray\"\n", + " else:\n", + " predicted_class= \"Pneumonia\"\n", + "\n", + " # Print the predicted class\n", + " print(f'The predicted class is: {predicted_class}')\n", + " #print(prediction)" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "id": "26c0bc32-1ba8-4949-ad72-70a335bcc0a8", + "metadata": {}, + "outputs": [], + "source": [ + "model.save('FINAL_MODEL.keras')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "93e77d2e-2d4d-469d-9dcb-dc92323e2024", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of the preprocessed image: (1, 150, 150, 3)\n", + "\u001b[1m1/1\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m0s\u001b[0m 54ms/step\n", + "Prediction_Classes for different types\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n", + "Predicted array for : 1\n", + "The predicted class is: Normal_chestray\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "# Example usage\n", + "image_path_axby_o = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\0103.jpeg'\n", + "\n", + "\n", + "# Load the image using OpenCV\n", + "image_pred = cv2.imread(image_path_axby_o)\n", + "\n", + "if image_pred is None:\n", + " print(f\"Error: Unable to load image at {image_path}\")\n", + "else:\n", + " # Resize the image to match the input shape of the model (150x150)\n", + " image_pred = cv2.resize(image_pred, (150, 150))\n", + "\n", + " # Convert the image to a numpy array\n", + " image_pred = np.array(image_pred)\n", + "\n", + " # Rescale the image (if the model was trained with rescaling)\n", + " image_pred = image_pred / 255.0\n", + "\n", + " # Add an extra dimension to match the input shape (1, 150, 150, 3)\n", + " image_pred = np.expand_dims(image_pred, axis=0)\n", + "\n", + " # Print the shape of the preprocessed image\n", + " print(\"Shape of the preprocessed image:\", image_pred.shape)\n", + "\n", + " # Predict using the model\n", + " prediction = model.predict(image_pred)\n", + " \n", + " # Example prediction output\n", + " prediction = np.array(prediction)\n", + "\n", + " print(f\"Prediction_Classes for different types\\ncovid: 0\\nnormal_chestray: 1\\npneumonia: 2\")\n", + " \n", + " # Get the predicted class\n", + " predicted_ = np.argmax(prediction)\n", + "\n", + "\n", + " print(f\"Predicted array for : {predicted_}\")\n", + "\n", + " # Decode the prediction\n", + " if predicted_ == 0:\n", + " predicted_class= \"Covid\"\n", + " elif predicted_ == 1:\n", + " predicted_class= \"Normal_chestray\"\n", + " else:\n", + " predicted_class= \"Pneumonia\"\n", + "\n", + " # Print the predicted class\n", + " print(f'The predicted class is: {predicted_class}')\n", + " #print(prediction)" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "7da46192-e124-459c-800e-e84d4cca07b1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shape of the preprocessed image: (1, 150, 150, 3)\n", + "\u001b[1m1/1\u001b[0m \u001b[32mâ”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”\u001b[0m\u001b[37m\u001b[0m \u001b[1m0s\u001b[0m 65ms/step\n", + "Prediction_Classes for different types\n", + "covid: 0\n", + "normal_chestray: 1\n", + "pneumonia: 2\n", + "Predicted array for : 0\n", + "The predicted class is: Covid\n" + ] + } + ], + "source": [ + "# Example usage\n", + "image_path_axby_o = 'C:\\\\Users\\\\SRIRAM\\\\Documents\\\\Image Classification\\\\covid_from_website.png'\n", + "\n", + "\n", + "# Load the image using OpenCV\n", + "image_pred = cv2.imread(image_path_axby_o)\n", + "\n", + "if image_pred is None:\n", + " print(f\"Error: Unable to load image at {image_path}\")\n", + "else:\n", + " # Resize the image to match the input shape of the model (150x150)\n", + " image_pred = cv2.resize(image_pred, (150, 150))\n", + "\n", + " # Convert the image to a numpy array\n", + " image_pred = np.array(image_pred)\n", + "\n", + " # Rescale the image (if the model was trained with rescaling)\n", + " image_pred = image_pred / 255.0\n", + "\n", + " # Add an extra dimension to match the input shape (1, 150, 150, 3)\n", + " image_pred = np.expand_dims(image_pred, axis=0)\n", + "\n", + " # Print the shape of the preprocessed image\n", + " print(\"Shape of the preprocessed image:\", image_pred.shape)\n", + "\n", + " # Predict using the model\n", + " prediction = model.predict(image_pred)\n", + " \n", + " # Example prediction output\n", + " prediction = np.array(prediction)\n", + "\n", + " print(f\"Prediction_Classes for different types\\ncovid: 0\\nnormal_chestray: 1\\npneumonia: 2\")\n", + " \n", + " # Get the predicted class\n", + " predicted_ = np.argmax(prediction)\n", + "\n", + "\n", + " print(f\"Predicted array for : {predicted_}\")\n", + "\n", + " # Decode the prediction\n", + " if predicted_ == 0:\n", + " predicted_class= \"Covid\"\n", + " elif predicted_ == 1:\n", + " predicted_class= \"Normal_chestray\"\n", + " else:\n", + " predicted_class= \"Pneumonia\"\n", + "\n", + " # Print the predicted class\n", + " print(f'The predicted class is: {predicted_class}')\n", + " #print(prediction)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c3f8c986-d186-48de-8f99-9b2b3b73d035", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "62f10b4c-eec4-4cde-a973-ae95582987ab", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "01d80481-0b8b-4827-983e-1692e3483416", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/frontend/FINAL_MODEL.keras b/frontend/FINAL_MODEL.keras new file mode 100644 index 0000000000000000000000000000000000000000..ad52e20f6f37b3a3d45e01c60b71450acc755887 --- /dev/null +++ b/frontend/FINAL_MODEL.keras @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff0eafd711bccd941d3cca9bff29202c4b4e40a4ef2d814986137d997ccfd13 +size 228465191 diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000000000000000000000000000000000000..829a10e0f0ff715a3ac85eede31cf6b90fa7d6aa --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,42 @@ +# Healthcare System Dashboard - Streamlit Frontend + +This is the frontend for our Healthcare System Dashboard, built using Streamlit. + +## Demo + +A live demo of the application is available at: https://healthcare-ai-falcon-hackathon.streamlit.app/ + + +## Setup + +1. Install required packages: + ``` + pip install streamlit requests python-dotenv ai71 + ``` + +2. Set up your environment variables: + Create a `.env` file in the same directory as your `app.py` with the following content: + ``` + AI71_API_KEY=your_api_key_here + ``` + +3. Run the Streamlit app: + ``` + streamlit run app.py + ``` + +## Features + +- Home page with AI71-powered chat interface +- AI Chatbot Diagnosis page +- Drug Identification page +- Outbreak Alert page + +## Usage + +- Navigate to the Home tab to interact with the AI71 chatbot. +- Use the sidebar to switch between different features. + +## Note + +Ensure that your Django backend is running on `http://localhost:8000` for the API calls to work correctly. \ No newline at end of file diff --git a/frontend/Symptoms_Detection/LLMs_chatbot.ipynb b/frontend/Symptoms_Detection/LLMs_chatbot.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..4497dfddf5c339a1bc4d89c441f5055de9948088 --- /dev/null +++ b/frontend/Symptoms_Detection/LLMs_chatbot.ipynb @@ -0,0 +1,353 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 15, + "id": "583798df-96c2-4e10-b31b-739f380a2826", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "f050d62d-03c4-4900-898b-a0ed65e8e124", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
itchingskin_rashnodal_skin_eruptionscontinuous_sneezingshiveringchillsjoint_painstomach_painacidityulcers_on_tongue...scurringskin_peelingsilver_like_dustingsmall_dents_in_nailsinflammatory_nailsblisterred_sore_around_noseyellow_crust_oozeprognosisUnnamed: 133
01110000000...00000000Fungal infectionNaN
10110000000...00000000Fungal infectionNaN
21010000000...00000000Fungal infectionNaN
31100000000...00000000Fungal infectionNaN
41110000000...00000000Fungal infectionNaN
..................................................................
49150000000000...00000000(vertigo) Paroymsal Positional VertigoNaN
49160100000000...10000000AcneNaN
49170000000000...00000000Urinary tract infectionNaN
49180100001000...01111000PsoriasisNaN
49190100000000...00000111ImpetigoNaN
\n", + "

4920 rows × 134 columns

\n", + "
" + ], + "text/plain": [ + " itching skin_rash nodal_skin_eruptions continuous_sneezing \\\n", + "0 1 1 1 0 \n", + "1 0 1 1 0 \n", + "2 1 0 1 0 \n", + "3 1 1 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "4915 0 0 0 0 \n", + "4916 0 1 0 0 \n", + "4917 0 0 0 0 \n", + "4918 0 1 0 0 \n", + "4919 0 1 0 0 \n", + "\n", + " shivering chills joint_pain stomach_pain acidity ulcers_on_tongue \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 \n", + "... ... ... ... ... ... ... \n", \ No newline at end of file diff --git a/frontend/Symptoms_Detection/Symptom2Disease.csv b/frontend/Symptoms_Detection/Symptom2Disease.csv new file mode 100644 index 0000000000000000000000000000000000000000..474d1bf691d44fcec72cfdf4205af982a8edf3b2 --- /dev/null +++ b/frontend/Symptoms_Detection/Symptom2Disease.csv @@ -0,0 +1,1201 @@ +,label,text +0,Psoriasis,"I have been experiencing a skin rash on my arms, legs, and torso for the past few weeks. It is red, itchy, and covered in dry, scaly patches." +1,Psoriasis,"My skin has been peeling, especially on my knees, elbows, and scalp. This peeling is often accompanied by a burning or stinging sensation." +2,Psoriasis,"I have been experiencing joint pain in my fingers, wrists, and knees. The pain is often achy and throbbing, and it gets worse when I move my joints." +3,Psoriasis,"There is a silver like dusting on my skin, especially on my lower back and scalp. This dusting is made up of small scales that flake off easily when I scratch them." +4,Psoriasis,"My nails have small dents or pits in them, and they often feel inflammatory and tender to the touch. Even there are minor rashes on my arms." +5,Psoriasis,The skin on my palms and soles is thickened and has deep cracks. These cracks are painful and bleed easily. +6,Psoriasis,"The skin around my mouth, nose, and eyes is red and inflamed. It is often itchy and uncomfortable. There is a noticeable inflammation in my nails." +7,Psoriasis,My skin is very sensitive and reacts easily to changes in temperature or humidity. I often have to be careful about what products I use on my skin. +8,Psoriasis,"I have noticed a sudden peeling of skin at different parts of my body, mainly arms, legs and back. Also, I face severe joint pain and skin rashes." +9,Psoriasis,"The skin on my genitals is red and inflamed. It is often itchy, burning, and uncomfortable. There are rashes on different parts of the body too." +10,Psoriasis,"I have experienced fatigue and a general feeling of malaise. I often feel tired and have a lack of energy, even after a good night's sleep." +11,Psoriasis,"The rash on my skin has spread to other parts of my body, including my chest and abdomen. It is itchy and uncomfortable, and it is often worse at night. I am also facing skin peeling." +12,Psoriasis,The rash on my skin is worse in the winter months when the air is dry. I find that I have to moisturize more frequently and use humidifiers to keep my skin hydrated. +13,Psoriasis,"I have experienced difficulty sleeping due to the itching and discomfort caused by the rash. There are small dents in my nails, which is really concerning." +14,Psoriasis,"My skin is prone to infections due to dry, flaky patches. I am experiencing a strong pain in my joints. The skin on my knees and elbows is starting to peel off." +15,Psoriasis,"I am starting to have rashes on my skin. The rash often bleeds when I scratch or rub it. Moreover, I have noticed small dents in my nails." +16,Psoriasis,"I have noticed that my skin has become more sensitive than it used to be. There is a silver like dusting on my skin, especially on my back and elbows." +17,Psoriasis,"I am worried about the constant peeling of the skin on my palm, elbow and knee. I have developed rashes on my arms, which itch if I touch them. All of these are making my life quite discomforting and miserable." +18,Psoriasis,"There is strange pain in my joints. Also, I have noticed strange peeling of skin in different parts of my body. I am afraid there is something wrong going on with my body." +19,Psoriasis,"My nails have small dents on them. Even my joints have started to pain severely. There is a silver like dusting on my skin, particularly in my back." +20,Psoriasis,"The rashes on my skin are not healing. Moreover, I have noticed a sudden peeling of the skin, especially the skin on my elbows and knees. I am really worried about this." +21,Psoriasis,"For the past few weeks, I've had a skin rash on my arms, legs, and chest. It's red and irritating, with dry, scaly spots. I have a strange pain in my joints too." +22,Psoriasis,"My skin is peeling, particularly on my knees, elbows, and scalp. This peeling is frequently accompanied by a stinging or burning feeling." +23,Psoriasis,"I'm having joint discomfort in my fingers, wrists, and knees. The pain is frequently aching and throbbing, and it worsens when I move my joints." +24,Psoriasis,"My skin has a silvery film, particularly on my back, arms and scalp. This dusting is composed of tiny scales that easily peel off when scratched." +25,Psoriasis,"I have red and inflammatory skin around my mouth, nose, and eyes. It is frequently irritating and unpleasant. Recently, it has got very painful." +26,Psoriasis,My skin is extremely sensitive and quickly irritated by changes in temperature or humidity. My nails have developed dents on them. I am worried about this sudden change. +27,Psoriasis,"I've seen a sudden peeling of skin on various regions of my body, mostly my arms, legs, and back. In addition, I have significant joint pain and skin rashes. The rash is spreading to different parts of my body." +28,Psoriasis,"My genital skin is red and irritated. It is frequently irritating, burning, and unpleasant. There are also rashes in various places of the body. Also, I have a strange pain in my joints." +29,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. There is a noticeable inflammation in my nails." +30,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in excruciating agony. The skin on my knees and elbows is beginning to flake." +31,Psoriasis,"My skin is breaking out in rashes. When I scratch or rub the rash, it frequently bleeds. In addition, I've observed little dents in my nails. There is a noticeable inflammation in my nails." +32,Psoriasis,"I've observed that my skin is more sensitive now than it used to be. My skin has a silvery film, especially on my back and elbows." +33,Psoriasis,"My palms and soles have grown and developed severe fissures. These cracks are unpleasant and frequently bleed. Also, the skin is starting to peel off." +34,Psoriasis,"My nails are starting to have small pits on them. I am worried and don't know what is causing it. Also, my joints pain and there are rashes on my arms and back." +35,Psoriasis,"There is a silver like dusting on my skin. Moreover, the skin on my arms and back are starting to peel off. This is strange and really concerning me." +36,Psoriasis,"My skin rash has extended to other areas of my body, including my chest and belly. It is irritating and unpleasant, and it is frequently worst at night. I'm also experiencing skin flaking." +37,Psoriasis,"My skin rash gets worse in the winter when the air is dry. To keep my skin moisturized, I have to moisturize more regularly and use humidifiers. I am also facing joint pain." +38,Psoriasis,I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents. I am also experiencing skin peeling in different parts of my body. +39,Psoriasis,"My skin is peeling in places, especially on my knees, elbows, and arms. This peeling is often accompanied by a painful or burning sensation. I am also developing small dents on my nails, which is really concerning." +40,Psoriasis,"My skin has a silvery layer over it, especially on my back and arms. This dusting is made up of small scales that peel off readily when rubbed. Also, there are rashes all over my body." +41,Psoriasis,"My arms, face and back are all red and irritated. It is frequently irritating and unpleasant. My nails have a strange inflammation and have developed small dents. I have never seen anything like this." +42,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. Moreover, my joints pain everyday and I have no idea what is causing it." +43,Psoriasis,My fingers and soles have pretty thick skin that is cracked severely. These fractures hurt and bleed frequently. The fractures are itchy and covered with scales. +44,Psoriasis,"My skin has changed from being less sensitive to being more sensitive. My skin has a silvery coating, especially on my back, elbows and knees." +45,Psoriasis,"My nails are slightly dented. Even my joints are now experiencing excruciating discomfort. My skin has a silver-like powder, especially on my back and elbows. " +46,Psoriasis,"I've had trouble falling asleep because of the rash's pain and itching. The skin on my fingers are starting to peel off. My nails have a few tiny cracks, which is really worrying. " +47,Psoriasis,"My joints are experiencing an unusual discomfort. Additionally, I've experienced weird skin peeling in various places on my body. I'm concerned that something is wrong with my body. " +48,Psoriasis,"I am starting to have rashes on my arms and neck. The rash often bleeds and hurts when I scratch it. I have also developed small dents in my nails, which is very strange." +49,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in extreme pain . My knees and elbows' skin are starting to peel off." +50,Varicose Veins,"I have a rash on my legs that is causing a lot of discomforts. It seems there is a cramp and I can see prominent veins on the calf. Also, I have been feeling very tired and fatigued in the past couple of days." +51,Varicose Veins,"My calves have been cramping up when I walk or stand for long periods of time. There are bruise marks on my calves, which is making me worried. I feel tired very soon." +52,Varicose Veins,"There is bruising on my legs that I cannot explain. I can see strange blood vessels below the skin. Also, I am slightly obese and I am really worried." +53,Varicose Veins,I am overweight and have noticed that my legs are swollen and the blood vessels are visible. My legs have swollen and I can see a stream of swollen veins on my calves. +54,Varicose Veins,"The veins on my calves have become very prominent and causing discomfort. I can't stand for long periods of time, as it causes pain in my legs, similar to cramps." +55,Varicose Veins,The skin around the veins on my legs is red and inflamed. I believe I can see some of the swollen blood vessels. I am really worried about it. +56,Varicose Veins,Standing or walking for long periods of time causes a lot of pain in my legs. I get cramps upon doing physical activities. There are bruise marks on my legs too. +57,Varicose Veins,The cramps in my calves are making it difficult for me to walk. I feel fatigued after working for some time. I believe obesity is the reason behind this. +58,Varicose Veins,"The swelling in my legs has gotten worse over the past few weeks. Now, a large number of veins are noticeable on my calves, which is making me worried." +59,Varicose Veins,The veins on my legs are very noticeable and cause me discomfort. It seems like there is a major bruise and I get cramps when I run. +60,Varicose Veins,The skin on my calves has become inflamed and red. My legs hurt if I try to run or do any physical activities. +61,Varicose Veins,"Recently, the pain in my calves has been constant and becomes worse when I stand or walk for long periods of time. My legs have started to swell and also some blood vessels are quite noticeable." +62,Varicose Veins,The veins in my legs are causing discomfort and difficulty sleeping at night. I have no idea why it is happening. I get cramps when I sprint. +63,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes. I can't sprint or stand for long periods of time. I can see some swollen blood vessels. +64,Varicose Veins,I have noticed cramps in my calves are becoming more frequent and intense. It is causing me a lot of discomforts. I am also overweight and my legs have started to swell. +65,Varicose Veins,The veins on my legs cause a lot of discomforts when I sit for long periods of time. +66,Varicose Veins,The rash on my legs is spreading and becoming more severe. It has become very difficult for me to run. +67,Varicose Veins,My legs are causing a lot of discomforts when I exercise. I get frequent cramps and the blood vessels have become quite noticeable. +68,Varicose Veins,The prominent blood vessels on my calves are causing self-consciousness and embarrassment. I believe the problem is because of my overweight. +69,Varicose Veins,The skin around the veins on my legs is dry and flaky. It seems there is a major bruise and my legs have started to swell. +70,Varicose Veins,I have been experiencing a rash on my legs that is causing a lot of irritation and discomfort. It is red and inflamed and appears to be spreading. +71,Varicose Veins,"Recently, my calves have been cramping up frequently, especially when I am walking or standing for long periods of time. Also, the veins are very noticeable." +72,Varicose Veins,I have noticed that there are bruises on my legs that I cannot explain. They are not painful but are concerning to me. +73,Varicose Veins,"As I am overweight, I have noticed that my legs are swollen and the blood vessels are more visible than usual. The swelling seems to be getting worse over time." +74,Varicose Veins,The veins on my calves are very prominent and are causing me a lot of discomforts. They are swollen and protrude from my skin. +75,Varicose Veins,"The skin around the veins on my legs is red, inflamed, and itchy. It is causing a lot of discomforts and I am starting to get regular cramps." +76,Varicose Veins,Standing or walking for long periods of time has been causing a lot of pain in my legs. It feels like a cramp and becomes worse the longer I am on my feet. +77,Varicose Veins,The cramps in my calves have been making it difficult for me to walk and do my daily activities. They come on suddenly and last for several minutes. +78,Varicose Veins,The swelling in my legs has gotten worse over the past few weeks and is causing me difficulty fitting into my shoes. It is also causing discomfort when I sit for long periods of time. +79,Varicose Veins,"The veins on my legs are very noticeable and are causing me a lot of discomforts. They are swollen and protrude from my skin, making them visible through my clothing." +80,Varicose Veins,"The skin on my calves is itchy and inflamed, causing a lot of discomfort and difficulty sleeping at night. The blood vessels have started to protrude out, which is concerning." +81,Varicose Veins,The pain in my calves is constant and becomes worse when I stand or walk for long periods of time. I am getting constant cramps and can't run for longer periods of time. +82,Varicose Veins,"The veins in my legs are causing discomfort and difficulty sleeping at night. They are swollen and protruding from my skin, making them noticeable and painful." +83,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes and is causing discomfort when I sit for long periods of time. +84,Varicose Veins,"The cramps in my calves are becoming more frequent and intense, making it difficult for me to walk and do my daily activities." +85,Varicose Veins,"The veins on my legs are causing a lot of discomforts when I sit for long periods of time. They are swollen and protruding from my skin, making them painful and noticeable." +86,Varicose Veins,"The rash on my legs is spreading and becoming more severe. It is red, inflamed, and itchy, causing a lot of discomfort and difficulty sleeping at night." +87,Varicose Veins,"My legs have been causing a lot of discomforts when I exercise. They feel heavy and swollen, and the veins are prominent and painful. I feel fatigued all the time." +88,Varicose Veins,"The prominent veins on my calves are causing self-consciousness and embarrassment. They are swollen and protrude from my skin, making them very noticeable." +89,Varicose Veins,"The skin around the veins on my legs is dry and flaky, causing discomfort and irritation. I am also starting to get frequent cramps." +90,Varicose Veins,"I have a rash on my legs that is giving me a lot of pain. There appears to be a cramp, and I can see visible veins on the calf." +91,Varicose Veins,My veins of legs have become more visible and swollen than normal. They are visible through my skin and it hurts when I move. +92,Varicose Veins,"Walking is tough for me because of cramps in my calves. Obesity, I believe, is the cause of this. After a while of working, I'm exhausted." +93,Varicose Veins,The blood vessels on my legs are quite visible and give me a lot of pain. They're large and protrude from my skin. It is unusual and I am worried about it. +94,Varicose Veins,"I have noticed that the blood vessels in my legs are getting more noticeable than usual. It is a little concerning to me. Moreover, I am experiencing cramps every day." +95,Varicose Veins,My legs' swelling has become worse over the last couple of days. I can see the blood vessels protruding out of the skin. This is quite unusual. +96,Varicose Veins,Long durations of standing or walking have caused severe discomfort in my legs. It's a burning ache that gets worse the longer I'm on my feet. +97,Varicose Veins,"My legs' skin around the veins is unusual. There appears to be a large bruise. Nowadays, I get frequent cramps when I sprint or run." +98,Varicose Veins,"I am experiencing too many cramps in the last couple of days. I think something is not right. I believe there is a small bruise on my calves, but I am not sure about it." +99,Varicose Veins,"The veins in my calves are protruding out quite unusually. I am worried about it. Also, I am overweight and I believe this is the reason behind all of this." +100,Typhoid,"I have constipation and belly pain, and it's been really uncomfortable. The belly pain has been getting worse and is starting to affect my daily life. Moreover, I get chills every night, followed by a mild fever." +101,Typhoid,"I've also had some diarrhea, which has been really unpleasant. It's been coming and going, and it's been accompanied by abdominal cramps and bloating." +102,Typhoid,"I have been experiencing chills and fever, along with severe abdominal pain. I've been feeling really miserable overall, and I just can't seem to shake these symptoms." +103,Typhoid,I've been having a lot of trouble keeping hydrated because of the vomiting and diarrhea. There is a mild fever along with constipation and headache. +104,Typhoid,"I've lost a lot of weight in the past week because I haven't been able to eat much due to nausea and vomiting. This is followed by mild fever, headache and belly pain. I'm really concerned about my health." +105,Typhoid,"The fatigue has been really uncomfortable, and I've had a lot of difficulties doing my usual activities. I've also been feeling really depressed and irritable. There is mild pain in the abdominal part too." +106,Typhoid,"I've had a persistent headache for the past week, and it's been getting worse. It's been accompanied by belly aches, constipation and diarrhea." +107,Typhoid,"I've been experiencing high fever, especially at night. It's been really uncomfortable. There is a mild headache along with constipation and diarrhea." +108,Typhoid,"I've been having a lot of difficulty breathing, and I feel like I'm constantly nauseous. I also have mild belly pain. It's been terrifying at times." +109,Typhoid,"Diarrhea has been really watery and foul-smelling, and it's been accompanied by abdominal pain. I feel like vomiting most of the time." +110,Typhoid,"I've been having a lot of trouble sleeping because of the high fever, headache and chills. I wake up every day having a terrible pain in my belly area." +111,Typhoid,"I've also been experiencing some diarrhea and constipation, which has been really worrying. It feels like a sharp, stabbing pain in my belly area. I feel tired all the time." +112,Typhoid,"I have had some constipation and belly pain, which has been really uncomfortable. The pain has been getting worse and it's really affecting my daily life." +113,Typhoid,"I am experiencing a lot of belly pain and constipation, which has been really annoying. Sometimes, I feel a strong urge to vomit, and because of all of these, I am feeling very weak." +114,Typhoid,"The abdominal pain has been coming and going, and it's been really unpleasant. It's been accompanied by constipation and vomiting. I feel really concerned about my health." +115,Typhoid,"I have been experiencing a lot of bloating and constipation, and it's been really uncomfortable. It feels like there's a lot of pressure and pain in my belly area." +116,Typhoid,"I am experiencing extreme belly pain and constipation. Every night, I have a severe fever along with chills and headaches. The last couple of days has been really uncomfortable." +117,Typhoid,"I've been feeling exhausted and weak, and I can't seem to get rid of it. Because of the vomiting and nausea, I've entirely lost my appetite. My belly pains which are causing me concern." +118,Typhoid,"I am experiencing constipation and stomach ache, which has been really difficult. The discomfort has gotten worse, and it is seriously interfering with my everyday life." +119,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. I have a high fever, as well as constipation and headache." +120,Typhoid,The abdominal pain has been frequent and really painful. Constipation and vomiting have also occurred. I'm quite worried about my health. +121,Typhoid,"I'm having severe stomach pain and constipation. Every night, I get a headache and chills. The last few days have been really painful." +122,Typhoid,There is a distinct pain in my abdominal part. I am not sure what it is. I am also going through constant vomiting and feel nauseous. +123,Typhoid,"The diarrhea has been quite fluid and smelly, and it has been accompanied by severe abdominal pain and headache. Most of the time, I feel like vomiting." +124,Typhoid,"I have had a fever for the last couple of days. Now, I am starting to experience a severe pain in my stomach area and suffering from constipation." +125,Typhoid,"I am experiencing a lot of nausea and vomiting, and it's been quite difficult for me to eat anything. I've entirely lost my appetite, and as a result, I have become quite weak." +126,Typhoid,"I am having a lot of trouble sleeping because of the high fever and the headache. Moreover, I have constant belly pain, because of which I can't go to work." +127,Typhoid,"I have been feeling really fatigued and weak, and I can't seem to get rid of it. I have a mild fever and a strange pain in my abdominal area. I can't understand what is happening." +128,Typhoid,"I've been suffering from constipation and stomach discomfort, which has been really uncomfortable. Last night, I had a mild fever too." +129,Typhoid,"I've also been suffering from diarrhea, which has been really uncomfortable. It comes and goes, and it's accompanied by stomach aches and vomiting." +130,Typhoid,"I've been experiencing chills, fever, and extreme stomach discomfort. I've been generally unhappy, and I can't seem to get rid of these symptoms." +131,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. There is a mild fever, too, as well as stomach pain." +132,Typhoid,"I have developed diarrhea. It is accompanied by severe pain in my belly area. I don't feel like eating anything, and most of the time, I have a mild headache." +133,Typhoid,"I've had a lot of bloating and constipation, which has been really painful. There is a lot of pressure and pain in my stomach area. I get a high fever and chills every night." +134,Typhoid,"I've had a persistent stomach pain for the past week, and it is not healing even with medication. I feel like vomiting and can't eat anything, and because of which I have become extremely weak." +135,Typhoid,I am having severe stomach discomfort and diarrhoea. I have a high fever along with a headache. The previous several days have been really unpleasant. +136,Typhoid,"I am having a terrible pain in my abdominal part, and I've been feeling really nauseated. I'm also experiencing a mild fever. I am really worried." +137,Typhoid,"I am experiencing constipation and stomach ache. The discomfort has gotten worse, and it is seriously interfering with my everyday life. I feel like I have lost my appetite to eat anything." +138,Typhoid,"Most of the time I feel fatigued. I don't want to eat anything. I get a high fever and chills every night. Moreover, I have been vomiting since yesterday." +139,Typhoid,"I have lost my appetite and have noticed a significant weight loss. I have abdominal pain, especially in the area of my stomach and intestines. I am concerned about my health." +140,Typhoid,The stomach discomfort has been severe and frequent. Vomiting and constipation have also happened. I'm concerned about my health. +141,Typhoid,"I have been experiencing diarrhea and have had loose, watery stools several times a day. I have lost my appetite and feel nauseated all the time. I am starting to get a mild fever too." +142,Typhoid,"I am feeling quite weak. I'm having a lot of stomach discomfort and constipation, which is really bothering me. I have a strong urge to vomit at times, and as a result, I can't eat anything." +143,Typhoid,"There is strange pain in my stomach area. I don't know what the reason behind this is. Moreover, I am starting to get a mild fever along with chills and headaches." +144,Typhoid,"I've had a high fever, particularly at night. It's been quite unpleasant. There is a little headache, as well as constipation and diarrhea. I don't feel like eating anything." +145,Typhoid,"I've been having a lot of trouble staying hydrated because of the vomiting and diarrhea. I have a high fever, constipation, and a headache. I am also starting to get a strange pain in my stomach area and I can't do anything physical." +146,Typhoid,"I have been getting a headache for the past week that has been growing worse. It has been accompanied by stomach pains, constipation, and diarrhea. I don't know what is happening and I am really worried about it." +147,Typhoid,"I've lost a lot of weight in the last week because I couldn't eat much due to nausea and vomiting. This is followed by a high fever, headache, and stomach pain." +148,Typhoid,"I am having some diarrhea and constipation, which has been quite concerning. In my stomach, there is a severe, painful ache. I'm constantly exhausted and don't feel like eating anything." +149,Typhoid,"I've been having diarrhoea and loose, watery stools many times a day. I've lost my appetite and am always sick. I'm also developing a mild fever. Also, my abdominal part pains a lot. I don't know what the reason behind all of these is." +150,Chicken pox,"I've been experiencing intense itching all over my skin, and it's driving me crazy. I also have a rash that's red and inflamed." +151,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself." +152,Chicken pox,"I've had a high fever for the past few days. I don't know what's causing it. Also, I noticed rashes on my skin and it's hard for me to resist scratching." +153,Chicken pox,I've lost my appetite and can't seem to eat anything. I'm worried about my health. +154,Chicken pox,There are small red spots all over my body that I can't explain. It's worrying me. I feel extremely tired and experience a mild fever every night. +155,Chicken pox,"My lymph nodes are swollen, causing discomfort in my neck and armpits. I don't know what's causing it." +156,Chicken pox,"I'm feeling really sick and uncomfortable like something is wrong inside. I don't know what it could be. I noticed small red spots on my arms, which itches if I touch them." +157,Chicken pox,The itching is making it hard for me to sleep at night. I can't get any rest. I have also lost my appetite and feel lethargic. +158,Chicken pox,"I'm worried about this rash on my skin. It's spreading rapidly and causing a lot of discomforts. I can hardly sleep at night because of the itching," +159,Chicken pox,I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. +160,Chicken pox,"I have a skin rash that's red and inflamed, and it's spreading all over my body. I've been experiencing intense itching, especially on my arms and legs." +161,Chicken pox,"I've had a high fever for the past few days, and it's starting to worry me. I don't know what's causing it. Also, I have red spots all over my arms and legs, some of which are swollen." +162,Chicken pox,"I have a skin rash that's red and swollen, and it's spreading all over my body. I have a mild fever and it is causing me a lot of discomforts." +163,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself." +164,Chicken pox,There are small red spots all over my body that I can't explain. The bumps are itchy and uncomfortable and seem to spread rapidly. It's worrying me. +165,Chicken pox,The itching is making it hard for me to sleep at night. I can't seem to get any rest because the rash is so itchy and uncomfortable. I'm feeling really tired and exhausted. +166,Chicken pox,I have no energy and have lost my appetite. I have a high fever and severe headache and don't know what's wrong. +167,Chicken pox,The high fever and swollen lymph nodes are causing me much discomfort. I have a headache and feel weak and fatigued. It's hard for me to concentrate because of the fever. +168,Chicken pox,"The rash on my skin is causing a lot of discomforts. It's red and inflamed, spreading all over my body. The rash is accompanied by intense itching, especially on my arms and legs." +169,Chicken pox,"There are red spots all over my body that I can't explain. The spots are itchy and starting to swell, and they are spreading rapidly." +170,Chicken pox,I have small lymph nodes on my arms and face. The itching is making my day very uncomfortable. +171,Chicken pox,"I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. Also, there are small red spots starting to show on my skin." +172,Chicken pox,"I've had a mild fever for the past few days, and it's starting to worry me. The fever has been accompanied by a severe headache. I feel weak and lethargic." +173,Chicken pox,"I have swollen lymph nodes and red spots all over my body, and they are causing discomfort. I also have a mild fever and feel tired most of the time." +174,Chicken pox,"I've been suffering from severe itching all over my body, and it's driving me insane. I also have a red and irritating rash." +175,Chicken pox,"I have seen rashes on my skin, and it's difficult for me not to scratch. Also, I've had a high fever for several days. I'm not sure what's causing it." +176,Chicken pox,"I have little red spots all over my body that I don't understand. It worries me. I have lost my appetite and every night, I am exhausted and have a severe headache." +177,Chicken pox,"I'm feeling really sick and lost my appetite. I've seen little red patches on my arms, neck and face that itch when I touch them." +178,Chicken pox,I have red spots on my arms and legs and itching them makes it difficult for me to sleep at night. I also have severe headaches and a mild fever. +179,Chicken pox,Enlarged lymph nodes are giving me a great deal of pain. I have rashes all over my body and because of which I cannot sleep all night. +180,Chicken pox,"My skin rash is giving me a lot of pain and discomfort. It's red and swollen, and it's spreading throughout my body." +181,Chicken pox,I have a high fever and a mild headache. I'm tired most of the time and completely lost my appetite. +182,Chicken pox,"My arms and face have small lymph nodes, which are starting to swell. My day has been made really miserable by the constant itching and pain." +183,Chicken pox,"My arms and neck have large lymph nodes, which itch when I touch them. The itching has made my day extremely uncomfortable." +184,Chicken pox,"My skin rash is causing me a great deal of pain. There are also small red spots developing near my neck. Since yesterday, I have had a severe fever, headache and fatigue." +185,Chicken pox,"I am starting to develop tiny red spots all over my face and neck area, and it itches when I touch them. The itching is making my day very uncomfortable." +186,Chicken pox,"I have lost my appetite completely and can't seem to eat anything. I feel like vomiting and feel exhausted. I noticed rashes on my skin, which is really concerning me." +187,Chicken pox,I have a high fever and a severe headache. I can't seem to eat anything and feel like vomiting. There are also some red spots developing on my arms. I am really worried. +188,Chicken pox,I'm worried about these red spots on my skin. It's spreading rapidly and causing a lot of problems. I also developed a mild fever and headache every night. +189,Chicken pox,I'm feeling really nauseous and uneasy. I'm not sure what it might be. I've seen rashes on my arms and legs. I have lost my appetite and feel exhausted every day. +190,Chicken pox,I have swollen red lymph nodes on my arms and legs that itch when I touch them. I'm also suffering from a terrible headache and a mild fever. I don't feel like eating anything and have lost my appetite. +191,Chicken pox,I'm really exhausted and lacking in energy. I can hardly keep my eyes open during the day. I have a mild fever and don't feel like eating anything. I think I have lost my appetite. +192,Chicken pox,"I am exhausted and have lost my appetite. I feel vomiting and can't eat anything. In addition, little red spots are beginning to appear on my skin and near the neck. I am really worried about my health." +193,Chicken pox,There are small red spots all over my body. The spots are itchy and uncomfortable. I also have a mild fever and headache. +194,Chicken pox,"I've been suffering from severe itching all over my body, along with a fever and headache. The red spots are starting to swell and it is getting really uncomfortable every day." +195,Chicken pox,I feel tired every day. There are red spots all over my arms and back and it itches if I touch them. I am really worried and not sure what to do. +196,Chicken pox,"The high fever, swollen lymph nodes and headache are causing me a lot of trouble. I don't feel like eating anything and feel weak and fatigued. It's hard for me to concentrate on my daily life." +197,Chicken pox,"I have a high fever and red spots and rashes all over my body. I feel exhausted and have completely lost my appetite, which has made me weak and lethargic. I am really worried." +198,Chicken pox,I have seen rashes on my arms and neck and it itches if I scratch them. I've also had a high fever for a few days. I have no idea what is causing it. The itching is causing me a lot of discomforts. +199,Chicken pox,"There are red swollen spots all over my body. It itches if I touch them. Moreover, I also have a high fever and headache and always feel exhausted." +200,Impetigo,I have developed a skin rash on my face and neck. The rash is made up of red sores that are blistering. I am worried about my health. +201,Impetigo,"I have developed skin rashes made up of blistering sores. The blistering sores are raised, fluid-filled lesions and they are painful to touch. I am also suffering from a high fever." +202,Impetigo,I have a high fever. There are red sores developing near my nose. The sores are painful and have yellow rust-colored ooze coming out from them. +203,Impetigo,"There are rashes around my nose, with large red sores. I noticed that the rash was spreading to other parts of my body. Also, I have a high fever every night." +204,Impetigo,I have been suffering from a high fever for the last couple of days. Sores are developing near my nose. The sores are painful and I am feeling very uncomfortable these days. +205,Impetigo,"My skin has developed rashes, mainly near the nose. The rash is spreading to other parts of my body. I am really about worried about this." +206,Impetigo,I have been experiencing extreme fatigue and a high fever. There are rashes near my nose and mouth. The rash is itchy and makes it very difficult for me to sleep. +207,Impetigo,"I am suffering from extreme fever and weakness. I have developed sores on my face. The sores itchy and uncomfortable. Often, a yellow colored ooze comes out of the sores." +208,Impetigo,I have noticed that the sores are taking longer to heal and are more prone to infection. The sores on my face are swollen and tender to the touch and very uncomfortable to handle. +209,Impetigo,There are red sores on my face and near my nose. I have noticed that the rash is spreading more quickly on my neck and chest. +210,Impetigo,The sores around my nose have become crusted over and are difficult to touch. A yellow-rust coloured ooze used to come out of the sores. It is taking much more time to handle. +211,Impetigo,"I developed a minor rash near my nose a few days ago. Now, the rash is accompanied by a burning sensation and redness of the skin. I feel it is some kind of an infection." +212,Impetigo,"Initially, I developed small red sores near my nose and neck. Now, I am having a high fever and the sores have become more painful and inflamed over the past few days." +213,Impetigo,"I noticed a skin rash on my face. It was made up of a blistering sore. Today I observed a yellow colored fluid coming out of the sores, I am not sure what it is." +214,Impetigo,"The sores on my face are beginning to weep clear fluid. Also, every night I get a high fever and chills, because of which I cannot sleep all night." +215,Impetigo,I initially had rashes on my face and near my nose. But now the rash is spreading down my arms and legs. +216,Impetigo,"I have a high fever every night and developed sores on my face, particularly near my nose. I have noticed that the sores are taking longer to heal and are more prone to infection." +217,Impetigo,"The sores around my nose are now surrounded by red, inflamed skin. The rash has caused my skin to become dry and flaky, with a visible yellow colored fluid coming out of the sores." +218,Impetigo,"I have also been experiencing flu-like symptoms, such as fever and body pain. I have noticed red rashes and blistering sores near my nose and lips. It's itchy and uncomfortable." +219,Impetigo,I am suffering from mild fever and headache. There are small sores near my nose and rashes on my neck. I am going through a very tough time right now. +220,Impetigo,"There is a rash particularly bad around my nose, with large red sores that are painful and have yellow rust-colored ooze coming from them." +221,Impetigo,"There are sores on my face and mostly near my nose and lips. The sores are causing discomfort or pain, and there is a discharge of yellow or rust-colored fluid from them." +222,Impetigo,"I have been developing sores on my face and nose area. I am not sure what is causing this. The sores on my face are swollen and tender to the touch, and I have a burning sensation and redness of the skin." +223,Impetigo,"The rash on my face has become more painful and inflamed over the past few days, and the sores are beginning to weep clear fluid. It is getting extremely painful with each day." +224,Impetigo,I have rashes on my face. I am starting to have small sores around my nose and often a yellow fluid comes out of the sores. The sores are becoming extremely painful. +225,Impetigo,"I am feeling really sick. I have a high fever and headache. I noticed rashes on my arms and face. I am extremely worried about this. Today, I observed red sores near my nose." +226,Impetigo,"I've been suffering from a high fever for the past few days. Sores are forming around my nose and there are rashes on different parts of my body. The sores are severe, and I'm feeling really uneasy these days." +227,Impetigo,I have a high fever and am really weak. My face has gotten sores. The blisters are itchy and painful. A yellow ooze frequently leaks from the wounds. +228,Impetigo,"I am experiencing skin rashes with burning sores. The blistering sores are fluid-filled, elevated, red colored lesions that are unpleasant to touch. I also have a high fever." +229,Impetigo,"I believe I have some skin disease. There are rashes on my face and small sores near my nose. The sores have become red, and painful and some kind of a yellow ooze discharges from them." +230,Impetigo,"I have noticed that the sores on my face are healing more slowly and are more likely to become infected. My cheek sores are large, painful to the touch, and extremely difficult to handle. I can't seem to get rid of these sores." +231,Impetigo,"I am having a high fever. I've had a skin rash on my face, neck and arms. The rash is made up of burning red lesions. I'm concerned about my health." +232,Impetigo,"I've acquired skin rashes with blistering sores. The blistering sores are fluid-filled, elevated lesions that are unpleasant to touch. I'm also running a high fever." +233,Impetigo,"I'm running a high temperature. Near my nose, red sores are forming. The lesions are painful, and yellow rust-colored fluid is oozing from them." +234,Impetigo,"I have rashes around my nose, as well as huge red sores. The rash is spreading to other places on my body, as I've seen. In addition, I have a high temperature every night." +235,Impetigo,My cheeks and nose are covered with red sores. I've observed that the rash on my neck and chest is spreading faster. I am also developing a mild fever. +236,Impetigo,My nasal sores have crusted up and become difficult to touch. The wounds used to leak a yellow-rust coloured fluid. It is taking a lot longer to deal with using medication. +237,Impetigo,"A few days ago, I experienced a tiny rash around my nose. The rash is now accompanied by a burning feeling and skin redness and discharge of fluid. I believe it is some sort of infection." +238,Impetigo,"Small red sores appeared near my nose and neck at first. I now have a high temperature, and the sores have gotten more painful and inflamed in recent days." +239,Impetigo,"A rash has developed around my nose and lips, with huge red lesions that are painful and emit a yellow rust-colored fluid." +240,Impetigo,"My face is covered in sores. Most of them are near my nose and lips. The lesions are causing discomfort or suffering, and a yellow or rust-colored fluid is oozing from them." +241,Impetigo,"I've started getting sores on my face and nose. I have no idea what is causing this. My cheek sores are large and irritating to the touch, and I have a burning feeling and skin redness." +242,Impetigo,"Over the last two days, the rash on my face has gotten more severe and inflamed, and the blisters have begun to bleed clear pus. It is really painful to deal with." +243,Impetigo,"I feel I have a skin condition. My face has rashes and little blisters around my nose. The wounds have turned red and painful, and a yellow liquid is oozing from them." +244,Impetigo,"I've observed that the lesions on my face are healing slower and are more prone to infection. The lesions on my cheeks are huge, unpleasant to the touch, and incredibly difficult to treat. I can't seem to get these sores to go away." +245,Impetigo,"I'm running a high temperature. I've developed a rash on my face, neck, and arms. The rash consists of painful red lesions. My health is a concern for me." +246,Impetigo,"Over the last week, the rash on my face has gotten more severe and painful, and the sores have begun to discharge a yellow colored fluid. It's becoming increasingly painful by the day." +247,Impetigo,"I've had rashes on my face. I'm developing little sores around my nose, and a yellow ooze is frequently oozing from them. The lesions have become even more painful." +248,Impetigo,I'm feeling quite ill. I have a high fever and a headache. Rashes appeared on my arms and face. I'm quite concerned about this. I saw red sores around my nose and lips today. +249,Impetigo,"The rashes on my face are not healing. I tried some medications but it is not helping much. Recently, I noticed small sores near my nose. They are painful and very difficult to handle." +250,Dengue,I am facing severe joint pain and vomitting. I have developed a skin rash that covers my entire body and is accompanied by intense itching. +251,Dengue,"I have been experiencing chills and shivering, despite being in a warm environment. My back pains all the time and there are red spots on my arms." +252,Dengue,"I have been experiencing severe joint pain that makes it difficult for me to move and perform my daily activities. Also, I have lost my apetite because of which I feel weak." +253,Dengue,I have been vomiting frequently and have lost my appetite as a result. My joints and back pain all the time. +254,Dengue,I have a high fever accompanied with severe headache and body pain. I experince chills every night. There is a distinct pain behind my eyes too. +255,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. I have developed rashes on my neck, which itch upon touching. " +256,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I have lost my apetite and experience chills every night. +257,Dengue,I have been feeling nauseous and have a constant urge to vomit. There is a strong pain behind my eyes and there are small red spots all over my arms. +258,Dengue,I have developed red spots on my body that are itchy and inflamed. I am also experiencing high fever along with chills and shivering. +259,Dengue,I have been experiencing muscle pain that makes it difficult for me to move around. I have lost my apetite and feel vomiting. My legs and back pain a lot. +260,Dengue,"I have been experiencing back pain that is worse when I sit or stand for a long time. Also, there are rashes all over my body. There is a pain behind my eyes too." +261,Dengue,The skin rash I have developed is accompanied by redness and swelling. I don’t feel well as I have severe fever accompanied with body pain. +262,Dengue,The chills and shivering I have been experiencing are accompanied by a feeling of coldness and high fever. I have also developed rashes on my arms and red spots on my neck. +263,Dengue,"The joint pain I have been experiencing is severe and feels like a constant ache. My head aches most of the time and I am starting to develope mild fever, accompanied with chills. " +264,Dengue,The vomiting I have been experiencing is accompanied by stomach cramps and dizziness. I have lost my apetite and feel weak as a result. There is a pain behind my eyes too. +265,Dengue,The high fever I have been experiencing is accompanied by sweating and weakness. My muscles pain as a result I cannot work all day. +266,Dengue,"The fatigue I have been feeling is extreme and makes it difficult for me to perform even basic tasks. I feel vomitting and developed rashes on my arms, neck and legs. " +267,Dengue,The headache I have been experiencing is severe and is accompanied by a feeling of pressure in my head. I have mild fever along with headache. There are small red spots on my back. +268,Dengue,The nausea I have been feeling is accompanied by a loss of appetite and feeling of unease. There is a distinct pain in my back and muscles pain too. +269,Dengue,The muscle pain I have been experiencing is severe and feels like a constant ache. There are red spots all over my body and the itching is causing me a lot of discomfort. +270,Dengue,"I have developed a skin rash that covers my entire body and is accompanied by intense itching. My body pains and I have a mild fever, acompanied with headache and chills." +271,Dengue,"I'm experiencing extreme body pain, headache and vomiting. I've developed red spots that covers my entire body and causes severe itching." +272,Dengue,"My back hurts all the time, and my arms and neck have rashes. The back of eyes pain a lot. I also have fever and it is making we worried about my health." +273,Dengue,"I've been suffering from significant joint pain, which makes it difficult for me to walk and carry out my everyday tasks. I've also lost my appetite, which makes me feel weak and feel like vomitting." +274,Dengue,There is a constant behind my eyes. I have developed red spots on my neck and face and rashes on my arms. My arms and legs pain a lot. . The spots are itchy and uncomfortable and it is worrying me. +275,Dengue,"I've been feeling sick and feel a strong need to vomit. There is a sharp ache behind my eyes, and swollen red dots all over my back." +276,Dengue,My shivers and shivering have been accompanied with a sensation of coldness and a very high fever. Rashes on my arms and red patches on my neck have also appeared. +277,Dengue,"I have been suffering from severe joint ache. I feel vomiting most of the time, and I am developing a moderate fever with chills. The fever that doesn't seem to come down even with medication." +278,Dengue,"The vomiting I've been having has been followed by stomach pains and dizziness. I've lost my appetite and as a result feel weak. My arms, back, neck pain most of the time." +279,Dengue,I have developed red spots on my arms and legs that are itchy and inflamed. I have been feeling nauseaus and have a constant urge to vomit. This is accomapanied by mild fever. +280,Dengue,"I have developed a skin rash that covers my entire body. The rash is red and swollen, and is worse in certain areas such as my arms and legs. I have also lost my appetite. " +281,Dengue,I have been experiencing chills and shivering. There is a strong pain in my back and also behind my eyes. I have also noticed small red spots on my back and neck. +282,Dengue,I have been experiencing severe joint pain that is making my day very difficult. I feel like vomiting all the time and have a mild headache too. +283,Dengue,"I have been vomiting frequently and have lost my appetite as a result. There are rashes on my skin and my eyes pain, because of which I cannot sleep properly." +284,Dengue,I have a high fever along with a severe headache. The fever is accompanied by extreme body pain and chills. I am worried about my health and don’t know what to do. +285,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. The fatigue is so severe that I struggle to get out of bed. I have noticed small red spots on my arms and legs. " +286,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I feel tired and fatigued because of which I cannot work all day. I am worried about my health. +287,Dengue,"I have been feeling nauseous and have a constant urge to vomit, which is accompanied with mild fever and headache. " +288,Dengue,I have developed rashes on my body that are itchy and. I have lost my appetite and feel very tired all day. I feel something is wrong with my body. +289,Dengue,"I have been experiencing muscle pain and headache. The muscle pain feels like a constant ache and is worse when I try to use the affected muscles. There are small red spots developing on my face, neck and arms." +290,Dengue,"My back hurts, and I have rashes on my arms and armpits. The back of my eyeballs hurt a lot. I also have a mild fever, which is making us concerned about my health. " +291,Dengue,"I am experiencing very high fever and chills every night. It is really concerning me. Moreover, I don’t feel like eating anything and my back, arms, legs pain a lot. There is a strange pain behing my eyes. I can’t do any physical activities. " +292,Dengue,"As a result of my regular vomiting, I've lost my appetite. My muscles, joints and back constantly hurt. I am starting to have fever too. I am really worried and not sure what to do." +293,Dengue,I have been experiencing a severe fever that is accompanied by pain behind my eyes and headache. I feel tired and exhasuted because of which I cannot do any work. +294,Dengue,"My whole body is paining a lot and I don’t feel like eating anything. I have mild fever and get chills every night. Also, there are some red spots developing on my back and neck." +295,Dengue,"My joints and back pain everyday. I feel like vomitting and this has made me very weak. Because of my body pain, I am not able to focus on my work and don’t feel like doing anything." +296,Dengue,The body pain I have been feeling is extreme. I has lost my appetite and developed rashes on my arms and face. The back of my eyes pain a lot. +297,Dengue,I have developed rashes on my body. I am also experiencing high fever along with chills and headache. My joints and back hurt and there is a strange pain in the back of my eyes. +298,Dengue,"I have been feeling nauseous and have a constant urge to vomit. I get high fever and chills every night and feel terrible because of this. Also, I feel I have lost my appetite." +299,Dengue,"There are rashes on my skin, which itch if I touch them. I don’t feel good as my joints pain whole day. At night, I have mild fever and get chills, because of which I can’t sleep too." +0,Fungal infection,"I have raised lumps, a rash that looks red and inflamed, discoloured areas of skin that are different colours from the rest of my skin, and itching on my skin." +1,Fungal infection,"All over my body, there has been a severe itching that has been followed by a red, bumpy rash. My skin also has a few darkened spots and a few tiny, nodular breakouts. It has been happening for several days and is becoming worse." +2,Fungal infection,"I've had a rash on my skin that looks like dischromic patches, and I also have a lot of nodular eruptions and really bad itching. During the previous week, it has become worse." +3,Fungal infection,"I've had a rash that won't go away and a bothersome itching on my skin. In addition, I've seen some color-different areas and bumps that resemble knots or lumps on my skin." +4,Fungal infection,"I have a rash all over my body, and I can't stop scratching because my skin is itchy. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples." +5,Fungal infection,"Recently, my skin has been quite itchy, and I have a rash all over my body. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples." +6,Fungal infection,"My skin has been itching a lot and developing a rash. Additionally, I have a few areas of my skin that are a different hue than the rest of it. Additionally, I have a few firm pimples or breakouts on my skin." +7,Fungal infection,"All over my body has been itching like crazy, and now there are red areas all over. Additionally, some of the patches have a different tone than my natural skin. And on my skin, there are these lumps or pimples that have developed." +8,Fungal infection,"My skin has been acting up recently, becoming extremely itchy and rashes-prone. Additionally, there are certain spots that deviate from my natural skin tone in terms of hue. And now my skin has these lumps or bumps that weren't there before." +9,Fungal infection,"On my arms and legs, I have a lot of red pimples and itchy skin. My skin also has a few odd-looking lesions. And occasionally there are bumps that are somewhat uncomfortable." +10,Fungal infection,I have an itchy skin and lots of red bumps on my arms and legs. There are some weird looking spots on my skin too. And sometimes there are bumps that feel kind of hard. +11,Fungal infection,"Doctor, I have a really itchy rash on my skin and there are some weird spots that are a different color. There are also some bumps on my skin that look like little knots" +12,Fungal infection,"Doctor, My skin is covered in a very uncomfortable rash, along with some odd patches of a different hue. My skin also has a few pimples that resemble little knots" +13,Fungal infection,"I have lots of itchy spots on my skin, and sometimes they turn red or bumpy. There are also some weird patches that are different colors than the rest of my skin, and sometimes I get these weird bumps that look like little balls." +14,Fungal infection,"My skin frequently develops itchy bumps that can occasionally turn red or rough. Aside from that, my skin occasionally develops strange pimples that resemble small balls and some odd spots that are a different hue from the rest of my skin." +15,Fungal infection,"Doctor, I have these red rashes that keep popping up and my skin is continuously itching. In addition, I've observed some odd color-different spots on my skin, as well as some little nodules on my skin that appear to be expanding." +16,Fungal infection,"I have been experiencing some really intense itching all over my body, along with redness and bumps on my skin. There are also these weird patches that are different colors than the rest of my skin, and sometimes I get these nodules that look like small bumps." +17,Fungal infection,"All over my body, I've been scratching so much that my skin has become red and developed pimples. Additionally, I occasionally get these nodules that resemble little pimples, as well as these strange patches that are a different hue from the rest of my skin." +18,Fungal infection,"I've been experiencing a lot of itching, which has been accompanied with a rash that appears to be growing worse over time. There are also certain areas of skin that are different colours from the rest, and I've spotted several lumps that resemble little nodes." +19,Fungal infection,"I've been having a lot of problems with itching, and it's been accompanied by a rash that seems to be getting worse over time. There are also some patches of skin that are different colors than the rest, and I've noticed some bumps that look like little nodes." +20,Fungal infection,"Doctor, My skin is covered in an uncomfortable rash and has a few odd patches of skin that are a different colour. There are a few pimples on my skin that resemble little knots." +21,Fungal infection,"I've been itching a lot, and it's been accompanied with a rash that looks to be getting worse over time. There are also some patches of skin that are different colours from the rest of the skin, as well as some lumps that resemble little nodes." +22,Fungal infection,"My skin has been acting up lately, becoming exceedingly itchy and prone to rashes. Furthermore, several patches differ from my normal skin tone in terms of colour. And now I have lumps or bumps on my skin that weren't there before." +23,Fungal infection,"A rash that appears to be developing throughout my skin has been accompanying my recent bouts of intense itching and discomfort. On my skin, I also have some dischromic spots and little lumps that seem to be appearing everywhere." +24,Fungal infection,"My skin always itches, and occasionally it becomes quite rough and red. In addition, I occasionally get little pimples that resemble tiny balls and certain spots that are a different colour from the rest of my skin. It severely irritates me and itches." +25,Fungal infection,"I have a lot of itching all over my skin, and sometimes it gets really red and bumpy. There are also some patches that are different colors than the rest of my skin, and sometimes I get these little bumps that look like little balls. It's really annoying and itchy." +26,Fungal infection,"I have a pretty irritating itch all over my body, and my skin also has a few red, bumpy areas. I've also had some pimples that resemble small balls and other spots that are a different colour than the rest of my skin. " +27,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my skin that are a different hue than the rest of it, and I've had some pimples that resemble little balls." +28,Fungal infection,"I've been having this really annoying itch all over my body, and I have red and bumpy spots on my skin too. There are also some areas that are a different color than the rest of my skin, and I've had some bumps that look like little balls." +29,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my epidermis with a distinct shade than the rest of it, and I've had some pimples that resemble little balls." +30,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that look different in shade than the rest of my skin, and I've had some bumps that are kind of hard." +31,Fungal infection,"I've been quite itchy recently, and I have rashy patches all over my skin. There are also certain regions that are darker in colour than the rest of my skin, and I've got some firm lumps." +32,Fungal infection,"I've been rather itchy recently, and I have rashy blotches all over my skin. There are also certain regions that are more dark in color than the rest of my skin, and I've got some painful lumps." +33,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. Additionally, I've had a few pimples that are rather firm, and there are certain spots on my body that have a different shade of brown than the rest of my skin." +34,Fungal infection,"My skin has been really itchy and there are these rashy spots all over. There are also some patches that look different in color than the rest of my skin, and I've had some bumps that are kind of hard." +35,Fungal infection,"My skin has been really scratchy, and there are rashes all over my body. I have some bumps that are quite firm, as well as some areas that are a darker shade from the rest of my skin. It's extremely unpleasant." +36,Fungal infection,"There are rashy areas all over my skin, which has been really irritating. Additionally, I have some bumps that are fairly firm and some patches that are a different colour from the rest of my skin." +37,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. In addition, there are a few spots where my skin doesn't appear to be its usual shade, and I've experienced a few lumps that are quite painful." +38,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that don't look like the normal color of my skin, and I've had some bumps that are kind of hard" +39,Fungal infection,"I've been quite itchy recently, and I have rashy places all over my body. There are also some regions that don't appear to be the typical hue of my skin, and I've experienced some firm lumps." +40,Fungal infection,"I've been itching and have rashy patches all over my skin recently. There are also some regions that don't appear to be the regular tone of my skin, and I've experienced some painful bumps." +41,Fungal infection,"Recently, I've been itching myself a lot, and my skin is covered with rashy patches. Furthermore, there are a few regions where my skin doesn't appear to be its usual tone, and I've experienced a few lumps that are exceptionally painful." +42,Fungal infection,"I've been having this constant itch and there are these red and bumpy spots on my skin. There are also some patches that are a different color than the rest of my skin, and I've had some bumps that are kind of like little lumps." +43,Fungal infection,"There are red, bumpy areas on my skin, and I've been scratching myself nonstop. Additionally, I have some bumps that resemble little lumps and some spots that are a different shade of skin than the rest of my body." +44,Fungal infection,"I've had a lot of itching on my skin, which occasionally turns into a rash. There are also some odd patches of skin that are a different hue than the rest of me, and I occasionally get little pimples that resemble nodules." +45,Fungal infection,"I've had a tendency of itching on my skin, that frequently turns into a rash. There are also some strange patches of skin that are a different tone than the rest of my skin, and I regularly get little lumps that mimic nodules." +46,Fungal infection,"I've been experiencing a lot of itching on my skin, and sometimes it turns into a rash. There are also some strange patches of skin that are a different color than the rest of me, and sometimes I get little bumps that look like nodules." +47,Fungal infection,"My body has been itching terribly all over, and there are now red spots everywhere. Some of the patches also differ in tone from my natural complexion. And there are these lumps or pimples that have appeared on my skin." +48,Fungal infection,"My skin has been really itchy lately, and it occasionally erupts into a rash. In addition, I have a few odd areas of skin that are a different coloration from the rest of me, and occasionally I develop little bumps that look  like nodules." +49,Fungal infection,There are now red blotches all over my body where I have been itching horribly all over. A few of the patches also differ in complexion from my natural skin. And these lumps or bumps have developed on my skin. +50,Common Cold,"I can't stop sneezing and my nose is really runny. I'm also really cold and tired all the time, and I've been coughing a lot. My fever is really high too, like way above normal." +51,Common Cold,"My nose is extremely runny, and I can't seem to stop sneezing. In addition, I constantly feel cold, exhausted, and I've been coughing a lot. My fever is also really high far above normal." +52,Common Cold,"I've been sneezing nonstop and I can't seem to shake this chill. I'm feeling really weak and tired, and my cough won't go away. My fever is really high" +53,Common Cold,"I've been sneezing incessantly and I just can't get this chill to go away. I feel so weak and exhausted, and my cough won't stop. My temperature is really high." +54,Common Cold,I'm constantly sneezing and my body is shaking from being cold. I'm so tired I can barely move and my head is killing me. My fever is through the roof +55,Common Cold,"I'm constantly sneezing, and the cold is making my body tremble. I'm so exhausted that I can hardly move, and my head hurts. My fever is quite high." +56,Common Cold,"I've been quite exhausted and ill. I'm sneezing nonstop and am quite cold. My head is throbbing, and I lack energy. Additionally, I have a very high fever and feel like I am on fire." +57,Common Cold,"I've been feeling really tired and sick. I've been sneezing a lot and I can't seem to get warm. I'm so tired and my head is killing me. And my fever is really high, like I'm boiling." +58,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak" +59,Common Cold,"I've been quite exhausted and ill. I have been sneezing a lot and am having trouble warming up. I'm so exhausted, and my head hurts. And I feel like I am boiling over with my high temperature." +60,Common Cold,I can't stop sneezing and I feel really tired and crummy. My throat is really sore and I have a lot of gunky stuff in my nose and throat. My neck feels swollen and puffy too. +61,Common Cold,"I can't stop sneezing, and I'm exhausted and sick. My throat is really uncomfortable, and there is a lot of junk in my nose and throat. My neck is also swollen and puffy." +62,Common Cold,"I keep sneezing, and I'm miserable and exhausted. I have a lot of gunky things in my nose and throat, and my throat is really hurting. My neck also feels puffy and swollen." +63,Common Cold,I've been feeling really exhausted and sick to my stomach. I've had a really bad cough and my throat has hurt a lot. I've experienced substantial sinus pressure and a congested nose. I'm really unpleasant and worn out. +64,Common Cold,I've been sneezing a lot and feeling really tired and sick. There's also a lot of gross stuff coming out of my nose and my throat feels really scratchy. And my neck feels swollen too. +65,Common Cold,"I've been wheezing a lot and am generally feeling sick and exhausted. My throat feels really scratchy, and a lot of gross stuff is flowing out of my nose. My neck also feels bloated." +66,Common Cold,"My sinuses feel incredibly congested, and my eyes are continuously red. I just constantly feel drained and exhausted. In addition, I have a lot of uncomfortable phlegm in my throat. My lymph nodes feel bloated, and breathing has been challenging." +67,Common Cold,My eyes have been really red and my sinuses feel congested. I just don't have any energy and my throat has been really itchy. I've also noticed my lymph nodes are swollen and I've been coughing up a lot of phlegm. +68,Common Cold,"My sinuses feel stuffy, and my eyes have been quite red. I simply lack energy, and my throat has been really scratchy. Along with the swelling in my lymph nodes, I've also been coughing up a lot of phlegm." +69,Common Cold,"My eyes are always red and itchy, and my nose feels all stuffy and congested. I just feel kind of sick and tired all the time, and I keep coughing up all this gunk. My throat feels sore and scratchy, and I've noticed that the bumps on my neck are bigger than usual" +70,Common Cold,"My nose always feels stuffy and congested, and my eyes are always red and itching. I have a feeling of being unwell and fatigued, and I keep hacking up this gunk. I have a scratchy, irritated throat, and I've seen that my neck's bumps are larger than usual." +71,Common Cold,"I keep sneezing, and my eyes don't quit dripping. It's incredibly difficult for me to breathe because it feels like there is something trapped in my throat. I often feel exhausted, and lately, I've had a lot of phlegm. Moreover, my lymph nodes are enlarged." +72,Common Cold,My eyes are red and watery all the time. I've also had this pressure in my sinuses that won't go away. I'm always feeling tired and I've been having a lot of trouble breathing. I've also had a lot of gunk in my throat and my lymph nodes are swollen. +73,Common Cold,"My eyes are constantly red and runny. A persistent tightness in my sinuses has also been bothering me. I've been having a lot of difficulties breathing and constantly feel fatigued. In addition, I have a lot of throat mucus and inflamed lymph nodes." +74,Common Cold,"My nose feels quite clogged, and my eyes are constantly very red and runny. In addition, my chest hurts and I've been having a lot of breathing problems. In addition, my muscles feel quite painful, and I can't smell anything." +75,Common Cold,"My eyes are usually red and runny, and my nose is always stuffy. I've also been having difficulty breathing and my chest hurts. In addition, I can't smell anything and my muscles are quite painful." +76,Common Cold,"My eyes are usually red and inflamed, and I have the impression that something is clogging my sinuses. I've been coughing up a lot of gunk, and my chest hurts. I can't smell anything, and my muscles are aching." +77,Common Cold,"My eyes are always red and swollen, and I feel like there's something blocking my sinuses. I've been coughing up a lot of goo and my chest feels really heavy. I can't smell anything and my muscles are really sore" +78,Common Cold,"I've been coughing a lot and feeling chilly and shivery. My nose has been quite clogged, and I am experiencing facial pressure. I also have a lot of phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching." +79,Common Cold,"For days, I've had a nasty cough and cold. My sinuses are clogged, and I have facial pressure. I've also been creating phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching." +80,Common Cold,"I've had a nasty cough and cold for days. My sinuses are congested, and I have facial pressure. I've also been coughing up mucus, and it pains my chest. I can't smell anything and my muscles are aching." +81,Common Cold,"My cough and cold have been awful for days. My sinuses are congested, and my face is under strain. Additionally, I've been coughing up phlegm, and it hurts in my chest. I have no sense of smell, and my muscles hurt a lot." +82,Common Cold,"I'm coughing nonstop and I'm shivering terribly. I have a stuffy nose and my face is under strain. In addition, my throat is coughing up some nasty gunk, and my chest hurts. My muscles hurt a lot, and I can't smell anything." +83,Common Cold,I can't stop coughing and I feel really cold. My sinuses are all blocked and I have a lot of mucus. My chest hurts and I can't smell anything. My muscles are also really sore. +84,Common Cold,"I'm coughing nonstop and am really chilly. My mucus production is excessive, and my sinuses are fully clogged. I can't smell anything, and my chest hurts. My muscles are quite painful as well." +85,Common Cold,"I can't stop coughing and I'm freezing. My sinuses are completely blocked, and I'm inundated with mucous. My chest hurts, and I'm unable to smell anything. My muscles are also really achy." +86,Common Cold,"I've been coughing a lot and finding it difficult to breathe. My throat hurts and I feel like I have a lot of phlegm trapped in my chest. My nose has been running a lot, and I've been feeling really congested." +87,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak" +88,Common Cold,"I've been experiencing severe weariness and a sickly sensation. My throat has been really painful and I've had a fairly severe cough. My nose has been quite stuffy, and I've had significant sinus pressure. I'm really miserable and extremely exhausted." +89,Common Cold,I've been feeling really sick and I've had a lot of fatigue. I've had a really bad cough and my throat has been really sore. I've had a lot of sinus pressure and my nose has been really congested. I just feel really run down and miserable. +90,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Simply put, I feel really run down and feeble." +91,Common Cold,I've been really weary and ill. I've been suffering from a severe cough and sore throat. I've got a lot of chills and a pretty high temperature. I simply feel tired and run down. +92,Common Cold,"I can't quit sneezing, and my nose is running. I'm also constantly chilly and exhausted, and I've been coughing a lot. My fever is also really high, well above usual." +93,Common Cold,"I've been feeling awful, with a lot of congestion and a runny nose. I've been coughing a lot and having a lot of chest pain. My fever has been really high, and I've been experiencing severe muscular discomfort." +94,Common Cold,"My neck is swollen, and I'm exhausted. My throat is scratchy, and my eyes are burning red. My nose is really clogged, and I am experiencing facial pressure. My chest hurts, and I'm unable to smell anything." +95,Common Cold,"I lack energy and feel like my neck is bloated. My eyes are red, and my throat feels scratchy. I have severe congestion in my nostrils, and my face is under pressure. I can't smell anything, and my chest hurts." +96,Common Cold,"I feel quite weak, and my lymph nodes are enlarged. My eyes are burning, and my throat hurts. My sinuses are under strain, and my nose is stuffy. I can't smell anything, and my chest hurts." +97,Common Cold,"I've had a terrible cough and cold for days. My face is tired and my sinuses are blocked. In addition, my chest hurts from the phlegm I've been coughing up. I can't smell, and my muscles are in terrible pain." +98,Common Cold,"I have red, watery eyes all the time. My sinuses have also been bothered by a constant tightness. My breathing has been quite tough, and I've been feeling worn out all the time. My lymph nodes are irritated, and I also have a lot of throat mucous." +99,Common Cold,"I always get hot, puffy eyes and the feeling that something is obstructing my sinuses. My chest feels quite heavy, and I've been coughing up a lot of gunk. I have no sense of smell, and my muscles hurt a lot." +100,Pneumonia,"I've been feeling really cold and tired lately, and I've been coughing a lot with chest pain. My heart is beating really fast too, and when I cough, the phlegm is kind of a rusty color." +101,Pneumonia,"I've been coughing a lot recently with chest pain and feeling incredibly chilly and exhausted. Additionally, my heart is thumping rapidly, and the phlegm I cough up has a reddish hue." +102,Pneumonia,"I've been feeling really drained and cold, and I can't stop coughing. It hurts in my chest when I do, and my heart feels like it's racing. The mucus I'm coughing up is a gross brownish color." +103,Pneumonia,"I've been exhausted and chilly, and I can't stop coughing. When I do, it pains in my chest and makes my heart race. My coughing mucous has a disgusting brownish hue." +104,Pneumonia,"I've been having chills and feeling exhausted, and I can't seem to shake this cough. My chest hurts when I cough, and my heart feels like it's going a million miles an hour. The phlegm I'm coughing up is a dirty rust color." +105,Pneumonia,"I've been experiencing chills, feeling worn out, and I can't seem to get rid of this cough. When I cough, my chest aches and my heart feels as like it is beating a million miles per hour. I'm coughing up a nasty rust-colored phlegm." +106,Pneumonia,"I've been feeling really weak and cold lately, and this cough won't go away. It hurts in my chest when I cough, and my heart is pounding. The mucus I'm bringing up is a rusty brown color." +107,Pneumonia,"I've been having chills and feeling really worn out, and this cough won't go away. My chest hurts when I cough, and my heart is racing. The mucus I'm bringing up is a gross brownish color." +108,Pneumonia,"I've been experiencing chills, feel really exhausted, and my cough just won't go away. When I cough, my chest aches and my heart is pounding. It's a disgusting brownish hue, the mucous I'm coming up." +109,Pneumonia,"I have a really high fever, and I'm having trouble breathing. I'm sweating a lot and feeling really cold and tired. My heart is beating really fast, and I have some brownish sputum" +110,Pneumonia,"I'm having problems breathing and have a very high fever. I'm perspiring a lot and experiencing extreme fatigue and chilly. My heart is racing, and I'm coughing up some brownish mucus." +111,Pneumonia,"My temperature is very high, and I'm having a hard time breathing. I'm sweating profusely, and I'm shaking with chills. I'm really tired, and my heart is beating really fast. I also have some brownish phlegm coming up" +112,Pneumonia,"I'm having trouble breathing, and my fever is really high. I'm drenched in sweat and shivering from the chill. My heart is thumping rapidly, and I'm quite exhausted. Additionally, I'm about to have some brownish phlegm." +113,Pneumonia,"My fever is really high, and I'm having trouble catching my breath. I'm sweating a lot, feeling cold and tired, and my heart is beating really fast. I also have some brownish phlegm coming up." +114,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm." +115,Pneumonia,"I've been feeling really sick with a high fever, shortness of breath, sweating, chills, and extreme fatigue. My heart rate is rapid, and I've been coughing up a lot of brownish sputum." +116,Pneumonia,"With a high temperature, shortness of breath, sweating, chills, and intense exhaustion, I've been feeling quite poorly. I've been coughing up a lot of brownish phlegm and my pulse rate is racing." +117,Pneumonia,I'm having a really hard time catching my breath and I'm sweating a lot. I feel really sick and have a lot of mucus in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is dark and looks like rust. +118,Pneumonia,"I'm sweating profusely and finding it difficult to catch my breath. I feel quite ill, and my throat is very mucous. My heart is pounding, and my chest aches. I'm coughing up thick mucous that resembles rust." +119,Pneumonia,"I'm having a lot of trouble breathing and am really uneasy. I'm feeling unwell and am perspiring a lot. My chest hurts and I have a lot of mucus in my throat. My heart is racing, and the hue of the mucus I'm coughing up is off." +120,Pneumonia,I can't seem to get enough air and I'm sweating a lot. I don't feel well and there's a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is reddish in color. +121,Pneumonia,"I'm sweating profusely and can't seem to get enough air. My throat is filled with a lot of mucus, and I don't feel good. My heart is pounding, and my chest aches. I'm coughing up reddish-colored mucous." +122,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is yellowish. +123,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up brownish mucous." +124,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish. +125,Pneumonia,"I'm having trouble breathing and am quite uneasy. My throat is filled with a lot of phlegm, and I'm perspiring a lot. My heart is racing, and my chest aches. I'm coughing up reddish mucous." +126,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is brownish and stringy. +127,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up a stringy, brownish mucous." +128,Pneumonia,"I'm drenched with sweat and struggling to breathe. I don't feel well and have a lot of mucous in my throat. My chest aches, and my heart is racing. I'm coughing up mucus that is crimson in colour." +129,Pneumonia,"I've been feeling very lousy, with a high temperature, shortness of breath, sweating, chills, and extreme weariness. My heart is beating, and I've been coughing up a lot of brownish phlegm." +130,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm." +131,Pneumonia,"My fever is really high, and I'm having difficulty breathing. I'm drenched in sweat and shivering with chills. I'm quite fatigued, and my heart is racing. I'm also expecting some brownish phlegm." +132,Pneumonia,"I've been getting chills, feeling tired, and I can't seem to shake this cough. My chest aches and my heart feels like it's racing at a million miles per hour when I cough. I'm coughing out a foul rusty phlegm." +133,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish. +134,Pneumonia,"I'm having trouble breathing and am really uncomfortable. I'm sweating profusely and have a lot of mucus in my throat. My chest aches, and my heart is racing. I'm coughing up dark mucous." +135,Pneumonia,"I've got a high fever and can't seem to catch my breath. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm. My chest aches, and my heart has been racing rapidly." +136,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark." +137,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm." +138,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark." +139,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and red phlegm." +140,Pneumonia,"I've had chills, lethargy, a cough, a high temperature, and difficulties breathing lately. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm." +141,Pneumonia,"I've been having a lot of respiratory issues lately along with chills, exhaustion, a cough, and a high temperature. I've been sweating profusely and generally feeling ill and weak. My chest aches, and my heart has been racing rapidly." +142,Pneumonia,"I've been suffering with chills, tiredness, and a cough recently. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My chest aches, and my heart has been racing." +143,Pneumonia,"I'm running a temperature and can't seem to catch my breath. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My heart has been beating frantically, and my chest hurts." +144,Pneumonia,"I'm drenched with sweat and can't seem to catch my breath. My throat is clogged with mucus, and I'm miserable. My heart is racing, and my chest aches. I'm coughing up a brownish stringy mucus." +145,Pneumonia,"I'm saturated with sweat and struggling to breathe. My throat is blocked with mucous, and I'm uncomfortable. My heart is racing, and my chest aches. I'm coughing up a darkish stringy mucous." +146,Pneumonia,"I'm having a lot of problems breathing. I'm not feeling good, and I'm sweating a lot. I have a lot of mucous in my throat and my chest hurts. My breathing is laboured, and the phlegm I'm coughing up has an odd tint." +147,Pneumonia,"I have a lot of difficulty breathing. I don't feel well, and I'm perspiring a lot. My chest hurts, and I have a lot of mucus in my throat. I'm having trouble breathing, and the phlegm I'm coughing up has a strange hue." +148,Pneumonia,"I've been coughing a lot and feeling incredibly chilly and exhausted. I have a pretty high fever, and it's difficult for me to breathe. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm." +149,Pneumonia,"I've recently had chills, exhaustion, a cough, a high temperature, and breathing issues. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm. My heart has been racing quite quickly." +150,Dimorphic Hemorrhoids,"Constipation, discomfort with bowel motions, and anus pain have all recently been bothering me. My anus has been quite inflamed, and my stool has been extremely bloody." +151,Dimorphic Hemorrhoids,"Lately I've been experiencing constipation, pain during bowel movements, and pain in my anus. My stool has also been really bloody and my anus has been really irritated." +152,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. My bowel movements have been extremely uncomfortable and difficult for me to have.  My anus has been quite inflamed, and my stool has been extremely bloody." +153,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately. It's really painful when I do, and there's been some blood in my stool. I've also been having some pain and irritation around my anus." +154,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. When I do, it hurts a lot, and I've noticed some blood in my stool. Around my anus, I've also been experiencing some discomfort and itching." +155,Dimorphic Hemorrhoids,"Lately I've been really constipated, and it's been really painful when I do go to the bathroom. I've also noticed some blood in my stool, and my anus has been really irritated." +156,Dimorphic Hemorrhoids,"I've been suffering from severe constipation lately, and whenever I do go to the restroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool." +157,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately, and it's been really painful. I've also noticed that my stool has been bloody and my anus has been really irritated." +158,Dimorphic Hemorrhoids,"Recently, I've been having a lot of discomfort and difficulty using the restroom. Additionally, I've noticed that my anus has been quite sore and that my stool has been bloody." +159,Dimorphic Hemorrhoids,"I've been terribly constipated lately, and when I do go to the bathroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool." +160,Dimorphic Hemorrhoids,"I've been quite constipated lately, and going to the restroom has been excruciatingly uncomfortable. I've also observed blood in my stool, and my anus has been aggravated." +161,Dimorphic Hemorrhoids,I've been having a lot of trouble going to the bathroom lately. It's been really painful and I've been experiencing pain in my anus. My stool has also been bloody and my anus has been really irritated. +162,Dimorphic Hemorrhoids,"I've been having a lot of problems using the restroom recently. It's been excruciatingly uncomfortable, and I've been feeling agony in my anus. My stool has been bloody as well, and my anus has been really inflamed." +163,Dimorphic Hemorrhoids,"I've been having trouble going to the restroom recently. When I try to go, it's really uncomfortable, and my anus hurts a lot. I've also had some blood in my stool, and my anus has been really uncomfortable." +164,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful when I try to go and my anus hurts a lot. There's also been some blood in my stool and my anus has been really itchy. +165,Dimorphic Hemorrhoids,"I've been experiencing problems using the restroom recently. It's quite difficult for me to go, and it hurts when I do. I've also been experiencing buttock soreness and bloody stools. My anus has also been quite itching and sensitive." +166,Dimorphic Hemorrhoids,"Recently, I've been having problems using the restroom. Going is incredibly difficult, and doing so hurts. In addition, I've been experiencing some butt soreness, and my stools have been bloody. My anus has also been quite itching and aggravated." +167,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +168,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt." +169,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +170,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt." +171,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated." +172,Dimorphic Hemorrhoids,"Constipation has made it quite difficult for me to use the restroom. My stool has been bloody when I do go, and it hurts. In addition, my anus has been quite itchy and inflamed, and I've been experiencing some butt soreness." +173,Dimorphic Hemorrhoids,"It's incredibly difficult for me to use the restroom, and when I do, it hurts a lot. My stools have been bloody, and my butt has been hurting. My anus has also been quite itching and aggravated." +174,Dimorphic Hemorrhoids,I'm having a lot of trouble going to the bathroom and it's really painful when I do. My stool has been bloody and I've had some pain in my butt. My anus has been really itchy and irritated too. +175,Dimorphic Hemorrhoids,I've been having trouble going to the bathroom. It's been really hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +176,Dimorphic Hemorrhoids,"I've been finding it challenging to use the restroom. Going has been quite difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +177,Dimorphic Hemorrhoids,"I've been having difficulty using the restroom. It's been difficult to go, and it aches when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +178,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +179,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +180,Dimorphic Hemorrhoids,"Constipation and soreness with bowel motions have been bothering me lately. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +181,Dimorphic Hemorrhoids,I've been having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +182,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +183,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +184,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +185,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +186,Dimorphic Hemorrhoids,"My bowel motions are giving me a lot of problems right now. Going is difficult, and going hurts when I do it. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +187,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +188,Dimorphic Hemorrhoids,"I've been having constipation and bowel motions that hurt recently. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +189,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +190,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +191,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable. +192,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad." +193,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +194,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's really painful and I'm really uncomfortable." +195,Dimorphic Hemorrhoids,"I've been getting a lot of bowel issues recently. It's difficult for me to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy." +196,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful and I'm only able to go every few days. There's also a lot of pain in my anus and around that area. My stool has been really bloody and my anus feels really irritated. +197,Dimorphic Hemorrhoids,"I've been finding it incredibly difficult recently to use the restroom. I can only go sporadically because it hurts so much. My anus and the surrounding region are also quite painful. My anus feels really aggravated, and my stool has been extremely bloody." +198,Dimorphic Hemorrhoids,I'm having a lot of trouble with constipation and pain while trying to go to the bathroom. It hurts a lot in my anus and the area around it. My stool has been bloody and my anus is really irritated. +199,Dimorphic Hemorrhoids,"Constipation and bowel movement discomfort have been very common for me lately. The region surrounding my anus and I both ache a lot. My anus is really itchy, and my stool has been bloody." +200,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I've been experiencing a lot of stiffness when I walk about and my joints have been swollen. Walking has also been really uncomfortable." +201,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and I've been having a lot of stiffness when I move around. It's also been really painful to walk. +202,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen and I've been experiencing a lot of stiffness when I move around. Walking has also been excruciatingly uncomfortable." +203,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's been hard to move around. Walking has been really painful. +204,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult to move about. Walking has been excruciatingly uncomfortable." +205,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. It has been difficult to move about since my joints have swollen. It has been really uncomfortable to walk." +206,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. My joints have swollen, making it difficult for me to move. It has hurt a lot to walk." +207,Arthritis,"My neck has been so tense, and I've been feeling like my muscles are incredibly weak. I have trouble moving since my joints have enlarged. To walk has been quite painful." +208,Arthritis,"My neck has been really stiff, and I've had terrible muscle weakness. Due to the swelling in my joints, it has been challenging to move about. Walking has been quite unpleasant." +209,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +210,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +211,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable." +212,Arthritis,"Recently, I've been suffering neck muscle weakness and stiffness. My joints have enlarged and it is difficult for me to walk without feeling stiff. Walking has also been excruciatingly uncomfortable." +213,Arthritis,"Lately, my neck has been tight and my muscles have been weakened. I have swelling joints that make it difficult for me to move about without getting stiff. It has also been agonisingly painful to walk." +214,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +215,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +216,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable." +217,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable." +218,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to move without becoming stiff. Walking has been quite uncomfortable as well." +219,Arthritis,"My neck has been really tight, and my muscles have been rather weak. I have swelling joints that make it hard for me to move without getting stiff. Additionally, walking has been quite unpleasant." +220,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +221,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +222,Arthritis,My neck has been extremely tight and my muscles have been feeling extremely weak. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable. +223,Arthritis,"My neck has been extremely stiff and my muscles have been extremely weak. As a result of swelling in my joints, I find it difficult to move around without feeling stiff. Additionally, walking has been extremely uneasy." +224,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable." +225,Arthritis,"My neck has been extremely tight and my muscles have been feeling extremely weak. My joints have been swollen and I've been walking around with a lot of stiffness. Additionally, walking has been extremely uneasy." +226,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable." +227,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too. +228,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable." +229,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk." +230,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swollen and it's hard for me to move around. It's also been painful to walk. +231,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. Swollen joints make it difficult for me to move around. Walking has also been difficult. +232,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints, making it difficult for me to move. Walking has also been painful." +233,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have enlarged, making it difficult for me to move. Walking has also been difficult." +234,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. It has been difficult for me to move around because my joints have been swelling. Walking has also been extremely painful. +235,Arthritis,"My muscles have been feeling feeble recently, but my neck has been rock solid. My joints have become swollen, making it difficult for me to move about. Walking has been quite uncomfortable as well." +236,Arthritis,"My muscles have been feeling rather weak lately, but my neck has been really strong. My joints have swollen, making it challenging for me to move about. It has also been excruciatingly difficult to walk." +237,Arthritis,My neck has been extremely tight and my muscles have felt quite weak recently. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable. +238,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of Pine Tree State to run whereas not getting stiff. additionally, walking has been terribly uncomfortable." +239,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, creating it troublesome on behalf of me to run regarding while not changing into stiff. Walking has additionally been agonizingly uncomfortable." +240,Arthritis,"My muscles are quite weak, and my neck has been very stiff. My joints have swollen, creating it troublesome on behalf of me to steer concerning while not feeling stiff. Walking has conjointly been very uncomfortable." +241,Arthritis,"My muscles area unit quite weak, and my neck has been terribly stiff. My joints have swollen, making it hard on behalf of Maine to steer regarding whereas not feeling stiff. Walking has put together been terribly uncomfortable." +242,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's onerous on behalf of me to run while not obtaining stiff. in addition, walking has been extraordinarily uncomfortable." +243,Arthritis,My neck has been very tight and my muscles have felt quite weak recently. it's tough on behalf of me to maneuver around while not changing into stiff thanks to my swollen joints. Walking has additionally been very uncomfortable. +244,Arthritis,"Recently, when I try to walk about, I have stiffness, a stiff neck, swollen joints, and muscular weakness. Walking has also been really uncomfortable." +245,Arthritis,"Lately i have been experiencing muscle weakness, a stiff neck, swelling joints, and stiffness after I attempt to move around. it is also been very painful to steer." +246,Arthritis,"Recently, the muscles in my neck have become tight and weak. It's difficult for me to run now since my joints are older without getting tight. The act of walking has also been quite unpleasant." +247,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of American state to run whereas not getting stiff. additionally, walking has been very uncomfortable." +248,Arthritis,"Recently, the muscles in my neck have become tight and weak. Since my joints have matured, it is difficult for the American government for me to run without becoming stiff. Walking has also been quite unpleasant." +249,Arthritis,"Lately, I've been having stiffness and weakness in my neck muscles. Since my joints have matured, it is difficult for the American state to operate without becoming stiff. Furthermore, walking has been quite painful." +250,Acne,I've been having a really bad rash on my skin lately. It's full of pus-filled pimples and blackheads. My skin has also been scurring a lot. +251,Acne,I've just developed a severe rash on my skin. It's clogged with pus-filled pimples and blackheads. My skin has also been quite sensitive. +252,Acne,"My skin has been breaking out in a terrible rash lately. Blackheads and pus-filled pimples abound on it. Additionally, my skin has been scurring a lot." +253,Acne,"I've recently been experiencing a severe skin rash. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been scurring a lot." +254,Acne,I've been having a very unhealthy rash on my skin latterly. It's filled with pus-filled pimples and blackheads. My skin has additionally been scurring heaps. +255,Acne,My skin has just acquired a nasty rash. It's full of pus-filled pimples and blackheads. My skin has been really sensitive as well. +256,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive." +257,Acne,"I recently experienced a severe skin rash. Blackheads and pimples filled with pus are clogging it. Additionally, my skin has been quite irritated." +258,Acne,My skin has recently been severely rashy. Blackheads and pus-filled pimples have blocked it. My skin has been quite delicate as well. +259,Acne,Lately I've been experiencing a skin rash with a lot of pus-filled pimples and blackheads. My skin has also been scurring a lot. +260,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot." +261,Acne,My skin has now developed a revolting rash. There are pus-filled pimples and blackheads everywhere. My skin has also been really sensitive. +262,Acne,"My skin has developed a horrible rash. There are blackheads and pus-filled pimples everywhere. Furthermore, my skin has been exceedingly sensitive." +263,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive." +264,Acne,My skin has simply nonheritable a nasty rash. It's packed with pus-filled pimples and blackheads. My skin has been very sensitive moreover. +265,Acne,"My skin has developed a terrible rash that is not inherited. It has a lot of blackheads and pus-filled pimples. Furthermore, my skin has been exceedingly sensitive." +266,Acne,"Recently, I've been experiencing a lot of acne breakouts with pimples that contain pus. I've also been struggling with blackheads." +267,Acne,I woke up this morning and found that I have a really nasty rash all over my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +268,Acne,I've been noticing a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +269,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +270,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +271,Acne,I woke up this morning to find a really nasty rash on my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +272,Acne,I've been struggling with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +273,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying. +274,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying. +275,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying everywhere. +276,Acne,I recently had a horrible rash on my skin. There are several blackheads and pus-filled pimples. My skin has also been moving around a lot. +277,Acne,"This morning when I woke up, I discovered that I have an extremely bad rash all over my body. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot." +278,Acne,I awoke this morning to see that I had a horrible rash all over my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about. +279,Acne,I've just developed a skin rash with several pus-filled pimples and blackheads. My skin has also been quite sensitive. +280,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot." +281,Acne,"I woke up this morning to find that I have a terrible rash all over my body. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been changing a lot." +282,Acne,"When I awoke this morning, I realised that I had a severe rash all over my body. There are many pus-filled pimples and blackheads all over the place. My skin has also been scurring a lot." +283,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying about. +284,Acne,I awoke this morning to see a horrible rash on my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about. +285,Acne,"This morning when I woke up, I discovered an extremely bad rash on my skin. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot." +286,Acne,I've recently been battling a pretty itchy rash on my skin. There are pus-filled pimples and blackheads all over it. My skin has also been scurring a lot. +287,Acne,"This morning, I realized that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot." +288,Acne,"I woke up today to find that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot." +289,Acne,"I woke up this morning to find that I had a major rash all over my body. It's covered in pus-filled pimples and blackheads, and my skin has been scurrying a lot" +290,Acne,"This morning, I saw a large rash all over my body. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot." +291,Acne,"I discovered that I had a significant rash all over my body this morning. Blackheads and pus-filled pimples are proliferating, and my skin has been scurrying a lot." +292,Acne,"Yesterday, I noticed an enormous rash all over my skin. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot." +293,Acne,"I discovered a huge rash on my skin yesterday. My face is covered of blackheads and pus-filled pimples, and my skin has been crawling a lot." +294,Acne,"My skin has a horrible rash that is absolutely nonheritable. Blackheads and pus-filled pimples abound on it. In addition, my skin has been quite sensitive." +295,Acne,"My skin has merely developed an uninherited rash. It has a lot of pus-filled pimples and blackheads. Furthermore, my skin has been quite sensitive." +296,Acne,"When I awoke this morning, I saw a severe rash across my skin. There are many pus-filled pimples and blackheads all over the place. My skin has also been shifting a lot." +297,Acne,"When I woke up this morning, I saw a terrible rash on my skin. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been shifting a lot." +298,Acne,"I've recently struggled with a really irritating skin rash. There are blackheads and pus-filled pimples all over it. Additionally, my skin has been scurring a lot." +299,Acne,I've recently been dealing with an itching rash on my skin. It's covered in pus-filled pimples and blackheads. My skin has also been quite sensitive. +0,Bronchial Asthma,"I have been feeling extremely tired and weak, and I've also been coughing a lot with difficulty breathing. My fever is very high, and I'm producing a lot of mucus when I cough." +1,Bronchial Asthma,"I've got a cough that won't go away, and I'm exhausted. I've been coughing up thick mucous and my fever is also pretty high." +2,Bronchial Asthma,"I have a persistent cough and have been feeling quite fatigued. My fever is through the roof, and I'm having trouble breathing. When I cough, I also cough up a lot of mucous." +3,Bronchial Asthma,"I've been having issues with exhaustion, a dry cough, and breathing. I have a very high fever and have been coughing up a lot of thick, mucoid phlegm." +4,Bronchial Asthma,"I feel really fatigued and weak, and I have a bad cough. My fever is really high, and my breathing has become shallow. When I cough, a lot of saliva comes out as well." +5,Bronchial Asthma,"I've had a lot of sleepiness, a cough that refuses to go away, and breathing difficulty. I've been coughing up a lot of thick, mucoid saliva and have a high fever." +6,Bronchial Asthma,"doctor, i have been having high fever since past few days , saliva also became thick , dry cough , weakness also seen" +7,Bronchial Asthma,"I have a cough that has continued for days, and I feel really weak and tired. My fever is high, and my breath has become strained. When I cough, I also generate a lot of mucus." +8,Bronchial Asthma,"Mom, Dad, I've been feeling really tired and weak lately, and I've had this cough that just won't go away. It's been hard for me to catch my breath, and my fever has been really high. When I cough, I've been producing a lot of mucus." +9,Bronchial Asthma,"Hey Mom, Hey Dad, I've been feeling really exhausted lately and have had this persistent cough. My breathing has become shallow, and my fever is very high. I've also been coughing up a lot of thick, mucoid sputum" +10,Bronchial Asthma,"Recently, I've felt quite weak and exhausted, and I've also had a cough that simply won't go away. My fever has been really high, and it has been challenging for me to catch my breath. I've been making a lot of mucous when I cough." +11,Bronchial Asthma,"I've felt terribly weak and drained, and I've also had a cough that that won't go away. My fever has been exceptionally high, and it has been challenging to try to catch my breath. I've been creating a lot of mucous when I cough." +12,Bronchial Asthma,"I'm feeling really tired and weak lately, and I've had this cough that just won't go away. My breathing has become shallow, and my fever has been really high. When I cough, I've been producing a lot of thick, mucoid sputum" +13,Bronchial Asthma,"feeling extremely exhausted and have had this persistent cough. It's been hard for me to catch my breath, and my fever is very high. I've also been producing a lot of mucus when I cough" +14,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum." +15,Bronchial Asthma,"I've had a nagging cough that won't go away, and my breathing has become labored. My fever is also very high, and I'm feeling very weak and tired. I've been producing a lot of mucus when I cough" +16,Bronchial Asthma,"I've been experiencing a high fever, a persistent cough, and shortness of breath. I've also been producing a lot of thick, mucoid sputum, and I'm feeling very tired and weak." +17,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so drained and tired from having to deal with all of this." +18,Bronchial Asthma,"I've had this cough that's been lingering for days and difficulty breathing. My fever is sky-high, and I'm feeling so weak and tired. I've also been producing a lot of mucus when I cough, and it's just been so overwhelming to deal with all of these symptoms. I'm getting so frustrated with all of this." +19,Bronchial Asthma,"I've had a persistent cough for days, and I also have breathing problems. I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything." +20,Bronchial Asthma,"I've been struggling with difficulty breathing, a constant cough, and fatigue. My fever is extremely high, and I've been coughing up a lot of thick, mucoid sputum. It's been so hard to deal with all of this, and I'm just feeling so drained and worn out" +21,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so exhausted and tired from having to cope with all of this." +22,Bronchial Asthma,"I've been feeling really ill lately. I've had this persistent cough and difficulty breathing, and my fever has been off the charts. I'm also feeling extremely exhausted, and I've been producing a lot of mucus when I cough. It's just been so overwhelming to deal with all of these symptoms" +23,Bronchial Asthma,"Recently, I've been feeling terrible. My fever has been through the roof, and I've had a persistent cough and breathing problems. I've been coughing up a lot of phlegm and am also feeling quite weary. Dealing with all of these symptoms has been quite difficult." +24,Bronchial Asthma,"I've had a fever, a cough that won't go away, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I feel quite worn out and weak." +25,Bronchial Asthma,"Hey, I've had a dry cough, breathing difficulties, as well as a high fever. a lot of mucous is being produced, and I feel incredibly weak and tired.""" +26,Bronchial Asthma,"Recently, I have had a number of concerning symptoms, including a dry cough, impaired breathing, a high fever, and a lot of mucus. I also feel very weak and tired." +27,Bronchial Asthma,"I am currently dealing with a number of health issues, including a dry cough, difficulty breathing, a high fever, and increased mucus production. I am also feeling very weak and tired" +28,Bronchial Asthma,"its been a week , i am suffering from continious health issues like dry cough , problems in breathing , weakness throughout the day." +29,Bronchial Asthma,"Doctor , from couple of days i am not able to brethe propelry , lying on bed due to high fever , lot of mucus gets out . please suggest me some medicines." +30,Bronchial Asthma,"I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling so drained and exhausted. It's been so hard to deal with all of this." +31,Bronchial Asthma," I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything." +32,Bronchial Asthma," must confess that I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling quite drained and exhausted. It's all been rather tough to deal with, and I'm feeling quite sick at the moment" +33,Bronchial Asthma,"I must admit that I have been having a high fever, a persistent cough, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I've been feeling really depleted and worn out." +34,Bronchial Asthma,"I've been having a tough time with this constant cough, difficulty breathing, and fatigue. My fever is high, and I've been coughing up a lot of thick, mucoid sputum. It's all been rather draining and exhausting, and I'm feeling quite sick at the moment." +35,Bronchial Asthma,"I've been struggling with a persistent cough, breathing issues, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really tiring and exhausting, and right now I'm feeling rather ill." +36,Bronchial Asthma,"I've been dealing with a bad cough, breathing issues, and drowsiness. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really exhausting and exhausting, and right now I'm feeling rather ill." +37,Bronchial Asthma,"My persistent cough, breathing problems, and exhaustion have been making things difficult for me. I've been producing copious amounts of thick, mucoid sputum while also having a high fever. I'm currently feeling fairly ill because everything has been so tiring and exhausting." +38,Bronchial Asthma,"With my persistent cough, respiratory issues, and exhaustion, I've been struggling. I have a high fever and have been producing a lot of thick, mucoid sputum while coughing. I currently feel rather sick as a result of how draining and tiresome everything has been." +39,Bronchial Asthma,"My fever is through the roof, and I'm so weak and tired out. I've been coughing up a lot of mucous, and managing all of these symptoms has been really hard. Everything is making me so upset." +40,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feelinf too tired. Please recommend some medications for me." +41,Bronchial Asthma,"Hey, I've got a dry cough, trouble breathing, and a high fever. I'm producing a lot of mucus and am feeling quite weak and exhausted." +42,Bronchial Asthma,"I've been coughing nonstop for days, and I also have respiratory issues. My fever is through the roof, and I'm so weak and worn out. All of these symptoms have been really challenging for me to control," +43,Bronchial Asthma,"In addition to sleepiness, I've been having trouble breathing due to a persistent cough. I've been coughing up a lot of thick, mucoid sputum and have a high fever." +44,Bronchial Asthma,"I've been struggling to breathe, coughing constantly, and feeling worn out. I have a very high fever and have been coughing up a lot of thick, mucoid saliva. I simply feel so worn out and exhausted from trying to deal with everything." +45,Bronchial Asthma,"I've been experiencing difficulty breathing, a chronic cough, and weariness. I've been producing a lot of thick, mucoid sputum while also running a very high temperature. Due to having to cope with all of this, I'm simply feeling extremely worn out and exhausted." +46,Bronchial Asthma,"Hello, Mom and Father Recently, I've felt incredibly worn out and have had a cough that won't go away. My fever is really high, and my breathing has become shallow. Additionally, I've been coughing up a lot of mucous, thick sputum." +47,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum." +48,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feeling too tired.sometimes mucus has been seen too.Please recommend some medications for me." +49,Bronchial Asthma,"I've had ongoing health problems for a week, including a dry cough, breathing difficulties, and general weakness." +50,Hypertension,"I have been experiencing a headache, chest pain, dizziness, and difficulty maintaining my balance. I also feel like I am having trouble concentrating" +51,Hypertension,"Along with a headache, chest pain, instability, and balance issues, I've also been feeling dizzy. I also think I'm having problems focusing." +52,Hypertension,"Along with a head pain, chest pain, instability, and balance issues, I've also been feeling unwell. I also think I'm having problems focusing." +53,Hypertension,"In addition to a head pain, chest pain, instability, and balance issues, I've already been feeling unwell. I also suppose I'm having issues focusing." +54,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. My ability to concentrate and focus has also been challenging." +55,Hypertension,"I have been having a headache, chest pain, dizziness, and trouble with my balance. It has also been hard for me to focus and concentrate." +56,Hypertension,"I've been encountering trouble walking, a headache, chest pain, and dizziness. My concentration skills and focus has also been challenging." +57,Hypertension,"I've been encountering poor balance, a headache, chest pain, and dizziness. My ability to pay attention and focus has also been problematic." +58,Hypertension,"My coordination has been off, and I've been experiencing a headache, chest pain, and dizziness. Additionally, I've had trouble concentrating and focusing." +59,Hypertension,"My symptoms include a headache, chest pain, dizziness, lack of balance, and trouble concentrating." +60,Hypertension,"I have been experiencing symptoms such as a headache, chest pain, dizziness, loss of balance, and difficulty focusing." +61,Hypertension,"I've been suffering from symptoms including a headache, chest pain, dizziness, losing my balance, and trouble concentrating." +62,Hypertension,"Headache, chest discomfort, dizziness, lack of balance, and difficulty concentrating are some of the symptoms I've been having." +63,Hypertension,"Along with a headache and chest pain, I also experienced fainting and balance issues. Additionally, I've discovered that it's hard for me to focus." +64,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. I've also realised that I'm having trouble focusing." +65,Hypertension,"My balance has been off, and I have a headache, chest pain, and dizziness. I've also observed that it's hard for me to concentrate." +66,Hypertension,"I've been experiencing balance issues, chest pain, headaches, and pains. I've been having trouble focusing as well." +67,Hypertension,"I have been experiencing chest pain, dizziness, and a headache that feels like a continual pressure in my forehead." +68,Hypertension,"I have been feeling lightheaded and unsteady on my feet, and have also noticed a decline in my ability to focus and concentrate." +69,Hypertension,"I've been experiencing dizziness and shakiness, as well as a loss in my attention span and ability to concentrate." +70,Hypertension,"I've been experiencing dizziness and anxiousness, as well as a loss in my attention and concentration and ability to concentrate." +71,Hypertension,"I've had intense aches in my chest, a headache that won't go away, and I've been feeling dizzy and unsteady." +72,Hypertension,"I've had intense aches in my chest, a head  pain that refuses to go away, and I've been feeling dizzy and unsteady." +73,Hypertension,"Along with chest pain, dizziness, and a headache that feels like a narrow zone around my head, I have been having a lot of trouble." +74,Hypertension,"I have been struggling with a headache that feels like a tight band around my head, along with chest pain and dizziness." +75,Hypertension,I've been experiencing balance issues in addition to feeling disoriented and dizzy. My headache has also been present nonstop. +76,Hypertension,"I have been feeling disoriented and dizzy, and have also had trouble keeping my balance. My headache has been a constant presence as well." +77,Hypertension,"I've been experiencing balance issues along with feeling dizzy and lightheaded. Additionally, I've seen a drop in my concentration and focus." +78,Hypertension,"In addition to feeling dizzy and lightheaded, I've been having problems keeping my equilibrium. My capacity to concentrate and focus has also been slipping, I've noticed." +79,Hypertension,"I have been experiencing a headache that feels like a sharp pain in my temples, along with chest pain and dizziness." +80,Hypertension,"Along with a chest pain and dizziness, I've had a headache that seems like a sharp pain in my forehead." +81,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a walk. It's been hard for me to focus and concentrate since then." +82,Hypertension,"While taking a walk, I suddenly started experiencing headache, chest pain, and dizziness after feeling fine all day. Since then, it has been challenging for me to concentrate and focus." +83,Hypertension,"I woke up this morning with a headache and chest pain, and as the day has gone on, I've also been feeling dizzy and unsteady on my feet" +84,Hypertension,"I had a headache and chest pain this morning, and as the day wore on, I also started to feel unsteady and unstable on my feet." +85,Hypertension,"I have been dealing with a headache and chest pain for a few days now, but today the dizziness and loss of balance became much worse." +86,Hypertension,"For a few days now, I've been suffering from a headache and chest pain, but today the dizziness and lack of balance got considerably worse." +87,Hypertension,"I was at work when I started feeling a headache, chest pain, and dizziness. It's been hard for me to concentrate and focus on my tasks since then." +88,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was at work. Since then, it has been challenging for me to focus and concentrate on my work." +89,Hypertension,"I was in the middle of a workout when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to maintain my balance since then" +90,Hypertension,"I instantly experienced a headache, chest pain, and dizziness while working out. Since then, it has been challenging for me to keep my balance." +91,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while driving home from work. It's been hard for me to focus and concentrate on the road since then." +92,Hypertension,"I felt fine all day, but when I was driving home from work, I suddenly started to have headache, chest discomfort, and dizziness. Since then, it has been challenging for me to concentrate and focus while driving." +93,Hypertension,"I was out shopping when I started feeling a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my tasks since then." +94,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was out shopping. Since then, it has been difficult for me to concentrate on my work." +95,Hypertension,"I woke up this morning feeling fine, but as the day went on, I started experiencing a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my work since then." +96,Hypertension,"I felt good when I woke up this morning, but as the day wore on, I began to feel headachey, sick to my stomach, and dizzy. Since then, it has been challenging for me to concentrate and focus on my work." +97,Hypertension,"I was in the middle of a meeting when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on the discussion since then." +98,Hypertension,"I suddenly experienced a headache, chest pain, and dizziness in the middle of a conference. Since then, it has been challenging for me to concentrate and focus on the topic." +99,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a run. It's been hard for me to maintain my balance since then" +100,Migraine,"I have been experiencing acidity and indigestion after meals, as well as frequent headaches and blurred vision." +101,Migraine,"I've been getting frequent headaches and hazy vision, as well as acid reflux and indigestion after meals." +102,Migraine,"I have been having trouble with my vision, seeing things as distorted and experiencing visual disturbances." +103,Migraine,"I've been suffering visual disruptions, seeing things as distorted, and eyesight problems." +104,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties." +105,Migraine,"I have been feeling excessively hungry, even after eating, and have had a stiff neck." +106,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties." +107,Migraine,"I've been grumpy and gloomy lately, and I've also noticed a change in my vision." +108,Migraine,"I have been feeling depressed and irritable, and have noticed a change in my vision." +109,Migraine,"I've been irritated and depressed lately, and I've also noticed a change in my vision." +110,Migraine,"Along with recurrent headaches and blurred vision, I suffer acid reflux and trouble digesting my food." +111,Migraine,"I have been experiencing acid reflux and difficulty digesting my food, along with regular headaches and impaired vision" +112,Migraine,"I have been feeling hungry all the time and have had a sore neck, as well as problems with my vision." +113,Migraine,"In addition to having a stiff neck and eye issues, I have been always hungry." +114,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +115,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux." +116,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been suffering indigestion, headaches, blurred vision, and stomach problems." +117,Migraine,"I have been suffering from acid reflux, indigestion, frequent headaches, and impaired vision, as well as excessive hunger, a sore neck, depression, irritability, and visual disturbance." +118,Migraine,"Along with increased hunger, a sore neck, melancholy, impatience, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and blurred eyesight." +119,Migraine,"Together with increased hunger, a sore neck, anxiety, irritation, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and impaired eyesight." +120,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as regular headaches and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +121,Migraine,"In addition to recurrent headaches and blurred vision, increased appetite, a stiff neck, sadness, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity." +122,Migraine,"In add to frequent headaches and blurred vision, increased appetite, a stiff neck, anxiety, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity." +123,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +124,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been experiencing blurred and distorted vision." +125,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been feeling blurred and distorted vision." +126,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as frequent headaches and impaired vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance" +127,Migraine,"Acidity and indigestion are among the digestive problems I've been having, along with regular headaches, blurred vision, increased hunger, stiff neck, sadness, impatience, and visual disruption." +128,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +129,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and regular headaches." +130,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, anxiety, irritability, and regular headaches, I have also been battling acid reflux, indigestion, and regular headaches." +131,Migraine,"I have been experiencing acidity, indigestion, and frequent headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance." +132,Migraine,"Stomach acid, indigestion, frequent headaches, hazy and distorted vision, increased appetite, stiff neck, depression, irritation, and visual distortion have all been bothering me." +133,Migraine,"I have been struggling with digestive issues, including acid reflux and indigestion, as well as regular headaches and impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance" +134,Migraine,"I have been experiencing frequent headaches, blurred vision, excessive appetite, a sore neck, sadness, irritability, and digestive problems including indigestion and acid reflux." +135,Migraine,"I have been enduring frequent headaches, blurred vision, excessive appetite, a sore neck, anxiety, irritability, and digestive difficulties including indigestion and acid reflux." +136,Migraine,"I have been experiencing acidity, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance" +137,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion." +138,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion." +139,Migraine,"I have been suffering from acid reflux, indigestion, and frequent headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance." +140,Migraine,"Along with impaired eyesight, increased appetite, a sore neck, melancholy, impatience, and regular headaches, I've also been experiencing heartburn, acid reflux, and indigestion." +141,Migraine,"Along with impaired seeing, excessive eating, a sore neck, melancholy, impatience, and constant headaches, I've also been fighting heartburn, acid reflux, and indigestion." +142,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort." +143,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been bothering me and interfering with my usual activities." +144,Migraine,"As well as with excessive appetite, a tense neck, depression, irritability, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been disturbing me and interfering with my usual activities." +145,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of distress and making it difficult to go about my daily activities." +146,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent migraines. My regular activities have been made more challenging by these symptoms, which have been causing me a great deal of distress." +147,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent dizziness. My regular activities have been made more tough by these symptoms, which have been causing me a great deal of distress." +148,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort." +149,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of problems and making it difficult to concentrate and function normally." +150,Cervical spondylosis,"I have been experiencing severe back pain, a persistent cough, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance." +151,Cervical spondylosis,"Along with a chronic cough and limb weakness, I've been dealing with excruciating back discomfort. I've been experiencing neck pain as well as vertigo and instability." +152,Cervical spondylosis,"I have been suffering from back pain, a hacking cough, and weakness in my arms and legs. Additionally, my neck hurts and I have had issues with dizziness and maintaining my balance." +153,Cervical spondylosis,"Back pain, a hacking cough, and numbness in my arms and legs have been bothering me. In addition, my neck hurts, and I've having trouble staying balanced and without getting lightheaded." +154,Cervical spondylosis,"Back pain, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy." +155,Cervical spondylosis,"Pain typically, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy." +156,Cervical spondylosis,"I have been struggling with back pain, a cough that won't go away, and weakness in my extremities. My neck hurts and I have had problems with dizziness and losing my balance." +157,Cervical spondylosis,"Back discomfort, a persistent cough, and weakness in my limbs have been bothering me. I have issues with vertigo and losing my equilibrium, and my neck hurts." +158,Cervical spondylosis,"Back discomfort, a breathing difficulty, and weakness in my limbs have been hurting me. I have issues with vertigo and losing my balance, and my neck hurts." +159,Cervical spondylosis,"I have been experiencing intense back pain, a dry cough, and a lack of strength in my limbs. My neck hurts and I have been feeling dizzy and unsteady on my feet." +160,Cervical spondylosis,"I've been struggling with severe back pain, a dry cough, and limb weakness. I've been feeling lightheaded and wobbly on my feet, and my neck hurts." +161,Cervical spondylosis,"I've been battling with back pain, a dry cough, and limb weakness. I've been feeling dizzy and unstable on my feet, and my neck hurts." +162,Cervical spondylosis,"I've been struggling with back pain, a chronic cough, and limb weakness. I've been feeling disoriented and weak on my feet, and my neck hurts." +163,Cervical spondylosis,"I have been suffering from back pain, a productive cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and balance." +164,Cervical spondylosis,"Back pain, a productive cough, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck hurts." +165,Cervical spondylosis,"Backache, a difficulty breathing, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck suffers." +166,Cervical spondylosis,"I have been struggling with back pain, a persistent cough, and weakness in my muscles. My neck hurts and I have had problems with dizziness and loss of balance." +167,Cervical spondylosis,"Back pain, a lingering cough, and muscle weakness have been bothering me. I have issues with dizziness and losing my equilibrium, and my neck hurts." +168,Cervical spondylosis,"Back pain, a chronic cough, and muscle weakness have been bothering me. I have concerns with dizziness and losing my position, and my neck hurts." +169,Cervical spondylosis,"I have been experiencing severe back pain, a cough that comes and goes, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance." +170,Cervical spondylosis,"I've been having intermittent coughing fits, significant back pain, and limb weakness. I've been experiencing neck pain as well as a dizzy and unsteady sensation." +171,Cervical spondylosis,"I've been having periodic coughing fits, terrible back pain, and limb weakness. I've been feeling neck pain as well as a dizzy and unstable sensation." +172,Cervical spondylosis,"I have been dealing with back pain, a cough that won't go away, and weakness in my arms and legs. My neck hurts and I have had problems with dizziness and maintaining my balance." +173,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts." +174,Cervical spondylosis,"Back pain, a dry cough, and stiffness in my arms and legs have been bothering me. I've had problems staying balanced and experience dizziness, and my neck hurts." +175,Cervical spondylosis,"I've been experiencing back pain, a persistent cough, and numbness in my arms and legs. I've been having trouble staying balanced and managing my vertigo, and my neck hurts." +176,Cervical spondylosis,"My arms and legs have been weak, and I have been suffering from back pain and a persistent cough. In addition to experiencing neck pain and balance issues, I also suffer dizziness." +177,Cervical spondylosis,"Back pain, a persistent cough, and arm and leg weakness have been bothering me. I've been experiencing neck pain, balance issues, and dizziness." +178,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts." +179,Cervical spondylosis,"I have been suffering from back pain, a dry cough, and a lack of strength in my muscles. My neck is sore and I have been feeling dizzy and unsteady on my feet" +180,Cervical spondylosis,"Back pain, a dry cough, and a lack of muscle strength have been bothering me. My neck hurts, and I've been feeling lightheaded and shaky." +181,Cervical spondylosis,"My muscles lack strength, and I have been experiencing back pain and a dry cough. I've been experiencing neck pain and feeling lightheaded and unstable on my feet." +182,Cervical spondylosis,"My muscles haven't been very strong, and I've been experiencing back ache. I've been feeling lightheaded and wobbly on my feet, and my neck hurts." +183,Cervical spondylosis,"I've been experiencing back pain, a dry cough, and muscle weakness. I've been experiencing neck pain, feeling lightheaded, and having trouble standing still." +184,Cervical spondylosis,"I have been struggling with intense back pain, a chronic cough, and weakness in my arms and legs. My neck is sore and I have had problems with dizziness and loss of balance." +185,Cervical spondylosis,"I've had terrible back pain, a persistent cough, and weakness in my arms and legs. I have issues with dizziness and balance loss, and my neck hurts." +186,Cervical spondylosis,"I've been suffering from severe back pain, a persistent cough, and numbness in my arms and legs. I've been experiencing issues with vertigo and balance issues, and my neck hurts." +187,Cervical spondylosis,"Along with a persistent cough, weakness in my arms and legs, and severe back pain, I've been having a lot of trouble. I've experienced issues with vertigo and balance loss, and my neck is hurting." +188,Cervical spondylosis,"I have been experiencing severe back pain, a cough that produces phlegm, and weakness in my muscles. My neck also hurts and I have been feeling dizzy and unsteady on my feet." +189,Cervical spondylosis,"In addition to having excruciating back pain, I've also been coughing up mucus and feeling weak all over. I've been feeling lightheaded and unstable on my feet, and my neck hurts as well." +190,Cervical spondylosis,"My muscles have been quite weak, and I've been coughing up phlegm along with significant back discomfort. In addition to feeling weak and disoriented, my neck has been hurting." +191,Cervical spondylosis,"Along with a phlegmy cough and muscle weakness, I've been dealing with excruciating back pain. In addition to feeling woozy and shaky on my feet, my neck has been hurting." +192,Cervical spondylosis,"I have been dealing with back pain, a persistent cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and loss of balance." +193,Cervical spondylosis,"Back ache, a chronic cough, and limb weakness have been bothering me. I have troubles with disorientation and balance loss, and my neck hurts." +194,Cervical spondylosis,"I've had back pain, a cough that won't go away, and limb weakness. I've been experiencing neck pain, instability, and balance concerns." +195,Cervical spondylosis,"I have been suffering from back pain, a chronic cough, and weakness in my arms and legs. My neck hurts and I have been feeling dizzy and off balance" +196,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. My neck hurts, and I've been feeling lightheaded and unsteady." +197,Cervical spondylosis,"I've had back pain, a persistent cough, and weakness in my arms and legs. My neck hurts, and I've been feeling off-balance and woozy." +198,Cervical spondylosis,"I have been struggling with back pain, a productive cough, and weakness in my muscles. My neck is sore and I have had problems with dizziness and unsteady balance." +199,Cervical spondylosis,"Back pain, a productive cough, and muscle weakness have been bothering me. I have issues with dizziness and uneven balance, and my neck hurts." +200,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain." +201,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +202,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach has been hurting." +203,Jaundice,"Extreme itchiness, sickness, and exhaustion have all been plaguing me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +204,Jaundice,I have been having severe itching and vomiting. I am also very tired and have lost weight. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain +205,Jaundice,"I've been experiencing intense itching and nausea. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +206,Jaundice,"I've been throwing up and experiencing intense itching. Along with losing weight, I'm also really exhausted. My skin has become yellow, and my fever is really high. I've been having stomach pain and my pee is black." +207,Jaundice,"Strong itchiness and nausea have been bothering me. I have also lost weight and am really exhausted. I have a high fever, and my skin is becoming yellow. In addition to feeling stomach ache, my pee is black." +208,Jaundice,I've been experiencing terrible itching and nausea. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. I have dark urine and stomach ache. +209,Jaundice,I have been feeling itchy and have been vomiting. I am also very fatigued and have lost weight. My fever is high and my skin has become yellow. My urine is dark and I have abdominal pain +210,Jaundice,"I've been feeling scratchy and throwing up. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have stomach ache and black urine." +211,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. Additionally, I get stomach ache and dark urine." +212,Jaundice,"I've had a scratchy stomach and been throwing up. Aside from losing weight, I am also really exhausted. I have a high fever and yellow skin. Besides having stomach ache, my pee is black." +213,Jaundice,"I've been itchy and throwing up. In addition, I have lost weight and feel really exhausted. My skin has become yellow and I have a severe temperature. I have abdominal ache and black urine." +214,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +215,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain" +216,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having" +217,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +218,Jaundice,"I've had nausea, vomiting, and exhaustion. Additionally, I've lost weight and have a temperature. My urine is black and my skin has turned yellow. I've also been having stomach pain." +219,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well." +220,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +221,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +222,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +223,Jaundice,"I've been constantly feeling scratchy, sick, and tired out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Furthermore, I have been experiencing stomach pain." +224,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain." +225,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain." +226,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain." +227,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts." +228,Jaundice,"Extreme itchiness, nausea, and exhaustion have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present." +229,Jaundice,"Extreme itchiness, nausea, and fatigue have been troubling me. In moreover, I experienced a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present." +230,Jaundice,I have been feeling itchy and have been vomiting. I am also very tired and have lost weight. My fever is high and my skin has become yellow. I have been experiencing abdominal pain as well. +231,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. My stomach has also been hurting recently." +232,Jaundice,"I've had a scratchy stomach and been throwing up. I have also lost weight and am really exhausted. I have a high fever and yellow skin. As well as you, I have been having stomach pain." +233,Jaundice,I've been itchy and throwing up. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. My stomach has also been hurting. +234,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain." +235,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain" +236,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having" +237,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache." +238,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well." +239,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain." +240,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain." +241,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain." +242,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain." +243,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts." +244,Jaundice,"I have been experiencing itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain." +245,Jaundice,"I've been losing weight and experiencing nausea, itching, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +246,Jaundice,"I have been suffering from intense itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain" +247,Jaundice,"I've been losing weight and experiencing severe itching, nausea, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +248,Jaundice,"I have been experiencing severe itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain" +249,Jaundice,"I've been losing weight, feeling really fatigued, and throwing up a lot. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain." +250,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. I feel nauseous and my muscles are really sore" +251,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot." +252,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot." +253,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. My muscles are quite sore, and I feel sick." +254,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, My muscles hurt a lot, and I feel queasy." +255,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. My muscles hurt a lot, and I feel sick." +256,Malaria,"I've had intense itching all over my body, accompanied by chills and vomiting. My fever is really high and I've been sweating excessively. I also have a headache and feel nauseous. My muscles are really painful." +257,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort." +258,Malaria,"Along with severe body itchiness, chills, and nausea, I've been experiencing. I've been severely perspiring and have a very high fever. I'm feeling queasy and also have a headache. Really hurting muscles are me." +259,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort." +260,Malaria,"I've been experiencing severe body itchiness, along with chills and nausea. I've been perspiring a lot and have an extremely high fever. I feel sick to my stomach and have a headache. My muscles are hurting a lot." +261,Malaria,"I'm suffering from intense itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been bothering me." +262,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +263,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +264,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been bothered by nausea as well as muscle ache." +265,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and have been perspiring a lot. I've also been bothered by nausea and muscular ache." +266,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +267,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +268,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me discomfort." +269,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +270,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache." +271,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. I have a headache and am also perspiring a lot. I've been uncomfortable from nausea and muscle ache, too." +272,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been suffering from nausea as well as muscle ache." +273,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +274,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable." +275,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles." +276,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache." +277,Malaria,"I have a high fever, chills, and severe itching. Along with my headache and excessive sweating, I've been terrible with nausea and muscle ache." +278,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and am perspiring a lot. I've been feeling awful with nausea and muscle ache." +279,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been causing me a lot of discomfort." +280,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I've been really uncomfortable lately from nausea and muscle ache." +281,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. I've been suffering from severe muscle pain and nausea." +282,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, I've been suffering from severe muscle pain and nausea." +283,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been in a lot of agony from muscle ache and nausea." +284,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been bothering me." +285,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. Additionally hurting me have been nausea and muscle soreness." +286,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache." +287,Malaria,"I have a high fever, chills, and severe itching. I have a headache and am also perspiring a lot. I've been bothered by nausea as well as muscle ache." +288,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. In addition, I have a headache and am perspiring a lot. I've also been bothered by nausea and muscular ache." +289,Malaria,"I'm suffering from severe itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been causing me discomfort." +290,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +291,Malaria,"I have a high fever, severe itching, chills, and vomiting. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache." +292,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been uncomfortable from nausea and muscle ache, too." +293,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. In addition, I have a headache and have been perspiring a lot. I've been suffering from nausea as well as muscle ache." +294,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache." +295,Malaria,"I've been experiencing intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable." +296,Malaria,"Intense scratching, chills, nausea, and a high temperature have been plaguing me. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles." +297,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache." +298,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Along with my headache and excessive sweating, I've been feeling awful with nausea and muscle ache." +299,Malaria,"I've had severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me a lot of discomfort." +0,urinary tract infection,"Frequent urges to urinate with little output, pain during urination, cloudy or bloody urine, strong or foul-smelling urine, pelvic pain, low fever, nausea and vomiting" +1,urinary tract infection,"I get frequent urges to urinate at night with little output, and a lot of pain during urination. The urine is coludy and bloody and sometime foul smelling, and I get nauseous" +2,urinary tract infection,I get a burning sensation when I pee. Sometimes a lot of pain and foul smelling urine. I have been getting more urges to urinate at night +3,urinary tract infection,I have been getting blood in my pee. Sometimes I get nauseous while peeing. This often almost coincides with me having a high temperature +4,urinary tract infection,"My pee looks cloudy and has storng and foul smell. I frequently get an urge to urinate at night, and have been getting high temperatures since these symptoms strted showing" +5,urinary tract infection,"I have pain in my abdomen, and often get feverish. I have sudden and strong urges to pee. The pain is almost constant, and often increases at night time. My pee almost always has a foul smell" +6,urinary tract infection,"I have been frequently getting sudden strong urges to pee. There is blood in my pee sometimes and it is very foul smelling. I think I have an infection, what do I do?" +7,urinary tract infection,"I get blood in my pee sometimes and sometimes get nauseous whie peeing. I also have a bad smell in my pee and sometimes get high temperatures at nights, help me" +8,urinary tract infection,"I have pain in my lower abdomen, and get a buring sensation in my pee. I also have been getting low temperatures since I started to get these other symptoms. I have been weak because of this" +9,urinary tract infection,There is blood in my urine and I have a low fever. My head hurts almost all the time and I get very strong uncontrollable urges to pee. I have been having pain in lower back also +10,urinary tract infection,I have been having low temperatures and bloody pee since some days now. My head hurts like crazy and pee also smells very foul. I have almost no control on my peeing and get very sudden urges +11,urinary tract infection,I have pain near my pelvic region and vomit a lot. Sometimes there is blood in my pee and there is almost a very foul smell in my urine.I sometimes get headches and have trouble sleeping due to this +12,urinary tract infection,"I have to constantly to go the bathroom to relieve myself, but cant seem to empty my bladder. I get these very strong and uncontrollable urges to pee and sometimes get dark or bloody pee" +13,urinary tract infection,I been having very low temperatues and a very foul smelling pee. The area near my kidneys hurt a lot and I cant seem to hold my pee. I often get these uncontrollable urges +14,urinary tract infection,"I have to go the bathroom all the time, but the urine output is very low often just a few drops. My stomach hurts a lot and and cant seem to be able to control my urges to pee" +15,urinary tract infection,My is pee is dark and often bloody and often has a very unfathomable smell. I have been having temperature fluctuations pretty frequently and often am not able to sleep at night because of this +16,urinary tract infection,I have been having pain in my bladder and have been getting +17,urinary tract infection,I have been urinating with blood in it. I occasionally feel queasy when urinating. I frequently almost have a fever at the same time. +18,urinary tract infection,"My pee has a strong, unpleasant scent and a hazy appearance. Since these symptoms started appearing, I regularly feel the desire to urinate at night and have been experiencing high temperatures" +19,urinary tract infection,"My stomach hurts, and I frequently acquire a temperature. I experience sudden, intense cravings to urinate. The discomfort is virtually always there and frequently gets worse at night. My pee nearly always smells bad." +20,urinary tract infection,"I've been experiencing frequent, intense, abrupt cravings to urinate. Sometimes I get blood in my pee, and it smells awful. What should I do if I believe I have an infection?" +21,urinary tract infection,I occasionally urinate with blood in it and occasionally feel queasy while doing so. Help! I also occasionally get high temps at night and have a terrible odour coming from my pee. +22,urinary tract infection,"I have lower abdominal ache and a bursting sensation when I urinate. Since I began to experience these additional symptoms, I have also been experiencing low body temperatures. I've been weak as a result of this." +23,urinary tract infection,"I have a mild temperature and blood in my pee. My head hurts almost constantly, and I frequently experience severe, involuntary desires to urinate. Additionally, I've been experiencing lower back ache" +24,urinary tract infection,"Since a few days ago, I've been experiencing low temperatures and bloody urination. My head is in excruciating pain, and my urine smells awful. I can hardly control when I urinate, and the impulses come on suddenly." +25,urinary tract infection,"I frequently vomit and get discomfort at my pelvic area. My urine occasionally smells almost unbearably bad, and there is occasionally blood in it. Because of my headaches at times, I have problems falling asleep." +26,urinary tract infection,"I have to use the restroom frequently to relieve myself, but I can't seem to get my bladder empty. I occasionally get severe, uncontrolled desires to urinate, as well as black or crimson urine." +27,urinary tract infection,"I've been experiencing really low moods and very bad urine odour. I can't seem to keep my urine back, and the area near my kidneys hurts a lot. I frequently experience these irrational cravings." +28,urinary tract infection,"I have to use the restroom frequently, yet only a few drops of pee are usually produced. My stomach aches a lot, and I can't seem to control the desire to urinate." +29,urinary tract infection,"My urine is frequently black, red, and has a really strange odour. I have been experiencing temperature changes very regularly, which usually prevents me from sleeping at night." +30,urinary tract infection,Blood has been found in my urination. I sometimes have nausea when urinating. I regularly feel like I'm almost feverish. +31,urinary tract infection,My pee smells strongly and is cloudy in appearance. I've had high temperatures and a regular urge to urinate at night since these symptoms first materialised. +32,urinary tract infection,"I've been having frequent, strong, sudden urges to urinate. I occasionally urinate with blood in it, and the stench is horrible. What ought I to do if I think I'm infected?" +33,urinary tract infection,"On rare occasions, I pee with blood in it and have mild nausea. Help! I also occasionally experience high nighttime temperatures and a dreadful urine odour." +34,urinary tract infection,"My lower abdomen hurts, and when I urinate, it feels like it's exploding. I've been having low body temps ever since I started having these new symptoms. Because of this, I've been weak." +35,urinary tract infection,"Blood is in my pee, and I have a low body temperature. I have practically continual headaches and often strong, uncontrollable need to urinate. In addition, I've started having lower back pain." +36,urinary tract infection,"I've had low temps and bloody urine for the past four days. My pee smells terrible, and my head hurts like hell. I scarcely have any control over when I urinate, and the urges strike without warning." +37,urinary tract infection,"I regularly vomit and get pelvic pain. There is occasionally blood in my pee, and it occasionally has an absolutely intolerable odour. I occasionally have trouble falling asleep because of my migraines." +38,urinary tract infection,"I need to relieve myself regularly, but I can't seem to get my bladder to empty. On sometimes, I get intense, uncontrollable urges to urinate, along with dark or red urine." +39,urinary tract infection,"My spirits have been incredibly low, and my pee smells awful. My kidney region hurts a lot, and I can't seem to hold my urine in. I get these unreasonable urges all the time." +40,urinary tract infection,"I have to go to the bathroom a lot, but generally only a few drops of urine come out. I have severe stomach pains and an overwhelming want to urinate." +41,urinary tract infection,"My urine often has a weird odour, is crimson or black in colour, and both. My body's temperature has been fluctuating often, which typically keeps me up at night." +42,urinary tract infection,I noticed blood in my urinating. I occasionally feel sick after urinating. I frequently feel as though I have a fever. +43,urinary tract infection,"My pee has a strong odour and a hazy look. Since these symptoms started, I've had high temperatures and frequent nighttime urges to urinate." +44,urinary tract infection,I occasionally urinate with blood in it and feel a little queasy. Help! I also occasionally get horrible pee odours and excessive overnight temps. +45,urinary tract infection,"My lower abdomen aches, and it feels like it may explode when I urinate. Since I began experiencing these new symptoms, my body temperature has been consistently low. That's why I've been weak." +46,urinary tract infection,"In the last four days, I've experienced low temperatures and blood in my pee. My head hurts so much and my urine smells awful. The desires to urinate seldom come on cue, and I hardly ever have any control over when they do." +47,urinary tract infection,"My pee frequently has an odd smell and is either red or black, or both. The frequent changes in my body temperature usually keep me awake at night." +48,urinary tract infection,My pee smells strongly and seems cloudy. I've had fevers and frequent overnight urination needs ever since these symptoms began. +49,urinary tract infection,"I've had low temps and blood in my urine for the past three days. My pee smells terrible, and my head hurts so much. Urinary urges seldom occur on cue, and I almost never have any control over when they do." +50,allergy,"I have a runny nose and I am sneezing all the time. My eyes are itchy and often watery, and I am coughing all the time. My head hurts and all the time" +51,allergy,I have sore throat and I am sneezing all the time. Sometimes I have swelling on my face like my lips and near my eyes. I just cant stop sneezing once I start sneezing +52,allergy,I hace difficulty in breething and shortness of breath. I cough uncontrollably and get itchy eyes and swelling on my face and other body parts +53,allergy,I have a nasal congestion and blocked nose. Sometimes at night I have chest pain and tightness. I have also lost my sense of smell and taste +54,allergy,I have asthma like symptoms like wheezing and difficulty breathing. I often get fever and have headaches. I feel tired all the time +55,allergy,"I feel tired all the time, I have lost my taste and have a really sore throat. I also get feverish and often have muscle aches. Sometimes my whole body just cramps up" +56,allergy,I have been experiencing a loss of appetite and have difficulty swallowing food. I have been suffering from sore throat and runnny nose also. +57,allergy,"I feel fatigued all the time, and have a tingling sensation in my throat. I have also developed flaky skin. Sometimes I get puffy eyes and sometimes puffs up too." +58,allergy,"I have stomach cramps, nausea and diarrhea. My throat is swollen, and I have difficulty breathing. Sometimes at night night I get chest pain and nauseous." +59,allergy,I have itchy and red skin. Sometimes these result in flaking. My face and lips puff up and causes a lot of inconvinience. I get watery eyes sometimes and headches when the puffing gets severe +60,allergy,"I often sneeze and have a runny nose. My eyes are scratchy and frequently runny, and I frequently cough. My head hurts constantly." +61,allergy,"I often sneeze and have a sore throat. My lips and the area around my eyes occasionally swell. Once I start sneezing, I just can't stop." +62,allergy,"I have trouble breathing and get short of breath. I have a dry, hacking cough, itchy eyes, and swelling all over my face and body." +63,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort at night. I've also lost my ability to taste and smell. +64,allergy,"I get symptoms of asthma, such as wheezing and breathing problems. I frequently have headaches and fever. All the time, I feel exhausted." +65,allergy,"I always feel exhausted, have bad taste, and have an extremely scratchy throat. I also have muscular pain and heat. My entire body simply cramps up occasionally." +66,allergy,"I've been losing my appetite, and I also have trouble swallowing. My nose has been running, and I have a sore throat." +67,allergy,I'm always worn out and experiencing a tingle in my throat. I've also started to have dry skin. My eyes occasionally swell up +68,allergy,"I feel queasy, nauseous, and dizzy. I have a swelling throat and am having breathing issues. I occasionally have chest discomfort and nausea at night." +69,allergy,"My skin is red and scratchy. These can occasionally flake. My cheeks and lips swell, which is really annoying. I occasionally have headaches and runny eyes because to the puffing." +70,allergy,"I frequently sneeze, and my nose runs. I constantly cough, and my eyes are sore and watery. My head hurts all the time." +71,allergy,I have a sore throat and frequently sneeze. Sometimes the skin around my eyes and my lips swells. I just can't stop sneezing once I get going. +72,allergy,"I have respiratory issues and experience breathlessness. My face and torso are swollen, my eyes are itching, and I have a dry, hacking cough." +73,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. Additionally, I've lost my senses of taste and smell." +74,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I constantly feel worn out." +75,allergy,"I always feel worn out, have unpleasant taste in my mouth, and have a really itchy throat. My muscles are also hot and hurting. Sometimes my whole body just cramps up." +76,allergy,"Along with losing my appetite, I've been having swallowing issues. I have a sore throat, and my nose has been running." +77,allergy,I always feel exhausted and have a tickle in my throat. My skin has also started to feel dry. I occasionally get ocular swelling. +78,allergy,"I'm dizzy, nauseated, and shaky. I'm having trouble breathing since my throat is swollen. On occasion, throughout the night, my chest hurts and I feel sick." +79,allergy,"My skin is irritated and inflamed. Sometimes, they can flake. My lips and cheeks expand, and it is really unpleasant. Because of the puffing, I occasionally have headaches and wet eyes." +80,allergy,"My nose runs and I sneeze a lot. My eyes are wet and hurt, and I cough all the time. My head aches constantly." +81,allergy,"I sneeze a lot and have a sore throat. My lips and the skin surrounding my eyes will occasionally swell. Once I start, I just can't stop sneezing." +82,allergy,"I have breathing problems and become out of breath easily. My eyes ache, I have a dry, hacking cough, and my face and body are bloated." +83,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort during the night. I've also lost my ability to smell and taste. +84,allergy,"I get wheezing and breathing difficulties, which are asthma symptoms. I frequently have headaches and fever. I'm continuously exhausted." +85,allergy,"I always feel exhausted, have a bad taste in my mouth, and my throat itches a lot. Also heated and painful are my muscles. My entire body can cramp up at times." +86,allergy,"I've been losing my appetite and having trouble swallowing. My nose has been running, and I have a sore throat." +87,allergy,I always get a tickle in my throat and feel fatigued. My skin has begun to feel dry as well. I have ocular edema on occasion. +88,allergy,"I feel queasy, sick, and wobbly. My throat is enlarged and making it difficult for me to breathe. My chest occasionally pains all through the night, and I occasionally feel ill." +89,allergy,My skin is swollen and itchy. They may occasionally flake. It hurts a lot when my cheeks and lips swell. I occasionally get headaches and watery eyes from the puffing. +90,allergy,"I sneeze a lot and my nose is running. My eyes ache and are damp, and I frequently croak. My head hurts all the time." +91,allergy,"I have a sore throat and a lot of sneezing. There are times when the skin around my eyes and my lips swell. I find that once I start, I just cannot stop." +92,allergy,"I have trouble breathing and easily get out of breath. My face and torso are swollen, my eyes hurt, and I have a dry, hacking cough." +93,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. I've also lost my senses of taste and smell." +94,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I'm always worn out." +95,allergy,"I frequently have exhaustion, a terrible taste in my mouth, and throat itchiness. My muscles are also burning and uncomfortable. Sometimes I have cramps all throughout my body." +96,allergy,"My appetite has decreased, and I've been having swallowing issues. I have a sore throat, and my nose has been running." +97,allergy,"My throat always tickles, and I'm worn out. Additionally, my skin has started to feel dry. Ocular inflammation occasionally affects me." +98,allergy,"I'm nauseous, ill, and shaky. I have a huge throat, which makes it tough for me to breathe. I occasionally have nighttime chest aches and occasional sickness." +99,allergy,"My skin is itching and swollen. Sometimes, they could flake. My lips and cheeks swelling aches a lot. The puffing occasionally gives me headaches and runny eyes." +100,gastroesophageal reflux disease,I often get aburning sensation in my throat while and especially after eating. Sometimes this also leaves a sour or bitter taste in my mouth and I get nauseos beacuse of this +101,gastroesophageal reflux disease,"I have heartburn and indigestion. I often vomit whatever I eat and have difficultly swallowing food, beacuse the food gets stuck in my throat. I have a nagging pain in my upper abdomen" +102,gastroesophageal reflux disease,"I have frequent belching and burping. I have chest pain that often radiates to the back of my neck, jaw and arm. I get a feeling of tightness and pressure on my chest" +103,gastroesophageal reflux disease,"I have a persistent sour taste in my mouth, even when I haven't eaten anything acidic. I get frequent hiccups and a feeling of lump in my throat." +104,gastroesophageal reflux disease,"I have a chronic bad breath and a sour taste in my mouth, It sometimes gets difficult to swallow food because of this tingling sensation in my throat" +105,gastroesophageal reflux disease,"I get frequent heartburn and indigestion, especially eating spicy foods or fatty foods. I get chest pain that gets worse when I lie down or bend over. I also often have chest pain" +106,gastroesophageal reflux disease,"I have a loss of appetite and difficulty swallowing. I often have this persistent feeling of fullness, even after eating small meals. I usually throw up and get heartburn and a tingling sensation in my throat" +107,gastroesophageal reflux disease,"I have a sore throat or hoarseness, especially in the morning. I have a chronic nagging pain in my throat and bad breath. I also have frequent belching" +108,gastroesophageal reflux disease,"I have a feeling of food or acid backing up into my throat. I chest pain which gets worse if I lie down. I get frequent heartburn or indigestion, after eating food and vomit it out" +109,gastroesophageal reflux disease,I feel uneasiness after eating and usually vomit whatever I've eaten. I always have this pain in my abdomen and have really bad acid reflux +110,gastroesophageal reflux disease,"My throat frequently feels like it is burning, especially after eating. Additionally, I occasionally get a sour or bitter aftertaste, which causes me to feel queasy." +111,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and I have trouble swallowing food because it gets caught in my throat. My upper abdomen is bothering me." +112,gastroesophageal reflux disease,"My burping and belching are frequent. I frequently get chest discomfort that spreads to the back of my neck, jaw, and arm. I have pressure and tension in my chest." +113,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have hiccups and a lump in my throat." +114,gastroesophageal reflux disease,"I always have foul breath and a sour taste in my mouth, and occasionally, the tingling in my throat makes it difficult to swallow meals." +115,gastroesophageal reflux disease,"I frequently have heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lie down or stoop over, my chest discomfort worsens. My chest hurts quite a bit too." +116,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after eating little meals, I frequently get this lingering sense of fullness. Typically, I have heartburn, nausea, and tingling in my throat." +117,gastroesophageal reflux disease,"I often wake up with a sore throat or a scratchy voice. My throat hurts constantly, and I also have poor breath. I also frequently burp." +118,gastroesophageal reflux disease,"I feel as though acid or food is backing up into my throat. My chest hurts, and lying down makes it worse. After eating, I frequently have heartburn or indigestion and throw up." +119,gastroesophageal reflux disease,"After eating, I get queasy and frequently throw up everything I've eaten. I always get severe abdominal ache and have terrible acid reflux." +120,gastroesophageal reflux disease,"Especially after eating, my throat regularly feels like it is burning. I also occasionally get a bitter or sour aftertaste, which makes me feel sick." +121,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly vomit everything I eat, and food gets stuck in my throat, making it difficult for me to swallow. I have a pain in my upper abdomen." +122,gastroesophageal reflux disease,"Belching and burping are common in me. I often get chest pain that radiates to the back of my neck, my jaw, and my arm. In my chest, there is pressure and stress." +123,gastroesophageal reflux disease,"I get a sour taste in my mouth all the time, even when there is nothing acidic in my stomach. I often get the hiccups and have a lump in my throat." +124,gastroesophageal reflux disease,"I periodically find it challenging to swallow food due to the tingling in my throat, bad breath, and bad taste in my mouth." +125,gastroesophageal reflux disease," regularly have indigestion and heartburn, especially after eating spicy or fatty foods. My chest pain is worse when I hunch over or lie down. Additionally, my chest hurts a lot." +126,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling." +127,gastroesophageal reflux disease,I frequently get a scratchy voice or a painful throat when I wake up. I have bad breath and a continual sore throat. I also vomit a lot. +128,gastroesophageal reflux disease,My throat feels as though food or acid is backing up. Lying down only makes my chest pain more. I regularly have heartburn or indigestion after eating and puke up. +129,gastroesophageal reflux disease,I often feel sick after eating and puke up the entire meal. I constantly get excruciating acid reflux and severe stomach pain. +130,gastroesophageal reflux disease,"My throat often feels like it is burning, especially after eating. A bitter or sour aftertaste that I occasionally experience also makes me feel unwell." +131,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and it is hard for me to swallow since food gets caught in my throat. My upper abdomen is in discomfort." +132,gastroesophageal reflux disease,"My tendency is to belch and burp frequently. I frequently get chest pain that spreads to my arm, jaw, and the back of my neck. There is pressure and stress in my chest." +133,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups." +134,gastroesophageal reflux disease,"Periodically, the tingling in my throat, poor breath, and bad taste in my mouth make it difficult for me to swallow meals." +135,gastroesophageal reflux disease,"I routinely experience heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lean forward or lie down, my chest discomfort becomes worse. My chest hurts a lot as well." +136,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after little meals, I frequently get this lingering sensation of fullness. My normal symptoms include nausea, heartburn, and tingling in my throat." +137,gastroesophageal reflux disease,"I regularly wake up with a scratchy voice or a sore throat. My throat is constantly irritated, and I have horrible breath. I frequently throw up." +138,gastroesophageal reflux disease,"It feels like food or acid is backing up in my throat. My chest discomfort only becomes worse while I'm lying down. After eating, I frequently have heartburn or indigestion and throw up." +139,gastroesophageal reflux disease,"After eating, I frequently feel unwell and throw up the entire meal. I suffer from painful acid reflux and excruciating stomach discomfort all the time." +140,gastroesophageal reflux disease,"Especially after eating, my throat frequently feels scorching. I occasionally get a bitter or sour aftertaste that makes me feel sick." +141,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly throw up everything I eat, and swallowing is difficult for me since food gets stuck in my throat. I'm experiencing pain in my upper abdomen." +142,gastroesophageal reflux disease,"I have a tendency to burp and belch regularly. I often get chest discomfort that radiates to my arm, jaw, and neck. My chest feels tight and stressed." +143,gastroesophageal reflux disease,"I always get a sour taste in my mouth, even when I don't have anything acidic in my stomach. I regularly have the hiccups and a knot in my throat." +144,gastroesophageal reflux disease,"I occasionally have trouble swallowing food because of the tingling in my throat, terrible breath, and bad taste in my mouth." +145,gastroesophageal reflux disease,"I frequently have indigestion and heartburn, especially after eating spicy or fatty foods. My chest hurts when I lean forward or while I'm lying down. Additionally, my chest hurts a lot." +146,gastroesophageal reflux disease,I regularly feel sick after eating and puke up the entire meal. I constantly get horrible acid reflux agony and stomach discomfort. +147,gastroesophageal reflux disease,"My throat often feels like it's on fire, especially after eating. I occasionally get an aftertaste that is sour or bitter and makes me feel nauseous." +148,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups." +149,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling." +150,drug reaction,"I have a metallic taste in my mouth, and also have a sense of change of taste and smell. Sometimes get very unbearable joint pain and muscle pain" +151,drug reaction,"I have headaches and migraines, have been having difficulty sleeping. I have been having muscle twitching and tremors. Sometimes I get lightheaded" +152,drug reaction,I have fever and feel very dizzy and lightheaded. My heart is beating very fast and I feel very confused. I am not able to think very clearing and everything feels very foggy +153,drug reaction,I have rashes on my skin and these flake off from time to time. This leaves me prone to infection. My fingers start twitching and sometimes I experience tremors. +154,drug reaction,I feel very nauseous and have chest pain. Recently I have been experiencing chest pain. I feel very uneasy and often sweat profusely +155,drug reaction,"I have itching all over my body, and rashes in my chest and back. I get flaky skin from time to time and often this leaves marks on my body." +156,drug reaction,I have hair loss and there is a significant change in the texture of my hair. I have dry and itchy sclap and increased dandruff. My skin is also getting very dry +157,drug reaction,I am experiencing a decrease in my sex drive and difficulty to fucntion sexually. I feel very light headed and confused and often experince brain fog +158,drug reaction,I am experiencing changes in my menstrual cycle and unexpected vaginal discharge. I often get mood swings and feel agitated from time to time +159,drug reaction,I have experinenced significant weight gain and become very obese. I have changes in my appetite and cravings for different foods +160,drug reaction,I have difficulty in maintianing concentration and very low mental clarity. I often forget things and in general have difficulty remembering things +161,drug reaction,"In addition to experiencing a change in taste and fragrance, I also have a metallic aftertaste in my tongue. occasionally get excruciating joint and muscular pain" +162,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My muscles have been trembling and twitching. I sometimes feel dizzy." +163,drug reaction,"I'm feeling really lightheaded and dizzy when I have a temperature. My mind is completely muddled, and my heart is racing. I find it difficult to think clearly, and everything seems quite hazy." +164,drug reaction,"My skin occasionally peels off the rashes that I have. This makes me more vulnerable to infections. My hands begin to shake, and occasionally I have tremors." +165,drug reaction,I have severe nausea and chest discomfort. I have been having chest discomfort lately. I often shiver a lot and feel really nervous. +166,drug reaction,"I have rashes in my chest and back and itch all over my body. I occasionally have flaky skin, which frequently creates markings on my body." +167,drug reaction,"My hair's texture has significantly changed, and I'm experiencing hair loss. My scalp is dry and itching, and my dandruff is becoming worse. My skin is also becoming really dry." +168,drug reaction,"My sex desire has decreased, and I'm finding it harder to function sexually. I regularly have brain fog and feel quite dizzy and disoriented." +169,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I frequently experience mood swings and experience occasional agitation." +170,drug reaction,"I've gained a lot of weight and am now quite fat. My appetite varies, and I have desires for various things." +171,drug reaction,"I struggle to maintain focus, and my mental clarity is really poor. I have trouble remembering things and frequently forget stuff." +172,drug reaction,My tongue also has a metallic aftertaste in addition to a change in taste and scent. occasionally get acute muscle and joint ache +173,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. My entire body has been shaking and twitching. Sometimes I become lightheaded." +174,drug reaction,"When I have a fever, I feel quite woozy and lightheaded. My heart is pounding, and my head is absolutely foggy. My ability to think properly is impaired, and everything appears to be somewhat blurry." +175,drug reaction,"My rashes occasionally cause my skin to peel off. I'm more susceptible to illnesses as a result. I start to tremble sometimes, and my hands start to shake." +176,drug reaction,"Both chest pain and extreme nausea are present. Recently, my chest has been hurting. I frequently shiver a lot and am really anxious." +177,drug reaction,"My body itches all over, and I have rashes on my back and chest. My skin can be flaky on sometimes, which commonly results in body marks." +178,drug reaction,"I'm losing hair, and my hair's texture has considerably altered. My dandruff is becoming worse, and my dry, itchy scalp. My skin is getting quite dry as well." +179,drug reaction,"My desire for sex has dropped, and I'm having trouble having sex. I frequently get brain fog, as well as feeling somewhat bewildered." +180,drug reaction,"I've noticed a difference in my monthly cycle and an unexpected vaginal discharge. I become irritable every now and again, and my moods swing a lot." +181,drug reaction,I have put on a lot of weight and am now very obese. I have different urges and different appetites. +182,drug reaction,I have terrible mental clarity and find it difficult to stay focused. I regularly forget things and have problems remembering things. +183,drug reaction,"Along with a change in taste and smell, my tongue also has a metallic aftertaste. occasionally get severe joint and muscular pain" +184,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My whole body has been trembling and shivering. At times, I have dizziness." +185,drug reaction,"I am quite queasy and dizzy when I have a temperature. My brain is completely cloudy, and my heart is racing. I'm having trouble thinking straight, and everything seems a little fuzzy." +186,drug reaction,"Sometimes my skin starts to flake off from my rashes. I'm more prone to becoming sick as a result. On occasion, my hands begin to quiver and I begin to tremble." +187,drug reaction,There is severe nausea and chest discomfort. My chest has been aching lately. I'm really nervous and shiver a lot of the time. +188,drug reaction,"I have rashes on my back and chest, and my entire body itches. My skin may be dry and flaky at times, which frequently leaves body marks." +189,drug reaction,"I'm shedding hair, and the texture of my hair has changed significantly. My dry, itchy scalp and dandruff are becoming worse. My skin is also becoming pretty dry." +190,drug reaction,"I no longer want to have sex, and it's difficult for me to do so. I regularly have brain fog and a sense of confusion." +191,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I occasionally lose my temper, and my moods change a lot." +192,drug reaction,I've gained a lot of weight and am currently quite fat. I have many inclinations and cravings. +193,drug reaction,I have awful mental clarity and have trouble focusing. I frequently forget things and struggle with memory. +194,drug reaction,"My tongue also changes in taste and scent, leaving a metallic aftertaste. can have excruciating joint and muscle pain" +195,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. I've been shaking and shivering all over. Sometimes I become lightheaded." +196,drug reaction,"When I have a temperature, I feel pretty nauseous and lightheaded. My heart is pounding, and my mind is absolutely foggy. Everything feels a little hazy to me, and I'm having difficulties thinking clearly." +197,drug reaction,"My rashes occasionally cause my skin to start to fall off. I'm more likely to get ill as a result. My hands occasionally start to tremble, and I start to shake." +198,drug reaction,"Chest pain and severe nausea are present. Recently, my chest has been hurting. I tremble a lot and am quite anxious." +199,drug reaction,"My entire body itches, and I have rashes on my back and chest. Sometimes my skin might be dry and flaky, which often results in body stains." +200,peptic ulcer disease,"I have a burning sensation in my upper abdomen, ofetn between or at night. I have heartburn and indigestion and often feel very nauseous" +201,peptic ulcer disease,I have bloating and a feeling of uneasiness. I have been experiencing weight loss and a loss of appetite. Sometimes I have dark and tarry stools and blood in my vomit +202,peptic ulcer disease,I have difficulty swallowing food and often get a sensation of the food getting stuck in my throat. I have constant belching and bloating. There is a persitent sour taste in my mouth +203,peptic ulcer disease,I have been having bloody stools which has resulted in bloos loss and loss of iron. Thiis has caused me anemia and I feel very weak in general +204,peptic ulcer disease,"I have persistant, gnawing hunger and apetite. Sometimes I get abdominal cramps and spasms. There is bloating and gas after eating which causes me a great deal of uneasiness" +205,peptic ulcer disease,"I have changes in my bowel movements, such as constipation and diarrhea. I have a loss of appetite and energy and often feel very fatigued" +206,peptic ulcer disease,I have abdominal pain and it gets only worse if I bend over or lie down. I feel discomfort when I eat certain foods such as spicy or acidic food. Sometimes I get loose stools because of this +207,peptic ulcer disease,I have difficulty sleeping due to abdominal pain or discomfort. I have a loss of appetite and feel fatigued after going to the bathroom. I feel very tited all the time +208,peptic ulcer disease,I have a sour acidic taste in my mouth. I have frequent belching and burping. I have a feeling of pressure or fullness in my upper abdomen that last for a few hours +209,peptic ulcer disease,I have unintended weight loss and difficulty gaining weight. I have pain and discomfort that is relieved by taking antacids. My mouth tastes very bad +210,peptic ulcer disease,"Occasionally throughout the day or at night, I have burning in my upper abdomen. I get indigestion, heartburn, and frequent bouts of extreme nausea." +211,peptic ulcer disease,"Bloating and unease are both present in me. I've been losing weight and losing interest in food. I occasionally get tarry, black stools and vomit that contains blood." +212,peptic ulcer disease,"I have trouble swallowing, and I frequently feel like food is getting stuck in my throat. I feel bloated and belch constantly. I always get a sour taste in my mouth." +213,peptic ulcer disease,"My bloody stools have caused me to lose iron and bloos, among other things. I now have anaemia from this, and I generally feel quite weak." +214,peptic ulcer disease,"My hunger and appetite are persistent and ravenous. Periodically, my stomach may cramp and spasm. After eating, I have bloating and gas, which makes me quite uncomfortable." +215,peptic ulcer disease,"My bowel motions have changed; they've been constipated and diarrhoeal. I lack energy, appetite, and frequently feel really exhausted." +216,peptic ulcer disease,"I have stomach ache, and bending over or lying down just makes it worse. When I consume certain meals, such as spicy or acidic cuisine, I have discomfort. This sometimes causes me to have loose stools." +217,peptic ulcer disease,"I have trouble falling or staying asleep because of stomach ache. After using the restroom, I feel drained and lose my appetite. I constantly feel really anxious." +218,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. My burping and belching are frequent. For a few hours, I get pressure or fullness in my upper belly." +219,peptic ulcer disease,I lose weight unintentionally and find it challenging to acquire weight. I use antacids to ease the pain and discomfort I experience. My mouth feels horrible. +220,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I get heartburn, indigestion, and regular episodes of severe nausea." +221,peptic ulcer disease,"I feel bloated and uneasy at the same time. I've been losing weight, and I no longer like eating. I occasionally get bloody vomit and dark, tarry stools." +222,peptic ulcer disease,I often feel like food is getting caught in my throat and have problems swallowing. I feel bloated and frequently belch. I constantly have a bitter aftertaste. +223,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. Because of this, I now have anaemia and usually feel fairly weak." +224,peptic ulcer disease,"My appetite and chronic hunger are both ferocious. My stomach may occasionally ache and spasm. I have gas and bloating after eating, which is really painful." +225,peptic ulcer disease,My bowel movements have become constipated and diarrheal. I often feel quite tired and lack both energy and appetite. +226,peptic ulcer disease,"Bending down or reclining down only makes my stomach feel more. I have pain after eating some foods, such as hot or acidic food. I occasionally get loose stools as a result of this." +227,peptic ulcer disease,"Due to a stomach discomfort, I have problems sleeping or staying asleep. I am exhausted after using the bathroom and lose my appetite. I'm quite nervous all the time." +228,peptic ulcer disease,"A sour, acidic taste is all over my mouth. Belching and burping are common in me. I have pressure or fullness in my upper abdomen for a few hours." +229,peptic ulcer disease,"I unknowingly lose weight and find it difficult to gain weight. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so much." +230,peptic ulcer disease,"On occasion, throughout the day or at night, I have burning in my upper abdomen. I frequently get extreme nauseous episodes, heartburn, and indigestion." +231,peptic ulcer disease,"I have both bloating and unease. I no longer like eating because I've been losing weight. I sometimes vomit blood and have tarry, black stools." +232,peptic ulcer disease,I frequently get swallowing issues and the sensation that food is getting stuck in my throat. I regularly belch and feel bloated. My aftertaste is unpleasant all the time. +233,peptic ulcer disease,"My bloody stools have caused me to lose a lot of things, including iron and bloos. I now have anaemia as a result, and I typically feel rather weak." +234,peptic ulcer disease,"Both my appetite and ongoing hunger are fierce. There are times when my stomach hurts and cramps. Following a meal, I have very painful gas and bloating." +235,peptic ulcer disease,Constipated and diarrheal bowel motions have been happening to me. I frequently have a lack of energy and appetite. +236,peptic ulcer disease,"My stomach only feels worse when I stoop or recline. After eating particular meals, such as spicy or acidic cuisine, I have discomfort. This occasionally causes me to have loose stools." +237,peptic ulcer disease,"I have a stomach ache that keeps me from falling or staying asleep. After using the restroom, I feel worn out and lose interest in food. I'm constantly pretty anxious." +238,peptic ulcer disease,"My mouth is filled with an acidic, sour flavour. Burping and belching are frequent in me. For a few hours, my upper abdomen has felt pressured or full." +239,peptic ulcer disease,I inadvertently lose weight and have a hard time gaining it back. I use antacids to get rid of the pain and discomfort I experience. It aches so much in my mouth. +240,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I regularly get severe heartburn, indigestion, and nausea." +241,peptic ulcer disease,"I'm feeling both bloated and uneasy. Because I've been losing weight, I no longer like eating. I occasionally get tarry, black stools and blood in my vomit." +242,peptic ulcer disease,"I regularly have trouble swallowing, and I sometimes feel like food is becoming trapped in my throat. I frequently feel bloated and belch. Every time, I have a bad aftertaste." +243,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. As a result, I now have anaemia and generally feel rather weak." +244,peptic ulcer disease,I have a strong appetite and am constantly hungry. My stomach occasionally aches and cramps. I have really painful gas and bloating after eating. +245,peptic ulcer disease,I've been experiencing bowel movements that are both constipated and diarrhoeic. I often lack the will to eat and energy. +246,peptic ulcer disease,"Only when I hunch down or lie down does my stomach hurt more. I have pain after eating certain foods, such as hot or acidic food. I occasionally get loose stools as a result of this." +247,peptic ulcer disease,I can't get to sleep or remain asleep because I have a stomach pain. I get exhausted after using the bathroom and stop being hungry. I worry a lot of the time. +248,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. I have frequent belching and burping. My upper abdomen has felt pressed in or full for the past few hours." +249,peptic ulcer disease,"I unintentionally lose weight and find it challenging to gain it back. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so severely right now." +250,diabetes,I have increased thirst and frequent urination. I often have a dry mouth and throat. Recently I have been having increased hunger and appetite +251,diabetes,I have blurred vision and it only seems to be getting worse. I feel fatigued and tired all the time. I also feel very dizzy and light headed at times +252,diabetes,I have a dry mouth and throat. I also have been experiencing an increased appetite and hunger. However I do feel very tired at times +253,diabetes,I have slow healing of wounds and cuts. I have this tingling sensation in my hand and numbness in both my hands and feet +254,diabetes,I have mood changes and have difficulty concentrating. My mind feels hazy and foggy at times and it gets difficult to do even regular chores +255,diabetes,I have a feeling of tremors and muscle twitching. I have decreased sense of smell or taste and I feel fatigued. Sometimes I have a feeling of rapid hearbeat or palipatations +256,diabetes,I have rashes and skin irritations especially in the folds of the skin. There is also very slow healing of any cuts and bruises I have on my skin +257,diabetes,I have a frequent need to urinate and often have these uncontrollable urges. I feel dizzy and often confused. I have also been loss of visuals +258,diabetes,I have difficulty breathing especially during physical activity. I have unusual sweating and flushing. I frequently get yeast infections +259,diabetes,I have persistent dry cough. My infections dont seem to be healing and I have palpitations. I also have this problem of sore throat that does seem to go away +260,diabetes,"I'm drinking more water and urinating more frequently. My throat and mouth are frequently dry. Recently, my appetite and hunger have both grown." +261,diabetes,"My vision is foggy, and it seems to be growing worse. I'm constantly feeling worn out and exhausted. Additionally, I occasionally have severe lightheadedness and dizziness." +262,diabetes,My throat and mouth are dry. I've also been feeling more hungry and more hungry. But sometimes I do feel quite exhausted. +263,diabetes,I have a sluggish wound and reduced healing rate. My hands and feet are both numb and have this tingling sensation. +264,diabetes,"I struggle to focus and have emotional swings. At times, my head seems cloudy and foggy, making it challenging for me to do even simple tasks." +265,diabetes,I feel my muscles trembling and shaking. I feel worn out and my senses of taste and smell have diminished. Sometimes I have palpitations or a quick heartbeat. +266,diabetes,"I experience skin irritations and rashes, especially in my skin's creases. Any wounds and bruises I have on my skin also heal quite slowly." +267,diabetes,I frequently feel the want to urinate and frequently have these strong cravings. I frequently feel woozy and bewildered. I've also had sight loss. +268,diabetes,"I have trouble breathing, especially when exercising. I'm flushed and sweating in an unexpected way. I have yeast infections a lot." +269,diabetes,"I have a chronic dry cough. I have palpitations and my infections don't appear to be getting better. I also have a painful throat issue, although it does seem to go away." +270,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat regularly feel dry. My appetite and hunger have both increased recently. +271,diabetes,"I have blurry vision, and it seems to be getting worse. I'm continuously fatigued and worn out. I also occasionally have acute lightheadedness and vertigo." +272,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. But on occasion, I do feel rather worn out." +273,diabetes,My wound is healing slowly and at a slower rate. My hands and feet are numb and tingling at the same time. +274,diabetes,"I have trouble focusing, and my emotions fluctuate. My brain might seem murky and foggy at times, making it difficult for me to complete even straightforward chores." +275,diabetes,"My body is shaking and trembling. My senses of taste and smell have gotten weaker, and I feel exhausted. I occasionally have palpitations or a rapid pulse." +276,diabetes,"I have rashes and skin irritations, especially in the crevices of my skin. My skin bruises and cuts also take a long time to heal." +277,diabetes,I often feel the want to urinate and experience these intense desires. I often feel dizzy and confused. I also lost my sight. +278,diabetes,"I have respiratory issues, especially when doing out. Unexpectedly, I'm sweating and flushed. I frequently have yeast infections and urinary tract infections" +279,diabetes,"I constantly have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat hurts occasionally, but it does appear to get better." +280,diabetes,"I've been drinking more water and urinating more frequently. My throat and mouth frequently feel dry. Recently, both my hunger and appetite have grown." +281,diabetes,"My vision is foggy, and it appears to be growing worse. I feel exhausted and worn out all the time. I also have severe dizziness and lightheadedness on occasion." +282,diabetes,"My throat and mouth are dry. I've also been getting hungry more and more. I do, however, occasionally feel rather exhausted." +283,diabetes,My wound is recovering more slowly now. Both my hands and feet are tingling and going numb. I feel very weak +284,diabetes,"My emotions change, and I have difficulties focusing. At times, my mind might be cloudy and hazy, making it challenging for me to do even simple tasks." +285,diabetes,"My entire body is trembling and shaky. I've lost my ability to taste and smell, and I'm worn out. I sometimes get a racing heart or palpitations." +286,diabetes,"I get skin irritations and rashes, especially in my skin's crevices. Cuts and bruises on my skin also take a while to heal." +287,diabetes,"I frequently feel the want to urinate and have these strong cravings. I get woozy and disoriented a lot. Moreover, I have lost my vision considerably" +288,diabetes,"I have breathing problems, especially when I'm outside. I'm suddenly flushed and perspiring. I experience yeast infections and urinary tract infections rather regularly." +289,diabetes,"I have a dry cough that never stops. I have palpitations and my infections don't appear to be getting better. Sometimes my throat hurts, but it seems to get better." +290,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat feel dry a lot. My hunger and appetite have both increased recently. +291,diabetes,"My vision is blurry, and it feels like it's getting worse. All the time, I feel worn out and fatigued. I occasionally have extreme lightheadedness and vertigo as well." +292,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. However, I do get periodic bouts of exhaustion." +293,diabetes,My wound is healing more slowly these days. My feet and hands are tingling and becoming numb. I feel really fragile. +294,diabetes,"My emotions fluctuate, and it's hard for me to concentrate. My mind can be foggy and foggy at times, making it difficult for me to perform even simple chores." +295,diabetes,"I'm shaking and trembling all over. I've lost my sense of taste and smell, and I'm exhausted. I occasionally get palpitations or a speeding heart." +296,diabetes,"Particularly in the crevices of my skin, I have skin rashes and irritations. My skin bruises and cuts take a while to heal as well." +297,diabetes,I regularly experience these intense urges and the want to urinate. I frequently feel drowsy and lost. I've also significantly lost my vision. +298,diabetes,"I have trouble breathing, especially outside. I start to feel hot and start to sweat. I frequently have urinary tract infections and yeast infections." +299,diabetes,"I constantly sneeze and have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat does ache occasionally, but it usually gets better." diff --git a/frontend/Symptoms_Detection/app.py b/frontend/Symptoms_Detection/app.py new file mode 100644 index 0000000000000000000000000000000000000000..ecd1a69bc1974b045489e9c4e8096b9b6301de6b --- /dev/null +++ b/frontend/Symptoms_Detection/app.py @@ -0,0 +1,217 @@ + +import pandas as pd + +dataset_1= pd.read_csv("training_data.csv") +#dataset_1 + +#for i in dataset_1.columns: + + #print(i) + + +# Create a new column with merged column names where value is 1 +dataset_1['symptoms_text'] = dataset_1.apply(lambda row: ','.join([col for col in dataset_1.columns if row[col] == 1]), axis=1) + +#print("Original DataFrame:") +#print(dataset_1) + + + +#dataset_1.to_csv("training_data_after_changes.csv") + + +final_dataset = pd.DataFrame(dataset_1[["prognosis","symptoms_text"]]) +final_dataset.columns = ['label', 'text'] +#final_dataset.to_csv("final_dataset.csv") +#final_dataset + +##############3 +import pandas as pd +dataset_2= pd.read_csv("Symptom2Disease.csv") +dataset_2 = dataset_2[["label","text"]] +#dataset_2 + +################# +df_combined = pd.concat([final_dataset, dataset_2], axis=0, ignore_index=True) +#df_combined + +################ +import nltk +nltk.download('stopwords') +import pandas as pd +import re +import string +from nltk.tokenize import word_tokenize +from nltk.corpus import stopwords +from nltk.stem import WordNetLemmatizer + + +# Download necessary NLTK data files +nltk.download('punkt') +nltk.download('stopwords') +nltk.download('wordnet') + +def preprocess_text(text): + # Convert to lowercase + text = text.lower() + + cleaned_text = re.sub(r'[^a-zA-Z0-9\s\,]', ' ', text) + # Tokenize text + tokens = word_tokenize(cleaned_text) + + # Remove stop words + stop_words = set(stopwords.words('english')) + tokens = [word for word in tokens if word not in stop_words] + + + # Rejoin tokens into a single string + cleaned_text = ' '.join(tokens) + + return cleaned_text + +df_combined["cleaned_text"] = df_combined["text"].apply(preprocess_text) + +#print(df_combined) + + +########### +#df_combined.to_csv("final_dataset_llms.csv") + +########### + +import pandas as pd +from sklearn.feature_extraction.text import CountVectorizer +print("scikit-learn imported successfully!") +from sklearn.model_selection import train_test_split +from sklearn.linear_model import LogisticRegression +from sklearn.metrics import accuracy_score, classification_report + +# Load your dataset +data = pd.read_csv('final_dataset_llms.csv') # Replace with your file path + +# Example columns: 'symptoms' and 'label' +X = data['cleaned_text'] +y = data['label'] + +# Convert text data to numerical data +vectorizer = CountVectorizer() +X_vectorized = vectorizer.fit_transform(X) + +# Split the data into training and testing sets +X_train, X_test, y_train, y_test = train_test_split(X_vectorized, y, test_size=0.2, random_state=42) + +# Train the model +model = LogisticRegression() +model.fit(X_train, y_train) + +# Make predictions +y_pred = model.predict(X_test) + +# Evaluate the model +accuracy = accuracy_score(y_test, y_pred) +print(f'Accuracy: {accuracy:.2f}') +print('Classification Report:') +print(classification_report(y_test, y_pred)) + +########################pip +######################### +############################### +########################################### + +data['label'].nunique() + +############################################# + +def precaution(label): + dataset_precau = pd.read_csv("disease_precaution.csv", encoding='latin1') + label = str(label) + label = label.lower() + + dataset_precau["Disease"] = dataset_precau["Disease"].str.lower() + # Filter the DataFrame for the given label + filtered_precautions = dataset_precau[dataset_precau["Disease"] == label] + + # Extract precaution columns + precautions = filtered_precautions[["Precaution_1", "Precaution_2", "Precaution_3", "Precaution_4"]] + return precautions.values.tolist() # Convert DataFrame to a list of lists + # Return an empty list if no matching label is found + +def occurance(label): + dataset_occur = pd.read_csv("disease_riskFactors.csv", encoding='latin1') + label = str(label) + label = label.lower() + + dataset_occur["DNAME"] = dataset_occur["DNAME"].str.lower() + # Filter the DataFrame for the given label + filtered_occurrence = dataset_occur[dataset_occur["DNAME"] == label] + + occurrences = filtered_occurrence["OCCUR"].tolist() # Convert Series to list + return occurrences + # Return an empty list if no matching label is found +################################################################################ + +import streamlit as st +import numpy as np +import sklearn +from sklearn.feature_extraction.text import CountVectorizer + +st.title("SYMPTOMS DETECTION, PRECAUTION n OCCURANCE") + +symptoms = st.text_area("Enter your symptoms (comma-separated):") + +if symptoms.lower() != "exit": + # Convert input string to a list of symptoms + + + # Function to predict new symptoms + def predict_symptoms(new_symptoms): + preprocessed_text = preprocess_text(new_symptoms) + + if isinstance(preprocessed_text, str): + new_symptoms = [preprocessed_text] + + # Vectorize the new symptoms + new_symptoms_vectorized = vectorizer.transform(new_symptoms) + # Make predictions + prediction = model.predict(new_symptoms_vectorized) + + return prediction + + st.write("disease :") + symptoms_list = [symptom.strip() for symptom in symptoms.split(',')] + + # Predict symptoms + prediction = predict_symptoms(' '.join(symptoms_list)) + + + st.write(prediction) + st.write("precautions:") + precautions_names = precaution(prediction) + st.write(precautions_names) + st.write("Occurance:") + occurance_name = occurance(prediction) + st.write(occurance_name) + +else: + st.write("Please enter symptoms to get the disease.") + + + + +# Get user input + +# Make a prediction + + + + + + + + + + + + + + diff --git a/frontend/Symptoms_Detection/code b/frontend/Symptoms_Detection/code new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/frontend/Symptoms_Detection/code @@ -0,0 +1 @@ + diff --git a/frontend/Symptoms_Detection/disease_precaution.csv b/frontend/Symptoms_Detection/disease_precaution.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c806d64e5f159e60f7805d217242611baba2be3 --- /dev/null +++ b/frontend/Symptoms_Detection/disease_precaution.csv @@ -0,0 +1,42 @@ +Disease,Precaution_1,Precaution_2,Precaution_3,Precaution_4 +Drug Reaction,stop irritation,consult nearest hospital,stop taking drug,follow up +Malaria,Consult nearest hospital,avoid oily food,avoid non veg food,keep mosquitos out +Allergy,apply calamine,cover area with bandage,,use ice to compress itching +Hypothyroidism,reduce stress,exercise,eat healthy,get proper sleep +Psoriasis,wash hands with warm soapy water,stop bleeding using pressure,consult doctor,salt baths +GERD,avoid fatty spicy food,avoid lying down after eating,maintain healthy weight,exercise +Chronic cholestasis,cold baths,anti itch medicine,consult doctor,eat healthy +hepatitis A,Consult nearest hospital,wash hands through,avoid fatty spicy food,medication +Osteoarthristis,acetaminophen,consult nearest hospital,follow up,salt baths +(vertigo) Paroymsal Positional Vertigo,lie down,avoid sudden change in body,avoid abrupt head movment,relax +Hypoglycemia,lie down on side,check in pulse,drink sugary drinks,consult doctor +Acne,bath twice,avoid fatty spicy food,drink plenty of water,avoid too many products +Diabetes ,have balanced diet,exercise,consult doctor,follow up +Impetigo,soak affected area in warm water,use antibiotics,remove scabs with wet compressed cloth,consult doctor +Hypertension ,meditation,salt baths,reduce stress,get proper sleep +Peptic ulcer diseae,avoid fatty spicy food,consume probiotic food,eliminate milk,limit alcohol +Dimorphic hemmorhoids(piles),avoid fatty spicy food,consume witch hazel,warm bath with epsom salt,consume alovera juice +Common Cold,drink vitamin c rich drinks,take vapour,avoid cold food,keep fever in check +Chicken pox,use neem in bathing ,consume neem leaves,take vaccine,avoid public places +Cervical spondylosis,use heating pad or cold pack,exercise,take otc pain reliver,consult doctor +Hyperthyroidism,eat healthy,massage,use lemon balm,take radioactive iodine treatment +Urinary tract infection,drink plenty of water,increase vitamin c intake,drink cranberry juice,take probiotics +Varicose veins,lie down flat and raise the leg high,use oinments,use vein compression,dont stand still for long +AIDS,avoid open cuts,wear ppe if possible,consult doctor,follow up +Paralysis (brain hemorrhage),massage,eat healthy,exercise,consult doctor +Typhoid,eat high calorie vegitables,antiboitic therapy,consult doctor,medication +Hepatitis B,consult nearest hospital,vaccination,eat healthy,medication +Fungal infection,bath twice,use detol or neem in bathing water,keep infected area dry,use clean cloths +Hepatitis C,Consult nearest hospital,vaccination,eat healthy,medication +Migraine,meditation,reduce stress,use poloroid glasses in sun,consult doctor +Bronchial Asthma,switch to loose cloothing,take deep breaths,get away from trigger,seek help +Alcoholic hepatitis,stop alcohol consumption,consult doctor,medication,follow up +Jaundice,drink plenty of water,consume milk thistle,eat fruits and high fiberous food,medication +Hepatitis E,stop alcohol consumption,rest,consult doctor,medication +Dengue,drink papaya leaf juice,avoid fatty spicy food,keep mosquitos away,keep hydrated +Hepatitis D,consult doctor,medication,eat healthy,follow up +Heart attack,call ambulance,chew or swallow asprin,keep calm, +Pneumonia,consult doctor,medication,rest,follow up +Arthritis,exercise,use hot and cold therapy,try acupuncture,massage +Gastroenteritis,stop eating solid food for while,try taking small sips of water,rest,ease back into eating +Tuberculosis,cover mouth,consult doctor,medication,rest diff --git a/frontend/Symptoms_Detection/disease_riskFactors.csv b/frontend/Symptoms_Detection/disease_riskFactors.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a3266c35dc560f89c84d49bdaa7ac6a56445fc5 --- /dev/null +++ b/frontend/Symptoms_Detection/disease_riskFactors.csv @@ -0,0 +1,127 @@ +DID,DNAME,PRECAU,OCCUR,RISKFAC +101,Fungal Infection,"Bath twice, use dettol or neem in bathing water, keep infected area dry, use clean cloths +",Common -More than 1 million cases per year (India),"Colonization, broad-spectrum antibiotics, indwelling central catheter" +102,Food allergy,"Apply calamine, cover area with bandage, use ice to compress itching +",Very common-More than 10 million cases per year (India),"Atopic dermatitis, Family history, hay fever" +103,GERD,"Avoid fatty spicy food, avoid lying down after eating, maintain healthy weight, exercise +",Very common-More than 10 million cases per year (India),"Obesity, Connective tissue disorders, such as scleroderma." +104,Chronic cholestasis,"Cold baths, anti itch medicine, consult doctor, eat healthy +",Common -More than 1 million cases per year (India),"infections from viruses such as HIV, hepatitis, cytomegalovirus" +105,Drug allergy,"Stop irritation, consult nearest hospital, stop taking drug and follow up +",Very common-More than 10 million cases per year (India),"History of food allergy or hay fever, history of drug allergy, Increased exposure to a drug" +106,Peptic Ulcer,"Avoid fatty spicy food, consume probiotic food, eliminate milk, limit alcohol +",Common -More than 1 million cases per year (India),"taking NSAIDs, Smoking, H. pylori infected, alcohol consumption, untreated stress." +107,AIDS,"pre-exposure prophylaxis (PrEP),use condoms or dental dams with oral sex",Common -More than 1 million cases per year (India),"Having unprotected sex,having another sexually transmitted infection +" +108,Diabetes,"have balanced diet,exercise,consult doctor,follow up",Very common-More than 10 million cases per year (India),"coronary artery disease with chest pain, heart attack, stroke and narrowing of arteries" +109,Gastroenteritis,"stop eating solid food for while, try taking small sips of water, rest, ease back into eating",Very common-More than 10 million cases per year (India),measles and immunodeficiencies put the patient at a higher risk for a gastrointestinal +110,Asthma,"switch to loose clothing, take deep breaths, get away from trigger, seek help",Very common-More than 10 million cases per year (India),",Wheezing when exhaling,Shortness of breath,Chest tightness or pain." +111,Hypertension,"meditation,salt baths,reduce stress,get proper sleep",Very common-More than 10 million cases per year (India),"Diabetes, Unhealthy Diet, Obesity, Excessive Alcohol, Tobacco Use, Family History, high BP" +112,Migraine,"meditation,reduce stress,use polaroid glasses in sun,consult doctor",Very common-More than 10 million cases per year (India),"Skipping meals, Too much or too little sleep, Stress, Smoking, Depression, anxiety, excessive alcohol" +113,Cervical spondylosis,"use heating pad or cold pack,exercise,take otc pain reliever,consult doctor",Very common-More than 10 million cases per year (India),"Older age, stress on your neck, Neck injuries, Genetic factors, Smoking" +114,Brain hemorrhage,"Don't smoke,Don't use drugs,Investigate corrective surgery",Common -More than 1 million cases per year (India),"Smoking, excessive alcohol, hypocholesterolemia, drugs, Old age, male sex, chronic kidney disease" +115,Jaundice,"drink plenty of water,consume milk thistle,eat fruits and high fibrous food,medication",Common -More than 1 million cases per year (India),"Premature birth, Significant bruising during birth, Blood type, Breast-feeding, Race" +116,Malaria,"Avoid oily food, avoid non veg food, keep mosquitos out +",Rare -Fewer than 1 million cases per year (India),"Availability of mosquito breeding site or stagnant water near the home, staying outdoors overnight. + +" +117,Chicken pox,"Use neem in bathing, consume neem leaves, take vaccine, avoid public places +",Rare -Fewer than 1 million cases per year (India),People who haven't already had chickenpox. +118,Dengue,"drink papaya leaf juice, avoid fatty spicy food, keep mosquitos away, keep hydrated +",Very rare- Fewer than 100 thousand cases per year (India),"Living or traveling in tropical areas, Prior infection with a dengue fever virus" +119,Typhoid,"eat high calorie vegetables, antibiotic therapy, consult doctor, medication +",Very rare- Fewer than 100 thousand cases per year (India),"Work in or travel to areas where typhoid fever is established, Drink contaminated water" +120,Hepatitis A,"wearing of latex gloves when handling faeces, urine, saliva, and blood.",Rare -Fewer than 1 million cases per year (India),"Travel in areas where hepatitis A is common, have a clotting-factor disorder, such as hemophilia" +121,Tuberculosis,"cover mouth, consult doctor, medication +",Common -More than 1 million cases per year (India),"AIDS, Severe kidney disease, Cancer treatment, Drugs to prevent rejection of transplanted organs" +122,Common Cold,"drink vitamin c rich drinks, take vapour, avoid cold food, keep fever in check +",Very common-More than 10 million cases per year (India),"Children younger than 6, weakened immune system, Smoking" +123,Pneumonia,"Practice good hygiene, Don't smoke, Practice a healthy lifestyle, Avoid sick people +",Very common-More than 10 million cases per year (India),"Asthma, chronic obstructive pulmonary disease (COPD) or heart disease, Smoking, weakened immunity" +124,Piles,"Avoid fatty spicy food, consume witch hazel, warm bath with Epsom salt, consume Aloe Vera juice",Very common-More than 10 million cases per year (India),Pregnancy and older age +125,Heart attack,"Eat a healthy diet, Get regular exercise, Limit alcohol, Don't smoke, Manage stress",Very common-More than 10 million cases per year (India),"Tobacco, old age, High blood cholesterol, Obesity, Diabetes, Stress, An autoimmune condition" +126,Varicose veins,"Lie down flat and raise the leg high, use ointments, use vein compressor, don't stand still for long +",Very common-More than 10 million cases per year (India),"Older age, being woman, Family history, Obesity, Standing or sitting for long periods of time." +127,Hypothyroidism,"Reduce stress, exercise, eat healthy, get proper sleep +",Very common-More than 10 million cases per year (India),"Woman, older age, family history of thyroid, autoimmune disease, Received radiation to your neck" +128,Hypoglycemia,"Lie down on side, check in pulse, drink sugary drinks. +",Common -More than 1 million cases per year (India),"Taking too much insulin, skipping a meal, or exercising harder than usual." +129,Osteoarthritis,"acetaminophen, salt baths, Keep a healthy body weight, Prevent injury to your joints. +",Very common-More than 10 million cases per year (India),"Older age, overweight, being a woman, Joint injuries, Bone deformities, certain metabolic diseases." +130,Arthritis,"Exercise, use hot and cold therapy, try acupuncture, massage +",Very common-More than 10 million cases per year (India),"Family history, Previous joint injury, older age, being woman, obesity" +131,Paroxysmal Positional Vertigo,"Lie down, avoid sudden change in body, avoid abrupt head movement, relax +",Common -More than 1 million cases per year (India),"Age 50 and older, being woman, head injury, disorder of the balance organs of your ear." +132,Acne,"Bath twice, avoid fatty spicy food, drink plenty of water, avoid too many products +",Very common-More than 10 million cases per year (India),"Being teenager, Hormonal changes, Friction or pressure on your skin, Stress, certain medicines." +133,Urinary tract infection,"Drink plenty of water, increase vitamin c intake, drink cranberry juice, take probiotics +",Very common-More than 10 million cases per year (India),"Being women, Women who use diaphragms, A suppressed immune system, Kidney stones." +134,Psoriasis,"Wash hands with warm soapy water, stop bleeding using pressure, consult doctor, salt baths +",Very common-More than 10 million cases per year (India),"Family history, Viral and bacterial infections, Obesity, Lesions, Smoking." +135,Impetigo,"Wash your hands often with soap and water, use alcohol hand rubs, Do not share personal items +",Very common-More than 10 million cases per year (India),"Diabetes, weakened immune system, children ages 2 to 5, Crowded conditions, Broken skin" +136,Swine flu,"Get vaccinated against H1N1, wash your hands often with soap, Avoid touching your eyes,nose or mouth",Rare -Fewer than 1 million cases per year (India),"Swine farmers and veterinarians, traveled to an area where many people are affected by swine flu." +137,ADHD,"protein-rich breakfast, walk to school if possible, have a quiet place to do homework.",Very common-More than 10 million cases per year (India),"Exposure to environmental toxins, family history, drug use, alcohol use or smoking during pregnancy" +138,Bird flu,"Use different utensils for cooked and raw meat, cook meat fully, avoid contact with live poultry.",Extremely rare- Fewer than 5 thousand cases per year (India),"contact with sick birds or with surfaces contaminated by their feathers, saliva or droppings" +139,Chikungunya,"Prevent mosquito bites, Use insect repellent, wear long-sleeved shirts and pants.",Extremely rare- Fewer than 5 thousand cases per year (India),"Older age, people with underlying medical conditions, such as hypertension, diabetes, or heart disease." +140,Cholera,"Drink safe water, Wash your hands often with soap, Use toilets, use safe water for cooking.",Extremely rare- Fewer than 5 thousand cases per year (India),"Poor sanitary conditions, Reduced or nonexistent stomach acid, Type O blood, undercooked shellfish." +141,Depression,"Handle stress, improve your self-esteem, Get enough sleep, eat well, and exercise regularly",Very common-More than 10 million cases per year (India),"Certain traits, Traumatic events, family history, alcoholism or suicide, intersex, chronic illness" +142,Epilepsy,"Take frequent breaks, drink lots of water, Wear protective clothing, Avoid busy streets when riding",Common -More than 1 million cases per year (India),"Family history, Family history, Stroke and other vascular diseases, Dementia, Brain infections." +143,Gonorrhoea,"Use condom during sexual intercourse, have sexually monogamous partner with no infection.",Very common-More than 10 million cases per year (India),"Having a sex partner with multiple partners, Having multiple sex partners, Having had another STD" +144,Gout,"Limit the intake of alcohol, fat, lose weight, Eat more complex carbohydrates, drink lots of water.",Very common-More than 10 million cases per year (India),"High levels of uric acid, Alcohol consumption, Obesity, high BP, chronic condition, being man." +145,Thyroid,"Avoid smoking, drink plenty water, Eat selenium, tyrosine, and antioxidants rich food.",Very common-More than 10 million cases per year (India),"Woman who’s had menopause, Had prolonged, calcium, vitamin D deficiency, Had radiation treatment." +146,Herpes,"Always use condoms and dental dams during oral, anal, and vaginal sex.",Very common-More than 10 million cases per year (India),"Having multiple sexual partners, being woman, having sex during a herpes outbreak." +147,Insomnia,"Avoid caffeine, alcohol late in the day, exercise regularly, Make your sleep place comfortable.",Very common-More than 10 million cases per year (India),"Older age, being woman, during menopause, menstrual cycle or pregnancy,stress,mental health disorder" +148,Conjunctivitis,"Avoid touching your eyes with unwashed hands, Do not share items used by an infected person.",Very rare- Fewer than 100 thousand cases per year (India),"Using contact lenses, Exposure to something for which you have an allergy." +149,Kidney stones,"Stay hydrated, Eat more calcium-rich foods and Eat less sodium, oxalate-rich foods, animal protein.",Common -More than 1 million cases per year (India),"Dehydration, family history, Digestive diseases, obesity, diet high in protein, sodium and sugar" +150,PCOS,"Maintain a healthy weight, Limit carbohydrates, Be active, Exercise regularly.",Common -More than 1 million cases per year (India),"Diabetes, High blood pressure, Unhealthy cholesterol, Depression and anxiety." +151,Rabies,"Vaccinate dogs and cats against rabies, Do not keep wild animals as pets, Leave stray animals alone.",Very rare- Fewer than 100 thousand cases per year (India),"Travelling where rabies is common, Activities that put you in contact with wild animals." +152,Schizophrenia,"Don't use street drugs, and moderate any use of alcohol, Avoid social isolation.",Common -More than 1 million cases per year (India),"Family history, birth complications, drugs during teen years and young adulthood." +153,Diphtheria,Prevent contact with infected persons.,Very rare- Fewer than 100 thousand cases per year (India),"People living in unsanitary conditions, anyone who tours where diphtheria infections are more common" +154,E. coli Infection,"Wash hands, cutting boards, utensils after they touch raw meat. Avoid raw milk, unpasteurized dairy",Very rare- Fewer than 100 thousand cases per year (India),"Weakened immune systems, Eating certain types of food, being non vegetarian." +155,Giardiasis,"Practice good hygiene, Avoid contaminated water,eating contaminated food, Prevent contact with feces",Rare -Fewer than 1 million cases per year (India),"Children, People without access to safe drinking water, rural or wilderness areas" +156,Lyme disease,"Use insect repellents, tick-proof your yard, Check your clothing, your children and pets for ticks",Extremely rare- Fewer than 5 thousand cases per year (India),"Spending time in wooded or grassy areas, Not removing ticks promptly or properly" +157,Measles,"Practice good hand hygiene, Don’t share personal items with people who may be ill, get vaccinated",Extremely rare- Fewer than 5 thousand cases per year (India),"Being unvaccinated, Having a vitamin A deficiency, travelling to places where measles is common" +158,Meningitis,"Cover your mouth when coughing or sneezing, Clean your hands before eating, do not contact ill person",Extremely rare- Fewer than 5 thousand cases per year (India),"Skipping vaccinations, pregnant women, weak immune system, AIDS, alcoholism, diabetes, using drugs" +159,Mumps,"Cover your mouth when coughing or sneezing, Clean your hands before eating, do not contact ill person",Very rare- Fewer than 100 thousand cases per year (India),"Being unvaccinated, travelling to places where mumps is common, contact of ill person" +160,Polio,"Getting vaccinated,",Extremely rare- Fewer than 5 thousand cases per year (India),"Children younger than 5, unvaccinated individuals" +161,Rubella,"Getting vaccinated, do not contact ill person",Very rare- Fewer than 100 thousand cases per year (India),"Contact with infected patient, not vaccinated, Overcrowding, Poor immune system, Medical personnel." +162,Tetanus,"Control bleeding, Keep the wound clean, Use antibiotics, Cover the wound, Change the dressing",Extremely rare- Fewer than 5 thousand cases per year (India),"Injecting drugs, Gunshot wounds, fractures, Animal or insect bites, foot ulcers, surgical wounds" +163,Whooping cough,"Getting vaccinated,",Rare -Fewer than 1 million cases per year (India),"Being unvaccinated, travelling to places where whooping cough is common, contact of ill person" +164,Yellow fever,"Prevent mosquito bites Use insect repellent, wear protective clothing, and get vaccinated before traveling",Extremely rare- Fewer than 5 thousand cases per year (India),If you travel to an area where mosquitoes continue to carry the yellow fever virus. +165,Anthrax,"Avoid touching a contaminated surface, avoid contact of ill person, prevent animal bites.",Extremely rare- Fewer than 5 thousand cases per year (India),"Handle animal skins, furs, Work with anthrax in a laboratory, Inject illegal drugs." +166,Chlamydia,"Use condom during sexual intercourse, have sexually monogamous partner with no infection.",Common -More than 1 million cases per year (India),"Having a sex partner with multiple partners, Having multiple sex partners, Having had another STD" +167,Leprosy,Early diagnosis and treatment of people who are infected.,Very rare- Fewer than 100 thousand cases per year (India),"Living in an endemic region, contact of person suffering from leprosy" +168,Phthiriasis,Do not use infected person's personal items,Rare -Fewer than 1 million cases per year (India),If in sexual contact with person with pubic lice. +169,Salmonella,"Avoid eating raw eggs, undercooked meat, Refrigerate food properly, wash hands after contacting meat",Common -More than 1 million cases per year (India),"Owning a pet bird or reptile, Inflammatory bowel disease, AIDS, Sickle cell disease, Malaria." +170,Smallpox,"Getting vaccinated, do not contact ill person",Extremely rare- Fewer than 5 thousand cases per year (India),"Being unvaccinated, contact with person suffering from small pox" +171,Vaginosis,"Avoid over-washing, Avoid using strong detergent for underwear, Change your tampons or pads frequently.",Very common-More than 10 million cases per year (India),"Having multiple sex partners, Natural lack of lactobacilli bacteria, Douching." +172,Zika,"Prevent mosquito bites, using condoms, use insect repellents, wear protective clothing while travelling",Extremely rare- Fewer than 5 thousand cases per year (India),"Living or traveling in countries where there have been outbreaks, Having unprotected sex." +173,Stroke,"healthy diet, exercise regularly, and avoid smoking and drinking too much alcohol.",Common -More than 1 million cases per year (India),"Obesity, Heavy drinking, Use of illegal drugs, High BP, Cigarette smoking, High cholesterol" +174,Cystic fibrosis,"Appropriate hand hygiene, build up immunity",Rare -Fewer than 1 million cases per year (India),"Family history, it is most common in white people." +175,Autism,"Live healthy. Have regular check-ups, eat well-balanced meals, and exercise.",Common -More than 1 million cases per year (India),"Family history, being a boy, Other disorders, Extremely preterm babies, older parents at birth of child" +176,Eczema,"Establish a skin care routine, Use mild soap, use gloves if job requires hands in water",Very common-More than 10 million cases per year (India),"Family history of eczema, allergies, hay fever or asthma." +177,Down syndrome,No precaution,Common -More than 1 million cases per year (India),Family history +178,Fibromyalgia,"Get adequate sleep, Reduce emotional and mental stress, Get regular exercise, Eat a balanced diet.",Very common-More than 10 million cases per year (India),"Family history, being woman, osteoarthritis, rheumatoid arthritis or lupus" +179,Muscular dystrophy,"Exercise, Braces, Mobility aids, Breathing assistance, swimming.",Rare -Fewer than 1 million cases per year (India),Family history +180,Adenomyosis,No precaution,Common -More than 1 million cases per year (India),"Prior uterine surgery, such as a C-section or fibroid removal, Childbirth, Middle age" +181,Sickle cell anemia,"Take folic acid supplements daily, healthy diet. Drink plenty of water. Avoid temperature extremes.",Rare -Fewer than 1 million cases per year (India),If both parents carry a sickle cell gene. +182,scleroderma,"Frequently massage skin, avoid soaps that dry skin, keep skin moist by use of moisturizing lotions",Rare -Fewer than 1 million cases per year (India),"Genetics, being woman, Immune system problems, Environmental triggers." +183,Thrombocythemia,No precaution,Rare -Fewer than 1 million cases per year (India),"High blood cholesterol, high blood pressure, diabetes, and smoking." +184,Alzheimer's,"Stopping smoking, keeping alcohol to a minimum, eating a healthy, balanced diet, exercising",Common -More than 1 million cases per year (India),"Lack of exercise, Obesity, Smoking, High BP, High cholesterol, Poorly controlled diabetes, family history" +185,Cerebral palsy,"Making sure child is vaccinated,Using proper car seat, Using crib with bed rail, Never shake a baby.",Common -More than 1 million cases per year (India),"Low birth weight, severe or untreated jaundice, Premature birth, Viral encephalitis, Toxoplasmosis" +186,Anemia,"consuming iron-rich foods such as fish, poultry, eggs, meat, peas, beans, lentils, and potatoes.",Very common-More than 10 million cases per year (India),"Family history, A diet lacking in certain vitamins and minerals, Intestinal disorders, Pregnancy." +187,Ankylosing spondylitis,"Avoid Alcohol, Get Plenty of Calcium and Vitamin D, Practice Good Posture, exercise",Common -More than 1 million cases per year (India),"Late adolescence or early adulthood, being man, family history" +188,Lupus,"Limit direct sunlight, Get enough sleep, manage stress, Stay away from people who are sick.",Common -More than 1 million cases per year (India),"Men, Blacks,Latinos and Asian Americans are more likely to have lupus nephritis than whites." +189,Multiple sclerosis,No precaution,Rare -Fewer than 1 million cases per year (India),"Family history, being woman, Smoking, Vitamin D deficiency, diabetes, inflammatory bowel disease" +190,Ascariasis,"Avoid ingesting soil that may be contaminated with human or pig feces, washing hands before food",Very common-More than 10 million cases per year (India),"Children likely to play in dirt, Poor sanitation." +191,Amnesia,"Avoid heavy use of alcohol, drugs, Stay mentally active, exercise, use protective gear while playing",Very common-More than 10 million cases per year (India),"Brain surgery, head injury or trauma, Stroke, Alcohol abuse, Seizures" +192,Anxiety disorders,"Avoid coffee, tea, cola and chocolate, xercise daily and eat a healthy, balanced diet.",Very common-More than 10 million cases per year (India),"Trauma, Stress due to an illness, Other mental health disorders, family history" +193,Bladder stones,"Drink plenty of fluids, especially water.",Common -More than 1 million cases per year (India),"Nerve damage. Stroke, spinal cord injuries, Parkinson's disease, diabetes, being man" +194,Breast cysts,No precaution,Common -More than 1 million cases per year (India),Having HRT can increase the risk of developing new cysts. +195,Bronchitis,"Don't smoke, Wash your hands frequently, wear mask in a large crowd, Avoid contacting ill people",Very common-More than 10 million cases per year (India),"Cigarette smoke, Gastric reflux, Exposure to irritants on the job, weak immunity." +196,Cirrhosis,"Don't abuse alcohol,Avoid high-risk sexual behavior,Get vaccinated against hepatitis B,low-fat diet.",Common -More than 1 million cases per year (India),"Excessive alcohol consumption, Having viral hepatitis, obesity." +197,Dementia,"Balanced diet, exercising regularly, stopping smoking, keeping alcohol within recommended limits.",Very common-More than 10 million cases per year (India),"Depression, smoking, Diabetes, Sleep apnea, Down syndrome, Family history, Heavy alcohol use" +198,Gallstones,"Eat more food that is high in fiber, fewer refined carbohydrates, less sugar, Avoid unhealthy fat",Very common-More than 10 million cases per year (India),"Sickle cell anemia or leukemia, Family history, being woman, diabetes, Being pregnant." +199,Gastritis,"Avoid known trigger foods, quit smoking, manage stress, avoiding alcohol, maintain healthy weight.",Common -More than 1 million cases per year (India),"Excessive alcohol use, Stress, Older age, Bacterial infection, vitamin B-12 deficiency." +1100,Iritis,"Protecting the eye from injury, avoid exposure of eye to infections, foods rich in vitamins C and E.",Rare -Fewer than 1 million cases per year (India),"Develop a sexually transmitted infection, Smoke tobacco, Have a specific genetic alteration." diff --git a/frontend/Symptoms_Detection/final_dataset_llms.csv b/frontend/Symptoms_Detection/final_dataset_llms.csv new file mode 100644 index 0000000000000000000000000000000000000000..ccf9b4f13c83b2e1c57266388340c68c3ee52ddd --- /dev/null +++ b/frontend/Symptoms_Detection/final_dataset_llms.csv @@ -0,0 +1,6121 @@ +,label,text,cleaned_text +0,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +3,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +4,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +5,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +6,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +7,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +8,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +9,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +10,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +11,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +12,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +13,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +14,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +15,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +16,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +17,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +18,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +19,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +20,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +21,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +22,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +23,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +24,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +25,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +26,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +27,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +28,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +29,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +30,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +31,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +32,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +33,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +34,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +35,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +36,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +37,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +38,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +39,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +40,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +41,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +42,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +43,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +44,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +45,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +46,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +47,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +48,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +49,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +50,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +51,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +52,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +53,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +54,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +55,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +56,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +57,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +58,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +59,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +60,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +61,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +62,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +63,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +64,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +65,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +66,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +67,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +68,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +69,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +70,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +71,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +72,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +73,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +74,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +75,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +76,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +77,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +78,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +79,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +80,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +81,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +82,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +83,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +84,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +85,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +86,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +87,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +88,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +89,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +90,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +91,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +92,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +93,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +94,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +95,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +96,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +97,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +98,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +99,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +100,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +101,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +102,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +103,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +104,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +105,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +106,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +107,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +108,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +109,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +110,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +111,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +112,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +113,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +114,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +115,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +116,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +117,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +118,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +119,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +120,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +121,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +122,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +123,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +124,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +125,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +126,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +127,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +128,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +129,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +130,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +131,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +132,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +133,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +134,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +135,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +136,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +137,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +138,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +139,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +140,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +141,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +142,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +143,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +144,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +145,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +146,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +147,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +148,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +149,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +150,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +151,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +152,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +153,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +154,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +155,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +156,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +157,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +158,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +159,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +160,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +161,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +162,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +163,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +164,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +165,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +166,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +167,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +168,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +169,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +170,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +171,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +172,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +173,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +174,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +175,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +176,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +177,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +178,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +179,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +180,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +181,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +182,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +183,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +184,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +185,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +186,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +187,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +188,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +189,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +190,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +191,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +192,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +193,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +194,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +195,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +196,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +197,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +198,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +199,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +200,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +201,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +202,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +203,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +204,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +205,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +206,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +207,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +208,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +209,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +210,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +211,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +212,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +213,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +214,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +215,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +216,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +217,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +218,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +221,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +222,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +223,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +224,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +225,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +226,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +227,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +228,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +229,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +230,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +231,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +232,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +233,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +234,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +235,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +236,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +237,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +238,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +239,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +240,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +241,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +242,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +243,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +244,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +245,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +246,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +248,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +249,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +250,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +251,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +252,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +253,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +254,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +255,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +256,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +257,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +258,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +259,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +260,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +261,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +262,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +263,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +264,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +265,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +266,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +267,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +268,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +269,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +270,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +271,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +272,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +273,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +274,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +275,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +276,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +277,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +278,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +279,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +280,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +281,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +282,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +283,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +284,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +285,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +286,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +287,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +288,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +289,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +290,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +291,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +292,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +293,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +294,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +295,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +296,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +297,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +298,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +299,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +300,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +301,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +302,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +303,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +304,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +305,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +306,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +307,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +308,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +309,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +310,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +312,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +313,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +314,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +315,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +316,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +317,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +318,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +319,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +320,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +321,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +322,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +323,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +324,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +325,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +326,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +327,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +328,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +329,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +330,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +331,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +332,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +333,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +334,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +335,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +336,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +337,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +339,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +340,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +341,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +342,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +343,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +344,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +345,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +346,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +347,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +348,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +349,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +350,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +351,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +352,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +353,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +354,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +355,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +357,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +358,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +359,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +360,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +361,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +362,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +363,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +364,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +365,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +366,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +367,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +368,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +369,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +370,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +371,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +372,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +373,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +374,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +375,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +376,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +377,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +378,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +379,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +380,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +381,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +382,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +383,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +384,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +385,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +386,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +387,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +388,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +389,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +390,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +391,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +392,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +393,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +394,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +395,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +396,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +397,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +398,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +399,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +400,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +401,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +402,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +403,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +404,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +405,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +406,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +407,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +408,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +409,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +410,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +411,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +412,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +413,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +414,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +415,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +416,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +417,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +418,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +419,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +420,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +421,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +422,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +423,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +424,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +425,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +426,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +427,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +428,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +431,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +432,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +433,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +434,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +435,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +436,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +437,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +438,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +439,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +440,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +441,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +442,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +443,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +444,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +445,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +446,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +448,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +449,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +450,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +451,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +452,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +453,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +454,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +455,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +456,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +457,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +458,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +459,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +460,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +461,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +462,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +463,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +464,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +466,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +467,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +468,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +469,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +470,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +471,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +472,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +473,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +474,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +476,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +477,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +478,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +479,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +480,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +481,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +482,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +483,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +484,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +485,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +486,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +487,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +488,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +489,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +490,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +491,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +492,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +493,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +494,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +495,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +496,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +497,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +498,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +499,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +500,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +501,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +502,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +503,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +504,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +505,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +506,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +507,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +508,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +509,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +510,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +511,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +512,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +513,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +514,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +515,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +516,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +517,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +518,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +519,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +520,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +521,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +522,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +523,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +524,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +525,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +526,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +527,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +528,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +529,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +530,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +531,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +532,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +533,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +534,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +535,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +536,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +537,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +538,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +539,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +540,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +541,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +542,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +543,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +544,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +545,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +546,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +547,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +548,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +549,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +550,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +551,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +552,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +553,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +554,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +555,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +556,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +557,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +558,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +559,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +560,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +561,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +562,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +563,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +564,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +565,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +566,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +567,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +568,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +569,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +570,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +571,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +572,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +573,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +574,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +575,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +576,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +577,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +578,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +579,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +580,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +581,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +582,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +583,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +584,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +585,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +586,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +587,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +588,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +589,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +590,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +591,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +592,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +593,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +594,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +595,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +596,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +597,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +598,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +599,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +600,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +601,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +602,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +603,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +604,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +605,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +606,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +607,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +608,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +609,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +610,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +611,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +612,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +613,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +614,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +615,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +616,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +617,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +618,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +619,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +620,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +621,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +622,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +623,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +624,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +625,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +626,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +627,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +628,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +631,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +632,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +633,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +634,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +635,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +636,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +637,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +638,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +639,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +640,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +641,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +642,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +643,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +644,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +645,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +646,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +648,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +649,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +650,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +651,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +652,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +653,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +654,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +655,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +656,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +658,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +659,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +660,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +661,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +662,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +663,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +664,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +665,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +666,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +667,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +668,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +669,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +670,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +671,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +672,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +673,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +674,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +675,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +676,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +677,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +678,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +679,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +680,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +681,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +682,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +683,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +684,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +685,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +686,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +687,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +688,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +689,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +690,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +691,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +692,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +693,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +694,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +695,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +696,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +697,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +698,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +699,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +700,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +701,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +702,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +703,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +704,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +705,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +706,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +707,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +708,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +709,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +710,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +711,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +712,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +713,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +714,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +715,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +716,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +717,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +718,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +719,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +720,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +722,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +723,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +724,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +725,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +726,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +727,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +728,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +729,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +730,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +731,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +732,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +733,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +734,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +735,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +736,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +737,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +739,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +740,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +741,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +742,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +743,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +744,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +745,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +746,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +747,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +749,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +750,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +751,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +752,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +753,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +754,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +755,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +756,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +757,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +758,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +759,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +760,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +761,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +762,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +763,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +764,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +765,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +767,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +768,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +769,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +770,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +771,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +772,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +773,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +774,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +775,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +776,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +777,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +778,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +779,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +780,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +781,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +782,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +783,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +784,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +785,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +786,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +787,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +788,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +789,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +790,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +791,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +792,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +793,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +794,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +795,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +796,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +797,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +798,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +799,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +800,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +801,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +802,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +803,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +804,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +805,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +806,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +807,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +808,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +809,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +810,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +811,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +812,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +813,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +814,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +815,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +816,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +817,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +818,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +819,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +820,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +821,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +822,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +823,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +824,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +825,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +826,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +827,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +828,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +831,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +832,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +833,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +834,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +835,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +836,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +837,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +838,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +841,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +842,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +843,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +844,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +845,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +846,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +847,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +848,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +849,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +850,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +851,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +852,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +853,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +854,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +855,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +856,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +858,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +859,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +860,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +861,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +862,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +863,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +864,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +865,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +866,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +867,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +868,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +869,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +870,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +871,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +872,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +873,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +874,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +876,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +877,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +878,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +879,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +880,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +881,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +882,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +883,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +884,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +886,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +887,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +888,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +889,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +890,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +891,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +892,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +893,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +894,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +895,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +896,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +897,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +898,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +899,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +900,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +901,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +902,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +903,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +904,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +905,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +906,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +907,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +908,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +909,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +910,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +911,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +912,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +913,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +914,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +915,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +916,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +917,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +918,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +919,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +920,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +921,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +922,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +923,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +924,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +925,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +926,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +927,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +928,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +929,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +930,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +931,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +932,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +933,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +934,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +935,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +936,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +937,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +938,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +939,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +940,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +941,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +942,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +943,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +944,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +945,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +946,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +947,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +948,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +949,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +950,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +951,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +952,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +953,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +954,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +955,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +956,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +957,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +958,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +959,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +960,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +961,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +962,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +963,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +964,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +965,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +966,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +967,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +968,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +969,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +970,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +971,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +972,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +973,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +974,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +975,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +976,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +977,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +978,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +979,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +980,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +981,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +982,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +983,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +984,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +985,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +986,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +987,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +988,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +989,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +990,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +991,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +992,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +993,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +994,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +995,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +996,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +997,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +998,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +999,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1000,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1001,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1002,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1003,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1004,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1005,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1006,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1007,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1008,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1009,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1010,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1011,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1012,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1013,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1014,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1015,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1016,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1017,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1018,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1019,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1020,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1021,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1022,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1023,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1024,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1025,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1026,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1027,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1028,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1029,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1030,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1031,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1032,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1033,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1034,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1035,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1036,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1037,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1038,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1041,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1042,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1043,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1044,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1045,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1046,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1047,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1048,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1049,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1050,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1051,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1052,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1053,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1054,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1055,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1056,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1058,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1059,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1060,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1061,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1062,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1063,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1064,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1065,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1066,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1067,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1068,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1069,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1070,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1071,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1072,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1073,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1074,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1075,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1076,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1077,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1078,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1079,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1080,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1081,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1082,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1083,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1084,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1085,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1086,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1087,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1088,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1089,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1090,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1091,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1092,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1093,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1094,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1095,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1096,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1097,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1098,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1099,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1100,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1101,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1102,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1103,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1104,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1105,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1106,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1107,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1108,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1109,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1110,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1111,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1112,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1113,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1114,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1115,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1116,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1117,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1118,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1119,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1120,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1121,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1122,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1123,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1124,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1125,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1126,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1127,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1128,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1129,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1130,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1132,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1133,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1134,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1135,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1136,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1137,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1138,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1139,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1140,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1141,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1142,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1143,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1144,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1145,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1146,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1147,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1149,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1150,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1151,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1152,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1153,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1154,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1155,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1156,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1157,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1158,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1159,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1160,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1161,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1162,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1163,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1164,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1165,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1166,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1167,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1168,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1169,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1170,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1171,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1172,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1173,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1174,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1175,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1177,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1178,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1179,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1180,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1181,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1182,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +1183,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +1184,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +1185,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1186,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +1187,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +1188,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1189,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1190,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1191,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1192,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +1193,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1194,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1195,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1196,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1197,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1198,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1199,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1200,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1201,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1202,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1203,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +1204,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1205,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +1206,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1207,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1208,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1209,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1210,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1211,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1212,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1213,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1214,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +1215,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +1216,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +1217,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +1218,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1219,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1220,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1221,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1222,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +1223,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1224,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1225,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +1226,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +1227,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +1228,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1229,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1230,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1231,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1232,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1233,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1234,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1235,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1236,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1237,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1238,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1241,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1242,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1243,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1244,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1245,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1246,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1247,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1248,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1249,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1250,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +1251,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1252,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1253,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1254,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +1255,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +1256,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +1257,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1258,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1259,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1260,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1261,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1262,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1263,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +1264,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +1265,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +1266,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +1267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +1268,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1269,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1270,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +1271,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1272,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1273,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1274,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1275,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +1276,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1277,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1278,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1279,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1280,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1281,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1282,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1283,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1284,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +1286,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +1287,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +1288,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1289,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1290,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1291,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1292,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1293,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +1294,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1295,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1296,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1297,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1298,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1299,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1300,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1301,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1302,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1303,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1304,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1305,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1306,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1307,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +1308,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +1309,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +1310,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1311,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1312,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1313,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1314,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1315,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +1316,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1317,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1318,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1319,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1320,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1321,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1322,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1323,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +1324,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +1325,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +1326,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +1327,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1328,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1329,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1330,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1331,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1332,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1333,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1334,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +1335,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +1336,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1337,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1338,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1339,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1340,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1341,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1342,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1343,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1344,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1345,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +1346,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +1347,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +1348,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +1349,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +1350,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1351,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1352,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1353,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1354,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +1355,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +1356,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +1357,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1358,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1359,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1360,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1361,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1362,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1363,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1364,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1365,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +1366,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1367,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1368,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1369,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1370,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1371,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1372,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1373,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1374,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1375,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +1376,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +1377,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +1378,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +1379,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +1380,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1381,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1382,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1383,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1384,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1385,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +1386,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +1387,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +1388,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +1389,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1390,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1391,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1392,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1393,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1394,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1395,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1396,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1397,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +1398,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +1399,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +1400,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +1401,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +1402,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +1403,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1404,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1405,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1406,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1407,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1408,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1409,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1410,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1411,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1412,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1413,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1414,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1415,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1416,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1417,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1418,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1419,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1420,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1421,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1422,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1423,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1424,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1425,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1426,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1427,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1428,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1429,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1430,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1431,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1432,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1433,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1434,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1435,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1436,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1437,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1438,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1439,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1440,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1441,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1442,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1443,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1444,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1445,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1446,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1447,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1448,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1451,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1452,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1453,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1454,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1455,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1456,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1457,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1458,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1459,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1460,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1461,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1462,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1463,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1464,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1465,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1466,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1468,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1469,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1470,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1471,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1472,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1473,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1474,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1475,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1476,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1477,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1478,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1479,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1480,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1481,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1482,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1483,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1484,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1485,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1486,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1487,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1488,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1489,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1490,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1491,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1492,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1493,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1494,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1495,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1496,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1497,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1498,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1499,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1500,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1501,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1502,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1503,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1504,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1505,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1506,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1507,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1508,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1509,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1510,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1511,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1512,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1513,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1514,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1515,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1516,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1517,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1518,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1519,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1520,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1521,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1522,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1523,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1524,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1525,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1526,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1527,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1528,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1529,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1530,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1532,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1533,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1534,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1535,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1536,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1537,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1538,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1539,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1540,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1542,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1543,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1544,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1545,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1546,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1547,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1548,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1549,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1550,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1551,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1552,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1553,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1554,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1555,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1556,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1557,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1559,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1560,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1561,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1562,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1563,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1564,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1565,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1566,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1567,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1568,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1569,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1570,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1571,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1572,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1573,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1574,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1575,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1577,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1578,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1579,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1580,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1581,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1582,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1583,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1584,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1585,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1587,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1588,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1589,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1590,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1591,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1592,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +1593,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +1594,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +1595,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1596,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +1597,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +1598,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +1599,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +1600,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1601,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1602,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +1603,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1604,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1605,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1606,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +1607,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +1608,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +1609,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +1610,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1611,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1612,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1613,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +1614,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1615,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +1616,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +1617,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1618,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +1619,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +1620,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1621,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1622,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1623,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1624,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +1625,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +1626,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +1627,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +1628,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1629,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +1630,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1631,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1632,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +1633,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1634,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1635,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +1636,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +1637,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +1638,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +1639,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +1640,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1641,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1642,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1643,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1644,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1645,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +1646,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +1647,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +1648,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +1649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +1650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1651,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1652,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1653,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1654,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1655,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +1656,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +1657,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +1658,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +1659,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +1660,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +1661,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1662,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1663,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1664,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +1665,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +1666,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +1667,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +1668,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +1669,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +1670,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1671,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1672,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1673,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +1674,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +1675,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +1676,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +1677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +1678,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1679,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1680,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +1681,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1682,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1683,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1684,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1685,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +1686,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +1687,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +1688,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +1689,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +1690,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1691,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1692,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1693,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +1694,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +1695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +1696,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +1697,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +1698,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1699,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +1700,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1701,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1702,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1703,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +1704,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1705,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1706,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +1707,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +1708,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +1709,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +1710,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1711,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1712,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1713,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1714,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1715,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1716,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +1717,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +1718,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +1719,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +1720,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1721,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1722,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1723,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1724,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1725,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +1726,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +1727,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +1728,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +1729,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +1730,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1731,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1732,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1733,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +1734,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +1735,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +1736,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +1737,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +1738,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +1739,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +1740,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1741,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1742,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1743,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1744,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +1745,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +1746,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +1747,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +1748,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +1749,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +1750,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1751,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1752,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1753,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1754,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +1755,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +1756,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +1757,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +1758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +1759,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +1760,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1761,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1762,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1763,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1764,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +1765,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +1766,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +1767,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +1768,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +1769,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +1770,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1771,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1772,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1773,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1774,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1775,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +1776,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +1777,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +1778,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +1779,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +1780,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1781,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1782,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1783,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1784,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +1785,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +1786,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +1787,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +1788,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +1789,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +1790,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1791,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1792,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1793,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1794,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +1795,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +1796,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +1797,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +1798,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +1799,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +1800,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1801,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1802,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1803,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1804,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1805,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1806,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +1807,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +1808,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +1809,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +1810,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +1811,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +1812,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +1813,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1814,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1815,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1816,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1817,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1818,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1819,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +1820,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1821,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1822,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1823,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +1824,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +1825,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +1826,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +1827,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1828,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1829,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +1830,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1831,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1832,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1833,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1834,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1835,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1836,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1837,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +1838,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +1839,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +1840,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1841,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1842,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1843,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1844,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1845,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1846,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1847,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1848,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +1850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1851,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1852,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1853,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +1854,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +1855,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +1856,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +1857,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +1858,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +1860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1861,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1862,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1863,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1864,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +1865,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +1866,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +1867,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +1868,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +1869,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +1870,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +1871,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1872,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1873,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1874,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1875,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1876,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1878,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1879,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +1880,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1881,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1882,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1883,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1884,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1885,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +1886,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +1887,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +1888,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +1889,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +1890,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1891,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1892,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1893,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1894,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1895,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1896,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1897,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1898,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1899,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +1900,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1901,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1902,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1903,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1904,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1905,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1906,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1907,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1908,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1909,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +1910,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +1911,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1912,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1913,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1914,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1915,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1916,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1917,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1918,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +1919,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +1920,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1921,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1922,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1923,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +1924,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +1925,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +1926,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +1927,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +1928,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1929,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +1930,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1931,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1932,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1933,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1934,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1935,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +1936,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +1937,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +1938,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +1939,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +1940,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1942,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1943,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1944,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +1945,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +1946,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +1947,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1948,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +1949,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +1950,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1951,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1952,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1953,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1954,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1955,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1956,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1957,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1958,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1959,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +1960,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1961,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1962,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1963,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1964,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1965,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1966,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1967,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +1969,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +1970,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +1971,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1972,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1973,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1974,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1975,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1976,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1977,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1978,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1979,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +1980,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1981,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1982,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1983,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +1984,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +1985,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +1986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +1987,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +1988,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1989,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +1990,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1991,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1992,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +1993,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +1994,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +1995,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +1996,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1997,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +1998,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +1999,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2000,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2001,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2002,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +2003,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +2004,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +2005,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2006,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +2007,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +2008,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2009,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2010,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2011,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2012,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +2013,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2014,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2015,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2016,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2017,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2018,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2019,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2020,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2021,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2022,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2023,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +2024,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2025,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +2026,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2027,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2028,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2029,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2030,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2031,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2032,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2033,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2034,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +2035,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +2036,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +2037,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +2038,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2039,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2040,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2041,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2042,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +2043,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2044,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2045,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +2046,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +2047,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +2048,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2049,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2050,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2051,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2052,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +2053,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +2054,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +2055,Fungal infection,"skin_rash,nodal_skin_eruptions,dischromic _patches","skin rash , nodal skin eruptions , dischromic patches" +2056,Fungal infection,"itching,nodal_skin_eruptions,dischromic _patches","itching , nodal skin eruptions , dischromic patches" +2057,Fungal infection,"itching,skin_rash,dischromic _patches","itching , skin rash , dischromic patches" +2058,Fungal infection,"itching,skin_rash,nodal_skin_eruptions","itching , skin rash , nodal skin eruptions" +2059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2061,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +2062,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +2063,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +2064,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +2065,Allergy,"shivering,chills,watering_from_eyes","shivering , chills , watering eyes" +2066,Allergy,"continuous_sneezing,chills,watering_from_eyes","continuous sneezing , chills , watering eyes" +2067,Allergy,"continuous_sneezing,shivering,watering_from_eyes","continuous sneezing , shivering , watering eyes" +2068,Allergy,"continuous_sneezing,shivering,chills","continuous sneezing , shivering , chills" +2069,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2070,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2071,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +2072,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +2073,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +2074,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , chest pain" +2075,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough","stomach pain , acidity , ulcers tongue , vomiting , cough" +2076,GERD,"acidity,ulcers_on_tongue,vomiting,cough,chest_pain","acidity , ulcers tongue , vomiting , cough , chest pain" +2077,GERD,"stomach_pain,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , ulcers tongue , vomiting , cough , chest pain" +2078,GERD,"stomach_pain,acidity,vomiting,cough,chest_pain","stomach pain , acidity , vomiting , cough , chest pain" +2079,GERD,"stomach_pain,acidity,ulcers_on_tongue,cough,chest_pain","stomach pain , acidity , ulcers tongue , cough , chest pain" +2080,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2081,Chronic cholestasis,"vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2082,Chronic cholestasis,"itching,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2083,Chronic cholestasis,"itching,vomiting,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , nausea , loss appetite , abdominal pain , yellowing eyes" +2084,Chronic cholestasis,"itching,vomiting,yellowish_skin,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , loss appetite , abdominal pain , yellowing eyes" +2085,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , abdominal pain , yellowing eyes" +2086,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , yellowing eyes" +2087,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain" +2088,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2089,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2090,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2091,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +2092,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +2093,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +2094,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +2095,Drug Reaction,"skin_rash,stomach_pain,burning_micturition,spotting_ urination","skin rash , stomach pain , burning micturition , spotting urination" +2096,Drug Reaction,"itching,stomach_pain,burning_micturition,spotting_ urination","itching , stomach pain , burning micturition , spotting urination" +2097,Drug Reaction,"itching,skin_rash,burning_micturition,spotting_ urination","itching , skin rash , burning micturition , spotting urination" +2098,Drug Reaction,"itching,skin_rash,stomach_pain,spotting_ urination","itching , skin rash , stomach pain , spotting urination" +2099,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition","itching , skin rash , stomach pain , burning micturition" +2100,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +2101,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +2102,Peptic ulcer diseae,"indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2103,Peptic ulcer diseae,"vomiting,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , loss appetite , abdominal pain , passage gases , internal itching" +2104,Peptic ulcer diseae,"vomiting,indigestion,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , abdominal pain , passage gases , internal itching" +2105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , passage gases , internal itching" +2106,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , internal itching" +2107,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases","vomiting , indigestion , loss appetite , abdominal pain , passage gases" +2108,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2109,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2110,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2111,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +2112,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +2113,AIDS,"muscle_wasting,patches_in_throat,extra_marital_contacts","muscle wasting , patches throat , extra marital contacts" +2114,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +2115,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2116,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2117,AIDS,"patches_in_throat,high_fever,extra_marital_contacts","patches throat , high fever , extra marital contacts" +2118,AIDS,"muscle_wasting,high_fever,extra_marital_contacts","muscle wasting , high fever , extra marital contacts" +2119,AIDS,"muscle_wasting,patches_in_throat,high_fever","muscle wasting , patches throat , high fever" +2120,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2121,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2122,Diabetes ,"weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2123,Diabetes ,"fatigue,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2124,Diabetes ,"fatigue,weight_loss,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2125,Diabetes ,"fatigue,weight_loss,restlessness,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2126,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2127,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , obesity , excessive hunger , increased appetite , polyuria" +2128,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , excessive hunger , increased appetite , polyuria" +2129,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , increased appetite , polyuria" +2130,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2131,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2132,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +2133,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +2134,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +2135,Gastroenteritis,"vomiting,sunken_eyes,dehydration","vomiting , sunken eyes , dehydration" +2136,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2137,Gastroenteritis,"sunken_eyes,dehydration,diarrhoea","sunken eyes , dehydration , diarrhoea" +2138,Gastroenteritis,"vomiting,dehydration,diarrhoea","vomiting , dehydration , diarrhoea" +2139,Gastroenteritis,"vomiting,sunken_eyes,diarrhoea","vomiting , sunken eyes , diarrhoea" +2140,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2141,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +2142,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +2143,Bronchial Asthma,"fatigue,cough,breathlessness,family_history,mucoid_sputum","fatigue , cough , breathlessness , family history , mucoid sputum" +2144,Bronchial Asthma,"fatigue,cough,high_fever,family_history,mucoid_sputum","fatigue , cough , high fever , family history , mucoid sputum" +2145,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,mucoid_sputum","fatigue , cough , high fever , breathlessness , mucoid sputum" +2146,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history","fatigue , cough , high fever , breathlessness , family history" +2147,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2148,Bronchial Asthma,"cough,high_fever,breathlessness,family_history,mucoid_sputum","cough , high fever , breathlessness , family history , mucoid sputum" +2149,Bronchial Asthma,"fatigue,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , high fever , breathlessness , family history , mucoid sputum" +2150,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2151,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +2152,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +2153,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +2154,Hypertension ,"headache,chest_pain,dizziness,lack_of_concentration","headache , chest pain , dizziness , lack concentration" +2155,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance","headache , chest pain , dizziness , loss balance" +2156,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2157,Hypertension ,"chest_pain,dizziness,loss_of_balance,lack_of_concentration","chest pain , dizziness , loss balance , lack concentration" +2158,Hypertension ,"headache,dizziness,loss_of_balance,lack_of_concentration","headache , dizziness , loss balance , lack concentration" +2159,Hypertension ,"headache,chest_pain,loss_of_balance,lack_of_concentration","headache , chest pain , loss balance , lack concentration" +2160,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2161,Migraine,"indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2162,Migraine,"acidity,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2163,Migraine,"acidity,indigestion,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2164,Migraine,"acidity,indigestion,headache,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2165,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , stiff neck , depression , irritability , visual disturbances" +2166,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , depression , irritability , visual disturbances" +2167,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , irritability , visual disturbances" +2168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , visual disturbances" +2169,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability" +2170,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2171,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2172,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +2173,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +2174,Cervical spondylosis,"back_pain,weakness_in_limbs,dizziness,loss_of_balance","back pain , weakness limbs , dizziness , loss balance" +2175,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,loss_of_balance","back pain , weakness limbs , neck pain , loss balance" +2176,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness","back pain , weakness limbs , neck pain , dizziness" +2177,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2178,Cervical spondylosis,"weakness_in_limbs,neck_pain,dizziness,loss_of_balance","weakness limbs , neck pain , dizziness , loss balance" +2179,Cervical spondylosis,"back_pain,neck_pain,dizziness,loss_of_balance","back pain , neck pain , dizziness , loss balance" +2180,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2181,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2182,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +2183,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +2184,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +2185,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side","vomiting , headache , weakness one body side" +2186,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2187,Paralysis (brain hemorrhage),"headache,weakness_of_one_body_side,altered_sensorium","headache , weakness one body side , altered sensorium" +2188,Paralysis (brain hemorrhage),"vomiting,weakness_of_one_body_side,altered_sensorium","vomiting , weakness one body side , altered sensorium" +2189,Paralysis (brain hemorrhage),"vomiting,headache,altered_sensorium","vomiting , headache , altered sensorium" +2190,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2191,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2192,Jaundice,"vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2193,Jaundice,"itching,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2194,Jaundice,"itching,vomiting,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2195,Jaundice,"itching,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , high fever , yellowish skin , dark urine , abdominal pain" +2196,Jaundice,"itching,vomiting,fatigue,weight_loss,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , yellowish skin , dark urine , abdominal pain" +2197,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , dark urine , abdominal pain" +2198,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , abdominal pain" +2199,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine" +2200,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +2201,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2202,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2203,Malaria,"vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2204,Malaria,"chills,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2205,Malaria,"chills,vomiting,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , sweating , headache , nausea , diarrhoea , muscle pain" +2206,Malaria,"chills,vomiting,high_fever,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , headache , nausea , diarrhoea , muscle pain" +2207,Malaria,"chills,vomiting,high_fever,sweating,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , nausea , diarrhoea , muscle pain" +2208,Malaria,"chills,vomiting,high_fever,sweating,headache,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , diarrhoea , muscle pain" +2209,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , muscle pain" +2210,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2211,Chicken pox,"skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2212,Chicken pox,"itching,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2213,Chicken pox,"itching,skin_rash,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2214,Chicken pox,"itching,skin_rash,fatigue,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2215,Chicken pox,"itching,skin_rash,fatigue,lethargy,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2216,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2217,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , mild fever , swelled lymph nodes , malaise , red spots body" +2218,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , swelled lymph nodes , malaise , red spots body" +2219,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , malaise , red spots body" +2220,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , muscle pain , red spots body" +2221,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , red spots body" +2222,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain" +2223,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2224,Dengue,"chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2225,Dengue,"skin_rash,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2226,Dengue,"skin_rash,chills,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2227,Dengue,"skin_rash,chills,joint_pain,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2228,Dengue,"skin_rash,chills,joint_pain,vomiting,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2229,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2230,Typhoid,"chills,vomiting,fatigue,high_fever,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2231,Typhoid,"chills,vomiting,fatigue,high_fever,headache,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2232,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2233,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , diarrhoea , toxic look typhos , belly pain" +2234,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , toxic look typhos , belly pain" +2235,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , belly pain" +2236,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos)","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos" +2237,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2238,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2239,Typhoid,"chills,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2240,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2241,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2242,hepatitis A,"vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2243,hepatitis A,"joint_pain,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2244,hepatitis A,"joint_pain,vomiting,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2245,hepatitis A,"joint_pain,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2246,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2247,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2248,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , diarrhoea , mild fever , yellowing eyes , muscle pain" +2249,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , mild fever , yellowing eyes , muscle pain" +2250,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2251,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2252,Hepatitis B,"fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2253,Hepatitis B,"itching,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2254,Hepatitis B,"itching,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2255,Hepatitis B,"itching,fatigue,lethargy,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2256,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2257,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2258,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +2261,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2262,Hepatitis C,"yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2263,Hepatitis C,"fatigue,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , nausea , loss appetite , yellowing eyes , family history" +2264,Hepatitis C,"fatigue,yellowish_skin,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , loss appetite , yellowing eyes , family history" +2265,Hepatitis C,"fatigue,yellowish_skin,nausea,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , yellowing eyes , family history" +2266,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,family_history","fatigue , yellowish skin , nausea , loss appetite , family history" +2267,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes" +2268,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2269,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2270,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2271,Hepatitis D,"vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2272,Hepatitis D,"joint_pain,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2273,Hepatitis D,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2274,Hepatitis D,"joint_pain,vomiting,fatigue,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2275,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2276,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes" +2277,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , abdominal pain , yellowing eyes" +2278,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , yellowing eyes" +2279,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain" +2280,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , coma , stomach bleeding" +2281,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2282,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2283,Hepatitis E,"vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2284,Hepatitis E,"joint_pain,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2285,Hepatitis E,"joint_pain,vomiting,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2286,Hepatitis E,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2288,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2289,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2290,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2291,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2292,Alcoholic hepatitis,"yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2293,Alcoholic hepatitis,"vomiting,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2294,Alcoholic hepatitis,"vomiting,yellowish_skin,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2295,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , distention abdomen , history alcohol consumption , fluid overload 1" +2296,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , history alcohol consumption , fluid overload 1" +2297,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , fluid overload 1" +2298,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption" +2299,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2300,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2301,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2302,Tuberculosis,"vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2303,Tuberculosis,"chills,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2304,Tuberculosis,"chills,vomiting,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2305,Tuberculosis,"chills,vomiting,fatigue,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2306,Tuberculosis,"chills,vomiting,fatigue,weight_loss,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2307,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2308,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2309,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2310,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2311,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2312,Common Cold,"chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2313,Common Cold,"continuous_sneezing,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2314,Common Cold,"continuous_sneezing,chills,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2315,Common Cold,"continuous_sneezing,chills,fatigue,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2316,Common Cold,"continuous_sneezing,chills,fatigue,cough,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2317,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2318,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2319,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2320,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , chest pain , fast heart rate , rusty sputum" +2321,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2322,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2323,Pneumonia,"fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2324,Pneumonia,"chills,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2325,Pneumonia,"chills,fatigue,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2326,Pneumonia,"chills,fatigue,cough,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2327,Pneumonia,"chills,fatigue,cough,high_fever,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2328,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2329,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , phlegm , chest pain , fast heart rate , rusty sputum" +2330,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2331,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2332,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2333,Dimorphic hemmorhoids(piles),"pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","pain bowel movements , pain anal region , bloody stool , irritation anus" +2334,Dimorphic hemmorhoids(piles),"constipation,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain anal region , bloody stool , irritation anus" +2335,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,bloody_stool,irritation_in_anus","constipation , pain bowel movements , bloody stool , irritation anus" +2336,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,irritation_in_anus","constipation , pain bowel movements , pain anal region , irritation anus" +2337,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool","constipation , pain bowel movements , pain anal region , bloody stool" +2338,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2339,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2340,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2341,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2342,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +2343,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +2344,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +2345,Heart attack,"vomiting,breathlessness,sweating","vomiting , breathlessness , sweating" +2346,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2347,Heart attack,"breathlessness,sweating,chest_pain","breathlessness , sweating , chest pain" +2348,Heart attack,"vomiting,sweating,chest_pain","vomiting , sweating , chest pain" +2349,Heart attack,"vomiting,breathlessness,chest_pain","vomiting , breathlessness , chest pain" +2350,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2352,Varicose veins,"cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2353,Varicose veins,"fatigue,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2354,Varicose veins,"fatigue,cramps,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2355,Varicose veins,"fatigue,cramps,bruising,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , swollen legs , swollen blood vessels , prominent veins calf" +2356,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen blood vessels , prominent veins calf" +2357,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +2358,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels" +2359,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , prominent veins calf" +2360,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2361,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2362,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2363,Hypothyroidism,"weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2364,Hypothyroidism,"fatigue,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2365,Hypothyroidism,"fatigue,weight_gain,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2366,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2367,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2368,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2369,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2370,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2371,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2372,Hyperthyroidism,"mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2373,Hyperthyroidism,"fatigue,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2374,Hyperthyroidism,"fatigue,mood_swings,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2375,Hyperthyroidism,"fatigue,mood_swings,weight_loss,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2376,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2377,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2379,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , muscle weakness , irritability , abnormal menstruation" +2380,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , slurred speech , irritability , palpitations" +2381,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2382,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2383,Hypoglycemia,"fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2384,Hypoglycemia,"vomiting,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2385,Hypoglycemia,"vomiting,fatigue,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2386,Hypoglycemia,"vomiting,fatigue,anxiety,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2387,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2388,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2389,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2390,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2391,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2392,Osteoarthristis,"neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2393,Osteoarthristis,"joint_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , knee pain , hip joint pain , swelling joints , painful walking" +2394,Osteoarthristis,"joint_pain,neck_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , hip joint pain , swelling joints , painful walking" +2395,Osteoarthristis,"joint_pain,neck_pain,knee_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , swelling joints , painful walking" +2396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,painful_walking","joint pain , neck pain , knee pain , hip joint pain , painful walking" +2397,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints","joint pain , neck pain , knee pain , hip joint pain , swelling joints" +2398,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2399,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2400,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2401,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2402,Arthritis,"stiff_neck,swelling_joints,movement_stiffness,painful_walking","stiff neck , swelling joints , movement stiffness , painful walking" +2403,Arthritis,"muscle_weakness,swelling_joints,movement_stiffness,painful_walking","muscle weakness , swelling joints , movement stiffness , painful walking" +2404,Arthritis,"muscle_weakness,stiff_neck,movement_stiffness,painful_walking","muscle weakness , stiff neck , movement stiffness , painful walking" +2405,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,painful_walking","muscle weakness , stiff neck , swelling joints , painful walking" +2406,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2407,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness","muscle weakness , stiff neck , swelling joints , movement stiffness" +2408,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2409,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2410,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2411,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2412,(vertigo) Paroymsal Positional Vertigo,"headache,nausea,spinning_movements,loss_of_balance,unsteadiness","headache , nausea , spinning movements , loss balance , unsteadiness" +2413,(vertigo) Paroymsal Positional Vertigo,"vomiting,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , nausea , spinning movements , loss balance , unsteadiness" +2414,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , spinning movements , loss balance , unsteadiness" +2415,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2416,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,unsteadiness","vomiting , headache , nausea , spinning movements , unsteadiness" +2417,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance","vomiting , headache , nausea , spinning movements , loss balance" +2418,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2419,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,loss_of_balance,unsteadiness","vomiting , headache , nausea , loss balance , unsteadiness" +2420,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2421,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2422,Acne,"pus_filled_pimples,blackheads,scurring","pus filled pimples , blackheads , scurring" +2423,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2424,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2425,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2426,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2427,Acne,"skin_rash,pus_filled_pimples,blackheads","skin rash , pus filled pimples , blackheads" +2428,Acne,"skin_rash,pus_filled_pimples,scurring","skin rash , pus filled pimples , scurring" +2429,Acne,"skin_rash,blackheads,scurring","skin rash , blackheads , scurring" +2430,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2431,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2432,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2433,Urinary tract infection,"burning_micturition,foul_smell_of urine,continuous_feel_of_urine","burning micturition , foul smell urine , continuous feel urine" +2434,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2435,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine","burning micturition , bladder discomfort , foul smell urine" +2436,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2437,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2438,Urinary tract infection,"bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","bladder discomfort , foul smell urine , continuous feel urine" +2439,Urinary tract infection,"burning_micturition,bladder_discomfort,continuous_feel_of_urine","burning micturition , bladder discomfort , continuous feel urine" +2440,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2441,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2442,Psoriasis,"joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2443,Psoriasis,"skin_rash,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2444,Psoriasis,"skin_rash,joint_pain,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , silver like dusting , small dents nails , inflammatory nails" +2445,Psoriasis,"skin_rash,joint_pain,skin_peeling,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , small dents nails , inflammatory nails" +2446,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , inflammatory nails" +2447,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails" +2448,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2449,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2450,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2451,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2452,Impetigo,"high_fever,blister,red_sore_around_nose,yellow_crust_ooze","high fever , blister , red sore around nose , yellow crust ooze" +2453,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2454,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2455,Impetigo,"skin_rash,high_fever,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , red sore around nose , yellow crust ooze" +2456,Impetigo,"skin_rash,high_fever,blister,yellow_crust_ooze","skin rash , high fever , blister , yellow crust ooze" +2457,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose","skin rash , high fever , blister , red sore around nose" +2458,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2459,Impetigo,"skin_rash,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , blister , red sore around nose , yellow crust ooze" +2460,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2461,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2462,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2463,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2464,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2465,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2466,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2467,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2468,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2469,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2470,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2471,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2472,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2473,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2474,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2475,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2476,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2477,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2478,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2479,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2480,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2481,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2482,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2483,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2484,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2485,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2486,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2487,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2488,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2489,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2490,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2491,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2492,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2493,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2494,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2495,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2496,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2497,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2498,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2499,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2500,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2501,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2502,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2503,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2504,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2505,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2506,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2507,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2508,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2509,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2510,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2511,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2512,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2513,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2514,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2515,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2516,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2517,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2518,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2519,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2520,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2521,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2522,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2523,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2524,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2525,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2526,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2527,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2528,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2529,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2530,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2531,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2532,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2533,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2534,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2535,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2536,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2537,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2538,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2539,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2540,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2541,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2542,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2543,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2544,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2545,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2546,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2547,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2548,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2549,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2550,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2551,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2552,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2553,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2554,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2555,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2556,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2557,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2558,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2559,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2560,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2561,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2562,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2563,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2564,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2565,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2566,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2567,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2568,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2569,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2570,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2571,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2572,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2573,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2574,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2575,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2576,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2577,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2578,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2579,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2580,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2581,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2582,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2583,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2584,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2585,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2586,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2587,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2588,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2589,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2590,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2591,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2592,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2593,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2594,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2595,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2596,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2597,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2598,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2599,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2600,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2601,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2602,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2603,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2604,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2605,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2606,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2607,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2608,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2609,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2610,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2611,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2612,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2613,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2614,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2615,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2616,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2617,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2618,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2619,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2620,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2621,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2622,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2623,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2624,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2625,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2626,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2627,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2628,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2629,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2630,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2631,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2632,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2633,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2634,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2635,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2636,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2637,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2638,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2639,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2640,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2641,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2642,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2643,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2644,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2645,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2646,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2647,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2648,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2649,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2650,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2651,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2652,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2653,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2654,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2655,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2656,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2657,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2658,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2659,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2660,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2661,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2662,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2663,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2664,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2665,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2666,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2667,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2668,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2669,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2670,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2671,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2672,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2673,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2674,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2675,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2676,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2677,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2678,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2679,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2680,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2681,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2682,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2683,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2684,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2685,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2686,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2687,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2688,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2689,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2690,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2691,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2692,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2693,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2694,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2695,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2696,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2697,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2698,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2699,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2700,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2701,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2702,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2703,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2704,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2705,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2706,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2707,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2708,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2709,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2710,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2711,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2712,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2713,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2714,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2715,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2716,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2717,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2718,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2719,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2720,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2721,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2722,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2723,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2724,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2725,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2726,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2727,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2728,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2729,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2730,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2731,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2732,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2733,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2734,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2735,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2736,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2737,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2738,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2739,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2740,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2741,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2742,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2743,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2744,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2745,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2746,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2747,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2748,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2749,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2750,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2751,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2752,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2753,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2754,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2755,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2756,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2757,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2758,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2759,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2760,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2761,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2762,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2763,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2764,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2765,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2766,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2767,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2768,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2769,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2770,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2771,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2772,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2773,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2774,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2775,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2776,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2777,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2778,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2779,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2780,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2781,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2782,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2783,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2784,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2785,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2786,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2787,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2788,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2789,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2790,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2791,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2792,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2793,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2794,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2795,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2796,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2797,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2798,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2799,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2800,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2801,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2802,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2803,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2804,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2805,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2806,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2807,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2808,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2809,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2810,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2811,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2812,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2813,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2814,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2815,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2816,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2817,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2818,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2819,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2820,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2821,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2822,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2823,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2824,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2825,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2826,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2827,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2828,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2829,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2830,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2831,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2832,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2833,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2834,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2835,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2836,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2837,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2838,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2839,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2840,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2841,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2842,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2843,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2844,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2845,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2846,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2847,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2848,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2849,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2850,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2851,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2852,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2853,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2854,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2855,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2856,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2857,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2858,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2859,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2860,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2861,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2862,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2863,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2864,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2865,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2866,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2867,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2868,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2869,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2870,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2871,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2872,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2873,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2874,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2875,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2876,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2877,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2878,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2879,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2880,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2881,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2882,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2883,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2884,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2885,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2886,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2887,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2888,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2889,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2890,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2891,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2892,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2893,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2894,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2895,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2896,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2897,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2898,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2899,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2900,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2901,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2902,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2903,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2904,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2905,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2906,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2907,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2908,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2909,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2910,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2911,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2912,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2913,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2914,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2915,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2916,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2917,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2918,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2919,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2920,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2921,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2922,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2923,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2924,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2925,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2926,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2927,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2928,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2929,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2930,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2931,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2932,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2933,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2934,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2935,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2936,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2937,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2938,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2939,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2940,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2941,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2942,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2943,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2944,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2945,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2946,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2947,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2948,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2949,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2950,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2951,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2952,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2953,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2954,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2955,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2956,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2957,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2958,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +2959,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +2960,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +2961,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +2962,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +2963,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +2964,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +2965,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +2966,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +2967,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +2968,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +2969,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +2970,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +2971,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +2972,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +2973,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +2974,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +2975,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +2976,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +2977,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +2978,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +2979,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +2980,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +2981,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +2982,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +2983,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +2984,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +2985,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +2986,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +2987,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +2988,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +2989,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +2990,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +2991,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +2992,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +2993,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +2994,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +2995,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +2996,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +2997,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +2998,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +2999,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3000,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3001,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3002,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3003,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3004,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3005,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3006,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3007,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3008,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3009,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3010,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3011,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3012,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3013,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3014,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3015,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3016,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3017,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3018,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3019,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3020,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3021,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3022,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3023,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3024,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3025,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3026,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3027,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3028,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3029,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3030,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3031,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3032,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3033,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3034,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3035,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3036,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3037,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3038,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3039,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3040,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3041,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3042,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3043,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3044,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3045,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3046,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3047,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3048,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3049,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3050,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3051,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3052,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3053,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3054,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3055,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3056,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3057,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3058,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3059,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3060,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3061,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3062,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3063,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3064,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3065,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3066,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3067,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3068,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3069,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3070,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3071,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3072,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3073,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3074,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3075,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3076,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3077,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3078,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3079,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3080,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3081,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3082,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3083,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3084,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3085,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3086,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3087,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3088,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3089,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3090,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3091,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3092,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3093,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3094,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3095,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3096,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3097,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3098,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3099,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3100,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3101,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3102,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3103,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3104,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3105,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3106,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3107,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3108,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3109,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3110,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3111,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3112,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3113,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3114,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3115,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3116,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3117,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3118,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3119,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3120,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3121,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3122,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3123,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3124,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3125,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3126,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3127,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3128,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3129,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3130,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3131,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3132,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3133,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3134,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3135,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3136,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3137,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3138,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3139,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3140,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3141,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3142,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3143,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3144,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3145,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3146,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3147,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3148,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3149,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3150,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3151,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3152,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3153,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3154,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3155,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3156,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3157,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3158,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3159,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3160,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3161,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3162,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3163,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3164,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3165,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3166,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3167,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3168,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3169,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3170,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3171,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3172,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3173,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3174,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3175,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3176,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3177,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3178,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3179,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3180,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3181,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3182,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3183,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3184,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3185,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3186,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3187,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3188,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3189,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3190,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3191,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3192,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3193,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3194,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3195,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3196,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3197,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3198,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3199,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3200,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3201,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3202,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3203,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3204,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3205,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3206,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3207,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3208,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3209,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3210,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3211,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3212,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3213,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3214,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3215,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3216,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3217,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3218,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3219,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3220,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3221,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3222,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3223,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3224,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3225,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3226,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3227,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3228,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3229,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3230,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3231,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3232,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3233,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3234,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3235,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3236,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3237,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3238,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3239,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3240,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3241,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3242,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3243,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3244,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3245,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3246,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3247,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3248,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3249,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3250,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3251,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3252,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3253,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3254,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3255,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3256,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3257,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3258,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3259,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3260,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3261,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3262,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3263,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3264,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3265,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3266,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3267,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3268,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3269,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3270,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3271,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3272,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3273,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3274,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3275,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3276,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3277,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3278,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3279,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3280,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3281,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3282,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3283,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3284,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3285,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3286,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3287,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3288,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3289,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3290,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3291,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3292,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3293,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3294,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3295,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3296,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3297,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3298,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3299,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3300,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3301,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3302,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3303,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3304,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3305,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3306,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3307,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3308,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3309,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3310,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3311,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3312,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3313,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3314,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3315,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3316,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3317,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3318,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3319,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3320,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3321,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3322,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3323,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3324,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3325,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3326,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3327,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3328,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3329,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3330,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3331,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3332,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3333,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3334,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3335,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3336,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3337,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3338,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3339,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3340,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3341,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3342,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3343,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3344,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3345,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3346,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3347,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3348,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3349,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3350,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3351,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3352,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3353,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3354,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3355,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3356,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3357,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3358,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3359,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3360,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3361,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3362,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3363,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3364,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3365,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3366,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3367,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3368,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3369,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3370,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3371,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3372,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3373,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3374,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3375,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3376,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3377,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3378,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3379,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3380,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3381,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3382,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3383,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3384,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3385,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3386,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3387,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3388,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3389,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3390,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3391,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3392,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3393,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3394,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3395,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3396,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3397,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3398,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3399,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3400,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3401,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3402,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3403,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3404,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3405,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3406,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3407,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3408,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3409,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3410,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3411,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3412,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3413,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3414,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3415,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3416,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3417,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3418,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3419,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3420,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3421,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3422,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3423,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3424,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3425,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3426,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3427,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3428,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3429,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3430,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3431,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3432,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3433,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3434,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3435,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3436,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3437,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3438,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3439,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3440,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3441,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3442,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3443,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3444,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3445,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3446,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3447,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3448,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3449,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3450,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3451,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3452,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3453,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3454,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3455,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3456,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3457,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3458,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3459,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3460,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3461,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3462,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3463,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3464,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3465,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3466,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3467,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3468,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3469,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3470,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3471,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3472,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3473,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3474,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3475,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3476,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3477,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3478,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3479,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3480,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3481,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3482,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3483,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3484,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3485,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3486,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3487,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3488,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3489,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3490,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3491,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3492,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3493,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3494,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3495,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3496,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3497,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3498,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3499,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3500,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3501,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3502,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3503,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3504,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3505,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3506,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3507,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3508,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3509,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3510,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3511,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3512,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3513,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3514,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3515,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3516,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3517,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3518,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3519,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3520,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3521,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3522,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3523,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3524,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3525,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3526,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3527,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3528,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3529,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3530,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3531,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3532,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3533,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3534,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3535,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3536,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3537,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3538,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3539,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3540,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3541,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3542,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3543,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3544,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3545,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3546,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3547,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3548,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3549,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3550,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3551,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3552,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3553,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3554,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3555,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3556,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3557,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3558,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3559,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3560,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3561,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3562,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3563,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3564,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3565,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3566,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3567,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3568,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3569,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3570,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3571,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3572,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3573,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3574,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3575,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3576,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3577,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3578,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3579,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3580,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3581,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3582,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3583,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3584,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3585,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3586,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3587,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3588,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3589,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3590,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3591,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3592,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3593,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3594,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3595,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3596,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3597,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3598,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3599,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3600,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3601,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3602,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3603,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3604,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3605,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3606,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3607,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3608,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3609,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3610,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3611,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3612,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3613,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3614,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3615,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3616,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3617,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3618,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3619,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3620,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3621,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3622,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3623,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3624,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3625,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3626,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3627,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3628,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3629,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3630,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3631,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3632,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3633,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3634,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3635,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3636,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3637,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3638,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3639,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3640,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3641,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3642,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3643,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3644,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3645,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3646,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3647,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3648,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3649,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3650,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3651,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3652,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3653,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3654,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3655,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3656,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3657,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3658,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3659,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3660,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3661,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3662,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3663,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3664,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3665,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3666,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3667,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3668,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3669,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3670,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3671,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3672,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3673,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3674,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3675,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3676,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3677,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3678,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3679,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3680,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3681,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3682,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3683,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3684,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3685,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3686,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3687,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3688,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3689,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3690,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3691,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3692,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3693,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3694,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3695,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3696,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3697,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3698,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3699,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3700,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3701,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3702,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3703,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3704,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3705,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3706,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3707,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3708,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3709,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3710,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3711,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3712,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3713,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3714,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3715,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3716,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3717,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3718,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3719,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3720,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3721,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3722,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3723,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3724,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3725,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3726,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3727,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3728,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3729,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3730,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3731,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3732,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3733,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3734,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3735,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3736,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3737,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3738,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3739,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3740,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3741,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3742,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3743,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3744,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3745,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3746,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3747,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3748,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3749,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3750,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3751,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3752,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3753,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3754,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3755,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3756,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3757,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3758,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3759,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3760,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3761,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3762,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3763,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3764,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3765,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3766,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3767,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3768,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3769,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3770,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3771,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3772,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3773,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3774,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3775,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3776,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3777,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3778,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3779,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3780,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3781,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3782,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3783,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3784,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3785,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3786,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3787,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3788,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3789,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3790,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3791,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3792,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3793,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3794,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3795,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3796,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3797,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3798,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3799,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3800,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3801,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3802,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3803,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3804,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3805,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3806,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3807,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3808,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3809,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3810,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3811,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3812,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3813,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3814,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3815,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3816,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3817,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3818,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3819,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3820,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3821,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3822,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3823,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3824,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3825,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3826,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3827,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3828,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3829,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3830,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3831,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3832,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3833,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3834,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3835,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3836,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3837,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3838,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3839,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3840,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3841,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3842,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3843,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3844,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3845,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3846,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3847,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3848,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3849,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3850,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3851,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3852,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3853,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3854,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3855,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3856,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3857,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3858,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3859,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3860,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3861,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3862,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3863,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3864,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3865,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3866,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3867,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3868,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3869,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3870,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3871,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3872,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3873,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3874,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3875,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3876,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3877,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3878,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3879,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3880,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3881,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3882,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3883,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3884,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3885,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3886,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3887,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3888,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3889,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3890,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3891,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3892,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3893,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3894,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3895,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3896,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3897,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3898,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3899,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3900,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3901,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3902,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3903,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3904,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3905,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3906,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3907,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3908,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3909,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3910,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3911,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3912,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3913,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3914,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3915,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3916,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3917,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3918,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3919,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3920,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3921,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3922,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3923,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3924,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3925,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3926,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3927,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3928,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3929,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3930,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3931,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3932,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3933,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3934,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3935,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3936,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3937,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3938,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3939,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3940,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3941,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3942,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3943,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3944,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3945,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3946,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3947,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3948,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3949,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3950,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3951,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3952,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3953,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3954,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3955,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3956,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3957,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3958,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +3959,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +3960,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +3961,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +3962,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +3963,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +3964,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +3965,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +3966,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +3967,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +3968,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +3969,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +3970,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +3971,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +3972,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +3973,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +3974,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +3975,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +3976,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +3977,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +3978,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +3979,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +3980,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +3981,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +3982,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +3983,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +3984,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +3985,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +3986,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +3987,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +3988,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +3989,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +3990,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +3991,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +3992,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +3993,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +3994,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +3995,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +3996,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +3997,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +3998,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +3999,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4000,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4001,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4002,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4003,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4004,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4005,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4006,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4007,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4008,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4009,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4010,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4011,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4012,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4013,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4014,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4015,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4016,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4017,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4018,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4019,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4020,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4021,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4022,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4023,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4024,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4025,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4026,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4027,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4028,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4029,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4030,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4031,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4032,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4033,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4034,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4035,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4036,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4037,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4038,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4039,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4040,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4041,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4042,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4043,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4044,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4045,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4046,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4047,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4048,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4049,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4050,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4051,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4052,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4053,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4054,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4055,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4056,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4057,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4058,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4059,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4060,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4061,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4062,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4063,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4064,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4065,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4066,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4067,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4068,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4069,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4070,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4071,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4072,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4073,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4074,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4075,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4076,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4077,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4078,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4079,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4080,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4081,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4082,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4083,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4084,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4085,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4086,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4087,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4088,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4089,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4090,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4091,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4092,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4093,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4094,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4095,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4096,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4097,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4098,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4099,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4100,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4101,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4102,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4103,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4104,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4105,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4106,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4107,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4108,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4109,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4110,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4111,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4112,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4113,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4114,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4115,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4116,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4117,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4118,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4119,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4120,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4121,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4122,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4123,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4124,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4125,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4126,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4127,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4128,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4129,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4130,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4131,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4132,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4133,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4134,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4135,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4136,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4137,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4138,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4139,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4140,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4141,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4142,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4143,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4144,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4145,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4146,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4147,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4148,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4149,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4150,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4151,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4152,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4153,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4154,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4155,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4156,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4157,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4158,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4159,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4160,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4161,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4162,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4163,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4164,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4165,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4166,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4167,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4168,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4169,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4170,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4171,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4172,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4173,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4174,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4175,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4176,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4177,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4178,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4179,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4180,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4181,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4182,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4183,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4184,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4185,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4186,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4187,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4188,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4189,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4190,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4191,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4192,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4193,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4194,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4195,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4196,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4197,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4198,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4199,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4200,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4201,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4202,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4203,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4204,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4205,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4206,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4207,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4208,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4209,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4210,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4211,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4212,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4213,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4214,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4215,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4216,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4217,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4218,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4219,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4220,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4221,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4222,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4223,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4224,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4225,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4226,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4227,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4228,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4229,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4230,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4231,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4232,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4233,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4234,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4235,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4236,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4237,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4238,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4239,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4240,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4241,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4242,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4243,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4244,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4245,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4246,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4247,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4248,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4249,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4250,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4251,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4252,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4253,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4254,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4255,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4256,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4257,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4258,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4259,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4260,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4261,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4262,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4263,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4264,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4265,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4266,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4267,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4268,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4269,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4270,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4271,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4272,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4273,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4274,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4275,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4276,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4277,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4278,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4279,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4280,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4281,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4282,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4283,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4284,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4285,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4286,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4287,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4288,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4289,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4290,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4291,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4292,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4293,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4294,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4295,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4296,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4297,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4298,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4299,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4300,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4301,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4302,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4303,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4304,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4305,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4306,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4307,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4308,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4309,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4310,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4311,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4312,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4313,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4314,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4315,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4316,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4317,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4318,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4319,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4320,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4321,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4322,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4323,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4324,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4325,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4326,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4327,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4328,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4329,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4330,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4331,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4332,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4333,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4334,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4335,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4336,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4337,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4338,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4339,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4340,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4341,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4342,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4343,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4344,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4345,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4346,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4347,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4348,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4349,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4350,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4351,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4352,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4353,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4354,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4355,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4356,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4357,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4358,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4359,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4360,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4361,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4362,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4363,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4364,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4365,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4366,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4367,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4368,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4369,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4370,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4371,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4372,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4373,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4374,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4375,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4376,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4377,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4378,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4379,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4380,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4381,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4382,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4383,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4384,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4385,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4386,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4387,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4388,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4389,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4390,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4391,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4392,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4393,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4394,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4395,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4396,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4397,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4398,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4399,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4400,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4401,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4402,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4403,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4404,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4405,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4406,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4407,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4408,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4409,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4410,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4411,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4412,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4413,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4414,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4415,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4416,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4417,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4418,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4419,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4420,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4421,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4422,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4423,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4424,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4425,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4426,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4427,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4428,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4429,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4430,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4431,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4432,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4433,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4434,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4435,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4436,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4437,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4438,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4439,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4440,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4441,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4442,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4443,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4444,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4445,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4446,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4447,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4448,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4449,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4450,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4451,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4452,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4453,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4454,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4455,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4456,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4457,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4458,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4459,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4460,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4461,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4462,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4463,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4464,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4465,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4466,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4467,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4468,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4469,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4470,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4471,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4472,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4473,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4474,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4475,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4476,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4477,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4478,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4479,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4480,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4481,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4482,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4483,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4484,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4485,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4486,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4487,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4488,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4489,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4490,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4491,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4492,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4493,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4494,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4495,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4496,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4497,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4498,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4499,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4500,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4501,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4502,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4503,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4504,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4505,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4506,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4507,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4508,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4509,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4510,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4511,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4512,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4513,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4514,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4515,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4516,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4517,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4518,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4519,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4520,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4521,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4522,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4523,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4524,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4525,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4526,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4527,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4528,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4529,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4530,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4531,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4532,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4533,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4534,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4535,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4536,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4537,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4538,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4539,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4540,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4541,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4542,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4543,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4544,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4545,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4546,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4547,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4548,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4549,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4550,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4551,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4552,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4553,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4554,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4555,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4556,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4557,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4558,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4559,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4560,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4561,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4562,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4563,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4564,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4565,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4566,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4567,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4568,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4569,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4570,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4571,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4572,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4573,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4574,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4575,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4576,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4577,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4578,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4579,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4580,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4581,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4582,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4583,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4584,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4585,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4586,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4587,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4588,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4589,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4590,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4591,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4592,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4593,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4594,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4595,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4596,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4597,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4598,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4599,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4600,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4601,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4602,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4603,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4604,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4605,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4606,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4607,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4608,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4609,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4610,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4611,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4612,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4613,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4614,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4615,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4616,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4617,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4618,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4619,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4620,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4621,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4622,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4623,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4624,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4625,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4626,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4627,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4628,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4629,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4630,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4631,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4632,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4633,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4634,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4635,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4636,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4637,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4638,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4639,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4640,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4641,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4642,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4643,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4644,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4645,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4646,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4647,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4648,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4649,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4650,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4651,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4652,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4653,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4654,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4655,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4656,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4657,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4658,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4659,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4660,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4661,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4662,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4663,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4664,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4665,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4666,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4667,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4668,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4669,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4670,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4671,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4672,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4673,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4674,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4675,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4676,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4677,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4678,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4679,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4680,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4681,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4682,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4683,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4684,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4685,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4686,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4687,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4688,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4689,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4690,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4691,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4692,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4693,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4694,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4695,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4696,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4697,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4698,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4699,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4700,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4701,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4702,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4703,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4704,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4705,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4706,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4707,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4708,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4709,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4710,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4711,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4712,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4713,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4714,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4715,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4716,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4717,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4718,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4719,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4720,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4721,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4722,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4723,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4724,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4725,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4726,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4727,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4728,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4729,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4730,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4731,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4732,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4733,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4734,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4735,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4736,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4737,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4738,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4739,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4740,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4741,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4742,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4743,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4744,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4745,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4746,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4747,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4748,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4749,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4750,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4751,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4752,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4753,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4754,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4755,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4756,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4757,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4758,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4759,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4760,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4761,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4762,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4763,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4764,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4765,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4766,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4767,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4768,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4769,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4770,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4771,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4772,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4773,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4774,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4775,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4776,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4777,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4778,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4779,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4780,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4781,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4782,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4783,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4784,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4785,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4786,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4787,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4788,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4789,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4790,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4791,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4792,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4793,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4794,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4795,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4796,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4797,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4798,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4799,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4800,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4801,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4802,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4803,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4804,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4805,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4806,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4807,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4808,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4809,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4810,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4811,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4812,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4813,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4814,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4815,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4816,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4817,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4818,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4819,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4820,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4821,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4822,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4823,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4824,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4825,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4826,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4827,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4828,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4829,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4830,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4831,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4832,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4833,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4834,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4835,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4836,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4837,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4838,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4839,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4840,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4841,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4842,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4843,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4844,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4845,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4846,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4847,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4848,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4849,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4850,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4851,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4852,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4853,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4854,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4855,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4856,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4857,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4858,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4859,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4860,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4861,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4862,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4863,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4864,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4865,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4866,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4867,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4868,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4869,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4870,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4871,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4872,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4873,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4874,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4875,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4876,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4877,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4878,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4879,Fungal infection,"itching,skin_rash,nodal_skin_eruptions,dischromic _patches","itching , skin rash , nodal skin eruptions , dischromic patches" +4880,Allergy,"continuous_sneezing,shivering,chills,watering_from_eyes","continuous sneezing , shivering , chills , watering eyes" +4881,GERD,"stomach_pain,acidity,ulcers_on_tongue,vomiting,cough,chest_pain","stomach pain , acidity , ulcers tongue , vomiting , cough , chest pain" +4882,Chronic cholestasis,"itching,vomiting,yellowish_skin,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","itching , vomiting , yellowish skin , nausea , loss appetite , abdominal pain , yellowing eyes" +4883,Drug Reaction,"itching,skin_rash,stomach_pain,burning_micturition,spotting_ urination","itching , skin rash , stomach pain , burning micturition , spotting urination" +4884,Peptic ulcer diseae,"vomiting,indigestion,loss_of_appetite,abdominal_pain,passage_of_gases,internal_itching","vomiting , indigestion , loss appetite , abdominal pain , passage gases , internal itching" +4885,AIDS,"muscle_wasting,patches_in_throat,high_fever,extra_marital_contacts","muscle wasting , patches throat , high fever , extra marital contacts" +4886,Diabetes ,"fatigue,weight_loss,restlessness,lethargy,irregular_sugar_level,blurred_and_distorted_vision,obesity,excessive_hunger,increased_appetite,polyuria","fatigue , weight loss , restlessness , lethargy , irregular sugar level , blurred distorted vision , obesity , excessive hunger , increased appetite , polyuria" +4887,Gastroenteritis,"vomiting,sunken_eyes,dehydration,diarrhoea","vomiting , sunken eyes , dehydration , diarrhoea" +4888,Bronchial Asthma,"fatigue,cough,high_fever,breathlessness,family_history,mucoid_sputum","fatigue , cough , high fever , breathlessness , family history , mucoid sputum" +4889,Hypertension ,"headache,chest_pain,dizziness,loss_of_balance,lack_of_concentration","headache , chest pain , dizziness , loss balance , lack concentration" +4890,Migraine,"acidity,indigestion,headache,blurred_and_distorted_vision,excessive_hunger,stiff_neck,depression,irritability,visual_disturbances","acidity , indigestion , headache , blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbances" +4891,Cervical spondylosis,"back_pain,weakness_in_limbs,neck_pain,dizziness,loss_of_balance","back pain , weakness limbs , neck pain , dizziness , loss balance" +4892,Paralysis (brain hemorrhage),"vomiting,headache,weakness_of_one_body_side,altered_sensorium","vomiting , headache , weakness one body side , altered sensorium" +4893,Jaundice,"itching,vomiting,fatigue,weight_loss,high_fever,yellowish_skin,dark_urine,abdominal_pain","itching , vomiting , fatigue , weight loss , high fever , yellowish skin , dark urine , abdominal pain" +4894,Malaria,"chills,vomiting,high_fever,sweating,headache,nausea,diarrhoea,muscle_pain","chills , vomiting , high fever , sweating , headache , nausea , diarrhoea , muscle pain" +4895,Chicken pox,"itching,skin_rash,fatigue,lethargy,high_fever,headache,loss_of_appetite,mild_fever,swelled_lymph_nodes,malaise,red_spots_over_body","itching , skin rash , fatigue , lethargy , high fever , headache , loss appetite , mild fever , swelled lymph nodes , malaise , red spots body" +4896,Dengue,"skin_rash,chills,joint_pain,vomiting,fatigue,high_fever,headache,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,malaise,muscle_pain,red_spots_over_body","skin rash , chills , joint pain , vomiting , fatigue , high fever , headache , nausea , loss appetite , pain behind eyes , back pain , malaise , muscle pain , red spots body" +4897,Typhoid,"chills,vomiting,fatigue,high_fever,headache,nausea,constipation,abdominal_pain,diarrhoea,toxic_look_(typhos),belly_pain","chills , vomiting , fatigue , high fever , headache , nausea , constipation , abdominal pain , diarrhoea , toxic look typhos , belly pain" +4898,hepatitis A,"joint_pain,vomiting,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,diarrhoea,mild_fever,yellowing_of_eyes,muscle_pain","joint pain , vomiting , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , diarrhoea , mild fever , yellowing eyes , muscle pain" +4899,Hepatitis B,"itching,fatigue,lethargy,yellowish_skin,dark_urine,loss_of_appetite,abdominal_pain,yellow_urine,yellowing_of_eyes,malaise,receiving_blood_transfusion,receiving_unsterile_injections","itching , fatigue , lethargy , yellowish skin , dark urine , loss appetite , abdominal pain , yellow urine , yellowing eyes , malaise , receiving blood transfusion , receiving unsterile injections" +4900,Hepatitis C,"fatigue,yellowish_skin,nausea,loss_of_appetite,yellowing_of_eyes,family_history","fatigue , yellowish skin , nausea , loss appetite , yellowing eyes , family history" +4901,Hepatitis D,"joint_pain,vomiting,fatigue,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes","joint pain , vomiting , fatigue , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes" +4902,Hepatitis E,"joint_pain,vomiting,fatigue,high_fever,yellowish_skin,dark_urine,nausea,loss_of_appetite,abdominal_pain,yellowing_of_eyes,acute_liver_failure,coma,stomach_bleeding","joint pain , vomiting , fatigue , high fever , yellowish skin , dark urine , nausea , loss appetite , abdominal pain , yellowing eyes , acute liver failure , coma , stomach bleeding" +4903,Alcoholic hepatitis,"vomiting,yellowish_skin,abdominal_pain,swelling_of_stomach,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload.1","vomiting , yellowish skin , abdominal pain , swelling stomach , distention abdomen , history alcohol consumption , fluid overload 1" +4904,Tuberculosis,"chills,vomiting,fatigue,weight_loss,cough,high_fever,breathlessness,sweating,loss_of_appetite,mild_fever,yellowing_of_eyes,swelled_lymph_nodes,malaise,phlegm,chest_pain,blood_in_sputum","chills , vomiting , fatigue , weight loss , cough , high fever , breathlessness , sweating , loss appetite , mild fever , yellowing eyes , swelled lymph nodes , malaise , phlegm , chest pain , blood sputum" +4905,Common Cold,"continuous_sneezing,chills,fatigue,cough,high_fever,headache,swelled_lymph_nodes,malaise,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,loss_of_smell,muscle_pain","continuous sneezing , chills , fatigue , cough , high fever , headache , swelled lymph nodes , malaise , phlegm , throat irritation , redness eyes , sinus pressure , runny nose , congestion , chest pain , loss smell , muscle pain" +4906,Pneumonia,"chills,fatigue,cough,high_fever,breathlessness,sweating,malaise,phlegm,chest_pain,fast_heart_rate,rusty_sputum","chills , fatigue , cough , high fever , breathlessness , sweating , malaise , phlegm , chest pain , fast heart rate , rusty sputum" +4907,Dimorphic hemmorhoids(piles),"constipation,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus","constipation , pain bowel movements , pain anal region , bloody stool , irritation anus" +4908,Heart attack,"vomiting,breathlessness,sweating,chest_pain","vomiting , breathlessness , sweating , chest pain" +4909,Varicose veins,"fatigue,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,prominent_veins_on_calf","fatigue , cramps , bruising , obesity , swollen legs , swollen blood vessels , prominent veins calf" +4910,Hypothyroidism,"fatigue,weight_gain,cold_hands_and_feets,mood_swings,lethargy,dizziness,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,depression,irritability,abnormal_menstruation","fatigue , weight gain , cold hands feets , mood swings , lethargy , dizziness , puffy face eyes , enlarged thyroid , brittle nails , swollen extremeties , depression , irritability , abnormal menstruation" +4911,Hyperthyroidism,"fatigue,mood_swings,weight_loss,restlessness,sweating,diarrhoea,fast_heart_rate,excessive_hunger,muscle_weakness,irritability,abnormal_menstruation","fatigue , mood swings , weight loss , restlessness , sweating , diarrhoea , fast heart rate , excessive hunger , muscle weakness , irritability , abnormal menstruation" +4912,Hypoglycemia,"vomiting,fatigue,anxiety,sweating,headache,nausea,blurred_and_distorted_vision,excessive_hunger,drying_and_tingling_lips,slurred_speech,irritability,palpitations","vomiting , fatigue , anxiety , sweating , headache , nausea , blurred distorted vision , excessive hunger , drying tingling lips , slurred speech , irritability , palpitations" +4913,Osteoarthristis,"joint_pain,neck_pain,knee_pain,hip_joint_pain,swelling_joints,painful_walking","joint pain , neck pain , knee pain , hip joint pain , swelling joints , painful walking" +4914,Arthritis,"muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,painful_walking","muscle weakness , stiff neck , swelling joints , movement stiffness , painful walking" +4915,(vertigo) Paroymsal Positional Vertigo,"vomiting,headache,nausea,spinning_movements,loss_of_balance,unsteadiness","vomiting , headache , nausea , spinning movements , loss balance , unsteadiness" +4916,Acne,"skin_rash,pus_filled_pimples,blackheads,scurring","skin rash , pus filled pimples , blackheads , scurring" +4917,Urinary tract infection,"burning_micturition,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine","burning micturition , bladder discomfort , foul smell urine , continuous feel urine" +4918,Psoriasis,"skin_rash,joint_pain,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails","skin rash , joint pain , skin peeling , silver like dusting , small dents nails , inflammatory nails" +4919,Impetigo,"skin_rash,high_fever,blister,red_sore_around_nose,yellow_crust_ooze","skin rash , high fever , blister , red sore around nose , yellow crust ooze" +4920,Psoriasis,"I have been experiencing a skin rash on my arms, legs, and torso for the past few weeks. It is red, itchy, and covered in dry, scaly patches.","experiencing skin rash arms , legs , torso past weeks red , itchy , covered dry , scaly patches" +4921,Psoriasis,"My skin has been peeling, especially on my knees, elbows, and scalp. This peeling is often accompanied by a burning or stinging sensation.","skin peeling , especially knees , elbows , scalp peeling often accompanied burning stinging sensation" +4922,Psoriasis,"I have been experiencing joint pain in my fingers, wrists, and knees. The pain is often achy and throbbing, and it gets worse when I move my joints.","experiencing joint pain fingers , wrists , knees pain often achy throbbing , gets worse move joints" +4923,Psoriasis,"There is a silver like dusting on my skin, especially on my lower back and scalp. This dusting is made up of small scales that flake off easily when I scratch them.","silver like dusting skin , especially lower back scalp dusting made small scales flake easily scratch" +4924,Psoriasis,"My nails have small dents or pits in them, and they often feel inflammatory and tender to the touch. Even there are minor rashes on my arms.","nails small dents pits , often feel inflammatory tender touch even minor rashes arms" +4925,Psoriasis,The skin on my palms and soles is thickened and has deep cracks. These cracks are painful and bleed easily.,skin palms soles thickened deep cracks cracks painful bleed easily +4926,Psoriasis,"The skin around my mouth, nose, and eyes is red and inflamed. It is often itchy and uncomfortable. There is a noticeable inflammation in my nails.","skin around mouth , nose , eyes red inflamed often itchy uncomfortable noticeable inflammation nails" +4927,Psoriasis,My skin is very sensitive and reacts easily to changes in temperature or humidity. I often have to be careful about what products I use on my skin.,skin sensitive reacts easily changes temperature humidity often careful products use skin +4928,Psoriasis,"I have noticed a sudden peeling of skin at different parts of my body, mainly arms, legs and back. Also, I face severe joint pain and skin rashes.","noticed sudden peeling skin different parts body , mainly arms , legs back also , face severe joint pain skin rashes" +4929,Psoriasis,"The skin on my genitals is red and inflamed. It is often itchy, burning, and uncomfortable. There are rashes on different parts of the body too.","skin genitals red inflamed often itchy , burning , uncomfortable rashes different parts body" +4930,Psoriasis,"I have experienced fatigue and a general feeling of malaise. I often feel tired and have a lack of energy, even after a good night's sleep.","experienced fatigue general feeling malaise often feel tired lack energy , even good night sleep" +4931,Psoriasis,"The rash on my skin has spread to other parts of my body, including my chest and abdomen. It is itchy and uncomfortable, and it is often worse at night. I am also facing skin peeling.","rash skin spread parts body , including chest abdomen itchy uncomfortable , often worse night also facing skin peeling" +4932,Psoriasis,The rash on my skin is worse in the winter months when the air is dry. I find that I have to moisturize more frequently and use humidifiers to keep my skin hydrated.,rash skin worse winter months air dry find moisturize frequently use humidifiers keep skin hydrated +4933,Psoriasis,"I have experienced difficulty sleeping due to the itching and discomfort caused by the rash. There are small dents in my nails, which is really concerning.","experienced difficulty sleeping due itching discomfort caused rash small dents nails , really concerning" +4934,Psoriasis,"My skin is prone to infections due to dry, flaky patches. I am experiencing a strong pain in my joints. The skin on my knees and elbows is starting to peel off.","skin prone infections due dry , flaky patches experiencing strong pain joints skin knees elbows starting peel" +4935,Psoriasis,"I am starting to have rashes on my skin. The rash often bleeds when I scratch or rub it. Moreover, I have noticed small dents in my nails.","starting rashes skin rash often bleeds scratch rub moreover , noticed small dents nails" +4936,Psoriasis,"I have noticed that my skin has become more sensitive than it used to be. There is a silver like dusting on my skin, especially on my back and elbows.","noticed skin become sensitive used silver like dusting skin , especially back elbows" +4937,Psoriasis,"I am worried about the constant peeling of the skin on my palm, elbow and knee. I have developed rashes on my arms, which itch if I touch them. All of these are making my life quite discomforting and miserable.","worried constant peeling skin palm , elbow knee developed rashes arms , itch touch making life quite discomforting miserable" +4938,Psoriasis,"There is strange pain in my joints. Also, I have noticed strange peeling of skin in different parts of my body. I am afraid there is something wrong going on with my body.","strange pain joints also , noticed strange peeling skin different parts body afraid something wrong going body" +4939,Psoriasis,"My nails have small dents on them. Even my joints have started to pain severely. There is a silver like dusting on my skin, particularly in my back.","nails small dents even joints started pain severely silver like dusting skin , particularly back" +4940,Psoriasis,"The rashes on my skin are not healing. Moreover, I have noticed a sudden peeling of the skin, especially the skin on my elbows and knees. I am really worried about this.","rashes skin healing moreover , noticed sudden peeling skin , especially skin elbows knees really worried" +4941,Psoriasis,"For the past few weeks, I've had a skin rash on my arms, legs, and chest. It's red and irritating, with dry, scaly spots. I have a strange pain in my joints too.","past weeks , skin rash arms , legs , chest red irritating , dry , scaly spots strange pain joints" +4942,Psoriasis,"My skin is peeling, particularly on my knees, elbows, and scalp. This peeling is frequently accompanied by a stinging or burning feeling.","skin peeling , particularly knees , elbows , scalp peeling frequently accompanied stinging burning feeling" +4943,Psoriasis,"I'm having joint discomfort in my fingers, wrists, and knees. The pain is frequently aching and throbbing, and it worsens when I move my joints.","joint discomfort fingers , wrists , knees pain frequently aching throbbing , worsens move joints" +4944,Psoriasis,"My skin has a silvery film, particularly on my back, arms and scalp. This dusting is composed of tiny scales that easily peel off when scratched.","skin silvery film , particularly back , arms scalp dusting composed tiny scales easily peel scratched" +4945,Psoriasis,"I have red and inflammatory skin around my mouth, nose, and eyes. It is frequently irritating and unpleasant. Recently, it has got very painful.","red inflammatory skin around mouth , nose , eyes frequently irritating unpleasant recently , got painful" +4946,Psoriasis,My skin is extremely sensitive and quickly irritated by changes in temperature or humidity. My nails have developed dents on them. I am worried about this sudden change.,skin extremely sensitive quickly irritated changes temperature humidity nails developed dents worried sudden change +4947,Psoriasis,"I've seen a sudden peeling of skin on various regions of my body, mostly my arms, legs, and back. In addition, I have significant joint pain and skin rashes. The rash is spreading to different parts of my body.","seen sudden peeling skin various regions body , mostly arms , legs , back addition , significant joint pain skin rashes rash spreading different parts body" +4948,Psoriasis,"My genital skin is red and irritated. It is frequently irritating, burning, and unpleasant. There are also rashes in various places of the body. Also, I have a strange pain in my joints.","genital skin red irritated frequently irritating , burning , unpleasant also rashes various places body also , strange pain joints" +4949,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. There is a noticeable inflammation in my nails.","trouble sleeping itching pain produced rash nails little dents , really alarming noticeable inflammation nails" +4950,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in excruciating agony. The skin on my knees and elbows is beginning to flake.","dry , flaky areas skin , prone infections joints excruciating agony skin knees elbows beginning flake" +4951,Psoriasis,"My skin is breaking out in rashes. When I scratch or rub the rash, it frequently bleeds. In addition, I've observed little dents in my nails. There is a noticeable inflammation in my nails.","skin breaking rashes scratch rub rash , frequently bleeds addition , observed little dents nails noticeable inflammation nails" +4952,Psoriasis,"I've observed that my skin is more sensitive now than it used to be. My skin has a silvery film, especially on my back and elbows.","observed skin sensitive used skin silvery film , especially back elbows" +4953,Psoriasis,"My palms and soles have grown and developed severe fissures. These cracks are unpleasant and frequently bleed. Also, the skin is starting to peel off.","palms soles grown developed severe fissures cracks unpleasant frequently bleed also , skin starting peel" +4954,Psoriasis,"My nails are starting to have small pits on them. I am worried and don't know what is causing it. Also, my joints pain and there are rashes on my arms and back.","nails starting small pits worried know causing also , joints pain rashes arms back" +4955,Psoriasis,"There is a silver like dusting on my skin. Moreover, the skin on my arms and back are starting to peel off. This is strange and really concerning me.","silver like dusting skin moreover , skin arms back starting peel strange really concerning" +4956,Psoriasis,"My skin rash has extended to other areas of my body, including my chest and belly. It is irritating and unpleasant, and it is frequently worst at night. I'm also experiencing skin flaking.","skin rash extended areas body , including chest belly irritating unpleasant , frequently worst night also experiencing skin flaking" +4957,Psoriasis,"My skin rash gets worse in the winter when the air is dry. To keep my skin moisturized, I have to moisturize more regularly and use humidifiers. I am also facing joint pain.","skin rash gets worse winter air dry keep skin moisturized , moisturize regularly use humidifiers also facing joint pain" +4958,Psoriasis,I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents. I am also experiencing skin peeling in different parts of my body.,trouble sleeping itching pain produced rash nails little dents also experiencing skin peeling different parts body +4959,Psoriasis,"My skin is peeling in places, especially on my knees, elbows, and arms. This peeling is often accompanied by a painful or burning sensation. I am also developing small dents on my nails, which is really concerning.","skin peeling places , especially knees , elbows , arms peeling often accompanied painful burning sensation also developing small dents nails , really concerning" +4960,Psoriasis,"My skin has a silvery layer over it, especially on my back and arms. This dusting is made up of small scales that peel off readily when rubbed. Also, there are rashes all over my body.","skin silvery layer , especially back arms dusting made small scales peel readily rubbed also , rashes body" +4961,Psoriasis,"My arms, face and back are all red and irritated. It is frequently irritating and unpleasant. My nails have a strange inflammation and have developed small dents. I have never seen anything like this.","arms , face back red irritated frequently irritating unpleasant nails strange inflammation developed small dents never seen anything like" +4962,Psoriasis,"I've had trouble sleeping because of the itching and pain produced by the rash. My nails have little dents, which is really alarming. Moreover, my joints pain everyday and I have no idea what is causing it.","trouble sleeping itching pain produced rash nails little dents , really alarming moreover , joints pain everyday idea causing" +4963,Psoriasis,My fingers and soles have pretty thick skin that is cracked severely. These fractures hurt and bleed frequently. The fractures are itchy and covered with scales.,fingers soles pretty thick skin cracked severely fractures hurt bleed frequently fractures itchy covered scales +4964,Psoriasis,"My skin has changed from being less sensitive to being more sensitive. My skin has a silvery coating, especially on my back, elbows and knees.","skin changed less sensitive sensitive skin silvery coating , especially back , elbows knees" +4965,Psoriasis,"My nails are slightly dented. Even my joints are now experiencing excruciating discomfort. My skin has a silver-like powder, especially on my back and elbows. ","nails slightly dented even joints experiencing excruciating discomfort skin silver like powder , especially back elbows" +4966,Psoriasis,"I've had trouble falling asleep because of the rash's pain and itching. The skin on my fingers are starting to peel off. My nails have a few tiny cracks, which is really worrying. ","trouble falling asleep rash pain itching skin fingers starting peel nails tiny cracks , really worrying" +4967,Psoriasis,"My joints are experiencing an unusual discomfort. Additionally, I've experienced weird skin peeling in various places on my body. I'm concerned that something is wrong with my body. ","joints experiencing unusual discomfort additionally , experienced weird skin peeling various places body concerned something wrong body" +4968,Psoriasis,"I am starting to have rashes on my arms and neck. The rash often bleeds and hurts when I scratch it. I have also developed small dents in my nails, which is very strange.","starting rashes arms neck rash often bleeds hurts scratch also developed small dents nails , strange" +4969,Psoriasis,"Because of dry, flaky areas on my skin, I am prone to infections. My joints are in extreme pain . My knees and elbows' skin are starting to peel off.","dry , flaky areas skin , prone infections joints extreme pain knees elbows skin starting peel" +4970,Varicose Veins,"I have a rash on my legs that is causing a lot of discomforts. It seems there is a cramp and I can see prominent veins on the calf. Also, I have been feeling very tired and fatigued in the past couple of days.","rash legs causing lot discomforts seems cramp see prominent veins calf also , feeling tired fatigued past couple days" +4971,Varicose Veins,"My calves have been cramping up when I walk or stand for long periods of time. There are bruise marks on my calves, which is making me worried. I feel tired very soon.","calves cramping walk stand long periods time bruise marks calves , making worried feel tired soon" +4972,Varicose Veins,"There is bruising on my legs that I cannot explain. I can see strange blood vessels below the skin. Also, I am slightly obese and I am really worried.","bruising legs explain see strange blood vessels skin also , slightly obese really worried" +4973,Varicose Veins,I am overweight and have noticed that my legs are swollen and the blood vessels are visible. My legs have swollen and I can see a stream of swollen veins on my calves.,overweight noticed legs swollen blood vessels visible legs swollen see stream swollen veins calves +4974,Varicose Veins,"The veins on my calves have become very prominent and causing discomfort. I can't stand for long periods of time, as it causes pain in my legs, similar to cramps.","veins calves become prominent causing discomfort stand long periods time , causes pain legs , similar cramps" +4975,Varicose Veins,The skin around the veins on my legs is red and inflamed. I believe I can see some of the swollen blood vessels. I am really worried about it.,skin around veins legs red inflamed believe see swollen blood vessels really worried +4976,Varicose Veins,Standing or walking for long periods of time causes a lot of pain in my legs. I get cramps upon doing physical activities. There are bruise marks on my legs too.,standing walking long periods time causes lot pain legs get cramps upon physical activities bruise marks legs +4977,Varicose Veins,The cramps in my calves are making it difficult for me to walk. I feel fatigued after working for some time. I believe obesity is the reason behind this.,cramps calves making difficult walk feel fatigued working time believe obesity reason behind +4978,Varicose Veins,"The swelling in my legs has gotten worse over the past few weeks. Now, a large number of veins are noticeable on my calves, which is making me worried.","swelling legs gotten worse past weeks , large number veins noticeable calves , making worried" +4979,Varicose Veins,The veins on my legs are very noticeable and cause me discomfort. It seems like there is a major bruise and I get cramps when I run.,veins legs noticeable cause discomfort seems like major bruise get cramps run +4980,Varicose Veins,The skin on my calves has become inflamed and red. My legs hurt if I try to run or do any physical activities.,skin calves become inflamed red legs hurt try run physical activities +4981,Varicose Veins,"Recently, the pain in my calves has been constant and becomes worse when I stand or walk for long periods of time. My legs have started to swell and also some blood vessels are quite noticeable.","recently , pain calves constant becomes worse stand walk long periods time legs started swell also blood vessels quite noticeable" +4982,Varicose Veins,The veins in my legs are causing discomfort and difficulty sleeping at night. I have no idea why it is happening. I get cramps when I sprint.,veins legs causing discomfort difficulty sleeping night idea happening get cramps sprint +4983,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes. I can't sprint or stand for long periods of time. I can see some swollen blood vessels.,swelling legs causing difficulty fitting shoes sprint stand long periods time see swollen blood vessels +4984,Varicose Veins,I have noticed cramps in my calves are becoming more frequent and intense. It is causing me a lot of discomforts. I am also overweight and my legs have started to swell.,noticed cramps calves becoming frequent intense causing lot discomforts also overweight legs started swell +4985,Varicose Veins,The veins on my legs cause a lot of discomforts when I sit for long periods of time.,veins legs cause lot discomforts sit long periods time +4986,Varicose Veins,The rash on my legs is spreading and becoming more severe. It has become very difficult for me to run.,rash legs spreading becoming severe become difficult run +4987,Varicose Veins,My legs are causing a lot of discomforts when I exercise. I get frequent cramps and the blood vessels have become quite noticeable.,legs causing lot discomforts exercise get frequent cramps blood vessels become quite noticeable +4988,Varicose Veins,The prominent blood vessels on my calves are causing self-consciousness and embarrassment. I believe the problem is because of my overweight.,prominent blood vessels calves causing self consciousness embarrassment believe problem overweight +4989,Varicose Veins,The skin around the veins on my legs is dry and flaky. It seems there is a major bruise and my legs have started to swell.,skin around veins legs dry flaky seems major bruise legs started swell +4990,Varicose Veins,I have been experiencing a rash on my legs that is causing a lot of irritation and discomfort. It is red and inflamed and appears to be spreading.,experiencing rash legs causing lot irritation discomfort red inflamed appears spreading +4991,Varicose Veins,"Recently, my calves have been cramping up frequently, especially when I am walking or standing for long periods of time. Also, the veins are very noticeable.","recently , calves cramping frequently , especially walking standing long periods time also , veins noticeable" +4992,Varicose Veins,I have noticed that there are bruises on my legs that I cannot explain. They are not painful but are concerning to me.,noticed bruises legs explain painful concerning +4993,Varicose Veins,"As I am overweight, I have noticed that my legs are swollen and the blood vessels are more visible than usual. The swelling seems to be getting worse over time.","overweight , noticed legs swollen blood vessels visible usual swelling seems getting worse time" +4994,Varicose Veins,The veins on my calves are very prominent and are causing me a lot of discomforts. They are swollen and protrude from my skin.,veins calves prominent causing lot discomforts swollen protrude skin +4995,Varicose Veins,"The skin around the veins on my legs is red, inflamed, and itchy. It is causing a lot of discomforts and I am starting to get regular cramps.","skin around veins legs red , inflamed , itchy causing lot discomforts starting get regular cramps" +4996,Varicose Veins,Standing or walking for long periods of time has been causing a lot of pain in my legs. It feels like a cramp and becomes worse the longer I am on my feet.,standing walking long periods time causing lot pain legs feels like cramp becomes worse longer feet +4997,Varicose Veins,The cramps in my calves have been making it difficult for me to walk and do my daily activities. They come on suddenly and last for several minutes.,cramps calves making difficult walk daily activities come suddenly last several minutes +4998,Varicose Veins,The swelling in my legs has gotten worse over the past few weeks and is causing me difficulty fitting into my shoes. It is also causing discomfort when I sit for long periods of time.,swelling legs gotten worse past weeks causing difficulty fitting shoes also causing discomfort sit long periods time +4999,Varicose Veins,"The veins on my legs are very noticeable and are causing me a lot of discomforts. They are swollen and protrude from my skin, making them visible through my clothing.","veins legs noticeable causing lot discomforts swollen protrude skin , making visible clothing" +5000,Varicose Veins,"The skin on my calves is itchy and inflamed, causing a lot of discomfort and difficulty sleeping at night. The blood vessels have started to protrude out, which is concerning.","skin calves itchy inflamed , causing lot discomfort difficulty sleeping night blood vessels started protrude , concerning" +5001,Varicose Veins,The pain in my calves is constant and becomes worse when I stand or walk for long periods of time. I am getting constant cramps and can't run for longer periods of time.,pain calves constant becomes worse stand walk long periods time getting constant cramps run longer periods time +5002,Varicose Veins,"The veins in my legs are causing discomfort and difficulty sleeping at night. They are swollen and protruding from my skin, making them noticeable and painful.","veins legs causing discomfort difficulty sleeping night swollen protruding skin , making noticeable painful" +5003,Varicose Veins,The swelling in my legs is causing me to have difficulty fitting into my shoes and is causing discomfort when I sit for long periods of time.,swelling legs causing difficulty fitting shoes causing discomfort sit long periods time +5004,Varicose Veins,"The cramps in my calves are becoming more frequent and intense, making it difficult for me to walk and do my daily activities.","cramps calves becoming frequent intense , making difficult walk daily activities" +5005,Varicose Veins,"The veins on my legs are causing a lot of discomforts when I sit for long periods of time. They are swollen and protruding from my skin, making them painful and noticeable.","veins legs causing lot discomforts sit long periods time swollen protruding skin , making painful noticeable" +5006,Varicose Veins,"The rash on my legs is spreading and becoming more severe. It is red, inflamed, and itchy, causing a lot of discomfort and difficulty sleeping at night.","rash legs spreading becoming severe red , inflamed , itchy , causing lot discomfort difficulty sleeping night" +5007,Varicose Veins,"My legs have been causing a lot of discomforts when I exercise. They feel heavy and swollen, and the veins are prominent and painful. I feel fatigued all the time.","legs causing lot discomforts exercise feel heavy swollen , veins prominent painful feel fatigued time" +5008,Varicose Veins,"The prominent veins on my calves are causing self-consciousness and embarrassment. They are swollen and protrude from my skin, making them very noticeable.","prominent veins calves causing self consciousness embarrassment swollen protrude skin , making noticeable" +5009,Varicose Veins,"The skin around the veins on my legs is dry and flaky, causing discomfort and irritation. I am also starting to get frequent cramps.","skin around veins legs dry flaky , causing discomfort irritation also starting get frequent cramps" +5010,Varicose Veins,"I have a rash on my legs that is giving me a lot of pain. There appears to be a cramp, and I can see visible veins on the calf.","rash legs giving lot pain appears cramp , see visible veins calf" +5011,Varicose Veins,My veins of legs have become more visible and swollen than normal. They are visible through my skin and it hurts when I move.,veins legs become visible swollen normal visible skin hurts move +5012,Varicose Veins,"Walking is tough for me because of cramps in my calves. Obesity, I believe, is the cause of this. After a while of working, I'm exhausted.","walking tough cramps calves obesity , believe , cause working , exhausted" +5013,Varicose Veins,The blood vessels on my legs are quite visible and give me a lot of pain. They're large and protrude from my skin. It is unusual and I am worried about it.,blood vessels legs quite visible give lot pain large protrude skin unusual worried +5014,Varicose Veins,"I have noticed that the blood vessels in my legs are getting more noticeable than usual. It is a little concerning to me. Moreover, I am experiencing cramps every day.","noticed blood vessels legs getting noticeable usual little concerning moreover , experiencing cramps every day" +5015,Varicose Veins,My legs' swelling has become worse over the last couple of days. I can see the blood vessels protruding out of the skin. This is quite unusual.,legs swelling become worse last couple days see blood vessels protruding skin quite unusual +5016,Varicose Veins,Long durations of standing or walking have caused severe discomfort in my legs. It's a burning ache that gets worse the longer I'm on my feet.,long durations standing walking caused severe discomfort legs burning ache gets worse longer feet +5017,Varicose Veins,"My legs' skin around the veins is unusual. There appears to be a large bruise. Nowadays, I get frequent cramps when I sprint or run.","legs skin around veins unusual appears large bruise nowadays , get frequent cramps sprint run" +5018,Varicose Veins,"I am experiencing too many cramps in the last couple of days. I think something is not right. I believe there is a small bruise on my calves, but I am not sure about it.","experiencing many cramps last couple days think something right believe small bruise calves , sure" +5019,Varicose Veins,"The veins in my calves are protruding out quite unusually. I am worried about it. Also, I am overweight and I believe this is the reason behind all of this.","veins calves protruding quite unusually worried also , overweight believe reason behind" +5020,Typhoid,"I have constipation and belly pain, and it's been really uncomfortable. The belly pain has been getting worse and is starting to affect my daily life. Moreover, I get chills every night, followed by a mild fever.","constipation belly pain , really uncomfortable belly pain getting worse starting affect daily life moreover , get chills every night , followed mild fever" +5021,Typhoid,"I've also had some diarrhea, which has been really unpleasant. It's been coming and going, and it's been accompanied by abdominal cramps and bloating.","also diarrhea , really unpleasant coming going , accompanied abdominal cramps bloating" +5022,Typhoid,"I have been experiencing chills and fever, along with severe abdominal pain. I've been feeling really miserable overall, and I just can't seem to shake these symptoms.","experiencing chills fever , along severe abdominal pain feeling really miserable overall , seem shake symptoms" +5023,Typhoid,I've been having a lot of trouble keeping hydrated because of the vomiting and diarrhea. There is a mild fever along with constipation and headache.,lot trouble keeping hydrated vomiting diarrhea mild fever along constipation headache +5024,Typhoid,"I've lost a lot of weight in the past week because I haven't been able to eat much due to nausea and vomiting. This is followed by mild fever, headache and belly pain. I'm really concerned about my health.","lost lot weight past week able eat much due nausea vomiting followed mild fever , headache belly pain really concerned health" +5025,Typhoid,"The fatigue has been really uncomfortable, and I've had a lot of difficulties doing my usual activities. I've also been feeling really depressed and irritable. There is mild pain in the abdominal part too.","fatigue really uncomfortable , lot difficulties usual activities also feeling really depressed irritable mild pain abdominal part" +5026,Typhoid,"I've had a persistent headache for the past week, and it's been getting worse. It's been accompanied by belly aches, constipation and diarrhea.","persistent headache past week , getting worse accompanied belly aches , constipation diarrhea" +5027,Typhoid,"I've been experiencing high fever, especially at night. It's been really uncomfortable. There is a mild headache along with constipation and diarrhea.","experiencing high fever , especially night really uncomfortable mild headache along constipation diarrhea" +5028,Typhoid,"I've been having a lot of difficulty breathing, and I feel like I'm constantly nauseous. I also have mild belly pain. It's been terrifying at times.","lot difficulty breathing , feel like constantly nauseous also mild belly pain terrifying times" +5029,Typhoid,"Diarrhea has been really watery and foul-smelling, and it's been accompanied by abdominal pain. I feel like vomiting most of the time.","diarrhea really watery foul smelling , accompanied abdominal pain feel like vomiting time" +5030,Typhoid,"I've been having a lot of trouble sleeping because of the high fever, headache and chills. I wake up every day having a terrible pain in my belly area.","lot trouble sleeping high fever , headache chills wake every day terrible pain belly area" +5031,Typhoid,"I've also been experiencing some diarrhea and constipation, which has been really worrying. It feels like a sharp, stabbing pain in my belly area. I feel tired all the time.","also experiencing diarrhea constipation , really worrying feels like sharp , stabbing pain belly area feel tired time" +5032,Typhoid,"I have had some constipation and belly pain, which has been really uncomfortable. The pain has been getting worse and it's really affecting my daily life.","constipation belly pain , really uncomfortable pain getting worse really affecting daily life" +5033,Typhoid,"I am experiencing a lot of belly pain and constipation, which has been really annoying. Sometimes, I feel a strong urge to vomit, and because of all of these, I am feeling very weak.","experiencing lot belly pain constipation , really annoying sometimes , feel strong urge vomit , , feeling weak" +5034,Typhoid,"The abdominal pain has been coming and going, and it's been really unpleasant. It's been accompanied by constipation and vomiting. I feel really concerned about my health.","abdominal pain coming going , really unpleasant accompanied constipation vomiting feel really concerned health" +5035,Typhoid,"I have been experiencing a lot of bloating and constipation, and it's been really uncomfortable. It feels like there's a lot of pressure and pain in my belly area.","experiencing lot bloating constipation , really uncomfortable feels like lot pressure pain belly area" +5036,Typhoid,"I am experiencing extreme belly pain and constipation. Every night, I have a severe fever along with chills and headaches. The last couple of days has been really uncomfortable.","experiencing extreme belly pain constipation every night , severe fever along chills headaches last couple days really uncomfortable" +5037,Typhoid,"I've been feeling exhausted and weak, and I can't seem to get rid of it. Because of the vomiting and nausea, I've entirely lost my appetite. My belly pains which are causing me concern.","feeling exhausted weak , seem get rid vomiting nausea , entirely lost appetite belly pains causing concern" +5038,Typhoid,"I am experiencing constipation and stomach ache, which has been really difficult. The discomfort has gotten worse, and it is seriously interfering with my everyday life.","experiencing constipation stomach ache , really difficult discomfort gotten worse , seriously interfering everyday life" +5039,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. I have a high fever, as well as constipation and headache.","vomiting diarrhea , lot difficulties staying hydrated high fever , well constipation headache" +5040,Typhoid,The abdominal pain has been frequent and really painful. Constipation and vomiting have also occurred. I'm quite worried about my health.,abdominal pain frequent really painful constipation vomiting also occurred quite worried health +5041,Typhoid,"I'm having severe stomach pain and constipation. Every night, I get a headache and chills. The last few days have been really painful.","severe stomach pain constipation every night , get headache chills last days really painful" +5042,Typhoid,There is a distinct pain in my abdominal part. I am not sure what it is. I am also going through constant vomiting and feel nauseous.,distinct pain abdominal part sure also going constant vomiting feel nauseous +5043,Typhoid,"The diarrhea has been quite fluid and smelly, and it has been accompanied by severe abdominal pain and headache. Most of the time, I feel like vomiting.","diarrhea quite fluid smelly , accompanied severe abdominal pain headache time , feel like vomiting" +5044,Typhoid,"I have had a fever for the last couple of days. Now, I am starting to experience a severe pain in my stomach area and suffering from constipation.","fever last couple days , starting experience severe pain stomach area suffering constipation" +5045,Typhoid,"I am experiencing a lot of nausea and vomiting, and it's been quite difficult for me to eat anything. I've entirely lost my appetite, and as a result, I have become quite weak.","experiencing lot nausea vomiting , quite difficult eat anything entirely lost appetite , result , become quite weak" +5046,Typhoid,"I am having a lot of trouble sleeping because of the high fever and the headache. Moreover, I have constant belly pain, because of which I can't go to work.","lot trouble sleeping high fever headache moreover , constant belly pain , go work" +5047,Typhoid,"I have been feeling really fatigued and weak, and I can't seem to get rid of it. I have a mild fever and a strange pain in my abdominal area. I can't understand what is happening.","feeling really fatigued weak , seem get rid mild fever strange pain abdominal area understand happening" +5048,Typhoid,"I've been suffering from constipation and stomach discomfort, which has been really uncomfortable. Last night, I had a mild fever too.","suffering constipation stomach discomfort , really uncomfortable last night , mild fever" +5049,Typhoid,"I've also been suffering from diarrhea, which has been really uncomfortable. It comes and goes, and it's accompanied by stomach aches and vomiting.","also suffering diarrhea , really uncomfortable comes goes , accompanied stomach aches vomiting" +5050,Typhoid,"I've been experiencing chills, fever, and extreme stomach discomfort. I've been generally unhappy, and I can't seem to get rid of these symptoms.","experiencing chills , fever , extreme stomach discomfort generally unhappy , seem get rid symptoms" +5051,Typhoid,"Because of the vomiting and diarrhea, I've been having a lot of difficulties staying hydrated. There is a mild fever, too, as well as stomach pain.","vomiting diarrhea , lot difficulties staying hydrated mild fever , , well stomach pain" +5052,Typhoid,"I have developed diarrhea. It is accompanied by severe pain in my belly area. I don't feel like eating anything, and most of the time, I have a mild headache.","developed diarrhea accompanied severe pain belly area feel like eating anything , time , mild headache" +5053,Typhoid,"I've had a lot of bloating and constipation, which has been really painful. There is a lot of pressure and pain in my stomach area. I get a high fever and chills every night.","lot bloating constipation , really painful lot pressure pain stomach area get high fever chills every night" +5054,Typhoid,"I've had a persistent stomach pain for the past week, and it is not healing even with medication. I feel like vomiting and can't eat anything, and because of which I have become extremely weak.","persistent stomach pain past week , healing even medication feel like vomiting eat anything , become extremely weak" +5055,Typhoid,I am having severe stomach discomfort and diarrhoea. I have a high fever along with a headache. The previous several days have been really unpleasant.,severe stomach discomfort diarrhoea high fever along headache previous several days really unpleasant +5056,Typhoid,"I am having a terrible pain in my abdominal part, and I've been feeling really nauseated. I'm also experiencing a mild fever. I am really worried.","terrible pain abdominal part , feeling really nauseated also experiencing mild fever really worried" +5057,Typhoid,"I am experiencing constipation and stomach ache. The discomfort has gotten worse, and it is seriously interfering with my everyday life. I feel like I have lost my appetite to eat anything.","experiencing constipation stomach ache discomfort gotten worse , seriously interfering everyday life feel like lost appetite eat anything" +5058,Typhoid,"Most of the time I feel fatigued. I don't want to eat anything. I get a high fever and chills every night. Moreover, I have been vomiting since yesterday.","time feel fatigued want eat anything get high fever chills every night moreover , vomiting since yesterday" +5059,Typhoid,"I have lost my appetite and have noticed a significant weight loss. I have abdominal pain, especially in the area of my stomach and intestines. I am concerned about my health.","lost appetite noticed significant weight loss abdominal pain , especially area stomach intestines concerned health" +5060,Typhoid,The stomach discomfort has been severe and frequent. Vomiting and constipation have also happened. I'm concerned about my health.,stomach discomfort severe frequent vomiting constipation also happened concerned health +5061,Typhoid,"I have been experiencing diarrhea and have had loose, watery stools several times a day. I have lost my appetite and feel nauseated all the time. I am starting to get a mild fever too.","experiencing diarrhea loose , watery stools several times day lost appetite feel nauseated time starting get mild fever" +5062,Typhoid,"I am feeling quite weak. I'm having a lot of stomach discomfort and constipation, which is really bothering me. I have a strong urge to vomit at times, and as a result, I can't eat anything.","feeling quite weak lot stomach discomfort constipation , really bothering strong urge vomit times , result , eat anything" +5063,Typhoid,"There is strange pain in my stomach area. I don't know what the reason behind this is. Moreover, I am starting to get a mild fever along with chills and headaches.","strange pain stomach area know reason behind moreover , starting get mild fever along chills headaches" +5064,Typhoid,"I've had a high fever, particularly at night. It's been quite unpleasant. There is a little headache, as well as constipation and diarrhea. I don't feel like eating anything.","high fever , particularly night quite unpleasant little headache , well constipation diarrhea feel like eating anything" +5065,Typhoid,"I've been having a lot of trouble staying hydrated because of the vomiting and diarrhea. I have a high fever, constipation, and a headache. I am also starting to get a strange pain in my stomach area and I can't do anything physical.","lot trouble staying hydrated vomiting diarrhea high fever , constipation , headache also starting get strange pain stomach area anything physical" +5066,Typhoid,"I have been getting a headache for the past week that has been growing worse. It has been accompanied by stomach pains, constipation, and diarrhea. I don't know what is happening and I am really worried about it.","getting headache past week growing worse accompanied stomach pains , constipation , diarrhea know happening really worried" +5067,Typhoid,"I've lost a lot of weight in the last week because I couldn't eat much due to nausea and vomiting. This is followed by a high fever, headache, and stomach pain.","lost lot weight last week eat much due nausea vomiting followed high fever , headache , stomach pain" +5068,Typhoid,"I am having some diarrhea and constipation, which has been quite concerning. In my stomach, there is a severe, painful ache. I'm constantly exhausted and don't feel like eating anything.","diarrhea constipation , quite concerning stomach , severe , painful ache constantly exhausted feel like eating anything" +5069,Typhoid,"I've been having diarrhoea and loose, watery stools many times a day. I've lost my appetite and am always sick. I'm also developing a mild fever. Also, my abdominal part pains a lot. I don't know what the reason behind all of these is.","diarrhoea loose , watery stools many times day lost appetite always sick also developing mild fever also , abdominal part pains lot know reason behind" +5070,Chicken pox,"I've been experiencing intense itching all over my skin, and it's driving me crazy. I also have a rash that's red and inflamed.","experiencing intense itching skin , driving crazy also rash red inflamed" +5071,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself.","feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate" +5072,Chicken pox,"I've had a high fever for the past few days. I don't know what's causing it. Also, I noticed rashes on my skin and it's hard for me to resist scratching.","high fever past days know causing also , noticed rashes skin hard resist scratching" +5073,Chicken pox,I've lost my appetite and can't seem to eat anything. I'm worried about my health.,lost appetite seem eat anything worried health +5074,Chicken pox,There are small red spots all over my body that I can't explain. It's worrying me. I feel extremely tired and experience a mild fever every night.,small red spots body explain worrying feel extremely tired experience mild fever every night +5075,Chicken pox,"My lymph nodes are swollen, causing discomfort in my neck and armpits. I don't know what's causing it.","lymph nodes swollen , causing discomfort neck armpits know causing" +5076,Chicken pox,"I'm feeling really sick and uncomfortable like something is wrong inside. I don't know what it could be. I noticed small red spots on my arms, which itches if I touch them.","feeling really sick uncomfortable like something wrong inside know could noticed small red spots arms , itches touch" +5077,Chicken pox,The itching is making it hard for me to sleep at night. I can't get any rest. I have also lost my appetite and feel lethargic.,itching making hard sleep night get rest also lost appetite feel lethargic +5078,Chicken pox,"I'm worried about this rash on my skin. It's spreading rapidly and causing a lot of discomforts. I can hardly sleep at night because of the itching,","worried rash skin spreading rapidly causing lot discomforts hardly sleep night itching ," +5079,Chicken pox,I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong.,energy lost appetite feeling really sick know wrong +5080,Chicken pox,"I have a skin rash that's red and inflamed, and it's spreading all over my body. I've been experiencing intense itching, especially on my arms and legs.","skin rash red inflamed , spreading body experiencing intense itching , especially arms legs" +5081,Chicken pox,"I've had a high fever for the past few days, and it's starting to worry me. I don't know what's causing it. Also, I have red spots all over my arms and legs, some of which are swollen.","high fever past days , starting worry know causing also , red spots arms legs , swollen" +5082,Chicken pox,"I have a skin rash that's red and swollen, and it's spreading all over my body. I have a mild fever and it is causing me a lot of discomforts.","skin rash red swollen , spreading body mild fever causing lot discomforts" +5083,Chicken pox,"I'm feeling fatigued and have no energy. I can barely keep my eyes open during the day, and I've been feeling lethargic and unable to motivate myself.","feeling fatigued energy barely keep eyes open day , feeling lethargic unable motivate" +5084,Chicken pox,There are small red spots all over my body that I can't explain. The bumps are itchy and uncomfortable and seem to spread rapidly. It's worrying me.,small red spots body explain bumps itchy uncomfortable seem spread rapidly worrying +5085,Chicken pox,The itching is making it hard for me to sleep at night. I can't seem to get any rest because the rash is so itchy and uncomfortable. I'm feeling really tired and exhausted.,itching making hard sleep night seem get rest rash itchy uncomfortable feeling really tired exhausted +5086,Chicken pox,I have no energy and have lost my appetite. I have a high fever and severe headache and don't know what's wrong.,energy lost appetite high fever severe headache know wrong +5087,Chicken pox,The high fever and swollen lymph nodes are causing me much discomfort. I have a headache and feel weak and fatigued. It's hard for me to concentrate because of the fever.,high fever swollen lymph nodes causing much discomfort headache feel weak fatigued hard concentrate fever +5088,Chicken pox,"The rash on my skin is causing a lot of discomforts. It's red and inflamed, spreading all over my body. The rash is accompanied by intense itching, especially on my arms and legs.","rash skin causing lot discomforts red inflamed , spreading body rash accompanied intense itching , especially arms legs" +5089,Chicken pox,"There are red spots all over my body that I can't explain. The spots are itchy and starting to swell, and they are spreading rapidly.","red spots body explain spots itchy starting swell , spreading rapidly" +5090,Chicken pox,I have small lymph nodes on my arms and face. The itching is making my day very uncomfortable.,small lymph nodes arms face itching making day uncomfortable +5091,Chicken pox,"I have no energy and have lost my appetite. I'm feeling really sick and don't know what's wrong. Also, there are small red spots starting to show on my skin.","energy lost appetite feeling really sick know wrong also , small red spots starting show skin" +5092,Chicken pox,"I've had a mild fever for the past few days, and it's starting to worry me. The fever has been accompanied by a severe headache. I feel weak and lethargic.","mild fever past days , starting worry fever accompanied severe headache feel weak lethargic" +5093,Chicken pox,"I have swollen lymph nodes and red spots all over my body, and they are causing discomfort. I also have a mild fever and feel tired most of the time.","swollen lymph nodes red spots body , causing discomfort also mild fever feel tired time" +5094,Chicken pox,"I've been suffering from severe itching all over my body, and it's driving me insane. I also have a red and irritating rash.","suffering severe itching body , driving insane also red irritating rash" +5095,Chicken pox,"I have seen rashes on my skin, and it's difficult for me not to scratch. Also, I've had a high fever for several days. I'm not sure what's causing it.","seen rashes skin , difficult scratch also , high fever several days sure causing" +5096,Chicken pox,"I have little red spots all over my body that I don't understand. It worries me. I have lost my appetite and every night, I am exhausted and have a severe headache.","little red spots body understand worries lost appetite every night , exhausted severe headache" +5097,Chicken pox,"I'm feeling really sick and lost my appetite. I've seen little red patches on my arms, neck and face that itch when I touch them.","feeling really sick lost appetite seen little red patches arms , neck face itch touch" +5098,Chicken pox,I have red spots on my arms and legs and itching them makes it difficult for me to sleep at night. I also have severe headaches and a mild fever.,red spots arms legs itching makes difficult sleep night also severe headaches mild fever +5099,Chicken pox,Enlarged lymph nodes are giving me a great deal of pain. I have rashes all over my body and because of which I cannot sleep all night.,enlarged lymph nodes giving great deal pain rashes body sleep night +5100,Chicken pox,"My skin rash is giving me a lot of pain and discomfort. It's red and swollen, and it's spreading throughout my body.","skin rash giving lot pain discomfort red swollen , spreading throughout body" +5101,Chicken pox,I have a high fever and a mild headache. I'm tired most of the time and completely lost my appetite.,high fever mild headache tired time completely lost appetite +5102,Chicken pox,"My arms and face have small lymph nodes, which are starting to swell. My day has been made really miserable by the constant itching and pain.","arms face small lymph nodes , starting swell day made really miserable constant itching pain" +5103,Chicken pox,"My arms and neck have large lymph nodes, which itch when I touch them. The itching has made my day extremely uncomfortable.","arms neck large lymph nodes , itch touch itching made day extremely uncomfortable" +5104,Chicken pox,"My skin rash is causing me a great deal of pain. There are also small red spots developing near my neck. Since yesterday, I have had a severe fever, headache and fatigue.","skin rash causing great deal pain also small red spots developing near neck since yesterday , severe fever , headache fatigue" +5105,Chicken pox,"I am starting to develop tiny red spots all over my face and neck area, and it itches when I touch them. The itching is making my day very uncomfortable.","starting develop tiny red spots face neck area , itches touch itching making day uncomfortable" +5106,Chicken pox,"I have lost my appetite completely and can't seem to eat anything. I feel like vomiting and feel exhausted. I noticed rashes on my skin, which is really concerning me.","lost appetite completely seem eat anything feel like vomiting feel exhausted noticed rashes skin , really concerning" +5107,Chicken pox,I have a high fever and a severe headache. I can't seem to eat anything and feel like vomiting. There are also some red spots developing on my arms. I am really worried.,high fever severe headache seem eat anything feel like vomiting also red spots developing arms really worried +5108,Chicken pox,I'm worried about these red spots on my skin. It's spreading rapidly and causing a lot of problems. I also developed a mild fever and headache every night.,worried red spots skin spreading rapidly causing lot problems also developed mild fever headache every night +5109,Chicken pox,I'm feeling really nauseous and uneasy. I'm not sure what it might be. I've seen rashes on my arms and legs. I have lost my appetite and feel exhausted every day.,feeling really nauseous uneasy sure might seen rashes arms legs lost appetite feel exhausted every day +5110,Chicken pox,I have swollen red lymph nodes on my arms and legs that itch when I touch them. I'm also suffering from a terrible headache and a mild fever. I don't feel like eating anything and have lost my appetite.,swollen red lymph nodes arms legs itch touch also suffering terrible headache mild fever feel like eating anything lost appetite +5111,Chicken pox,I'm really exhausted and lacking in energy. I can hardly keep my eyes open during the day. I have a mild fever and don't feel like eating anything. I think I have lost my appetite.,really exhausted lacking energy hardly keep eyes open day mild fever feel like eating anything think lost appetite +5112,Chicken pox,"I am exhausted and have lost my appetite. I feel vomiting and can't eat anything. In addition, little red spots are beginning to appear on my skin and near the neck. I am really worried about my health.","exhausted lost appetite feel vomiting eat anything addition , little red spots beginning appear skin near neck really worried health" +5113,Chicken pox,There are small red spots all over my body. The spots are itchy and uncomfortable. I also have a mild fever and headache.,small red spots body spots itchy uncomfortable also mild fever headache +5114,Chicken pox,"I've been suffering from severe itching all over my body, along with a fever and headache. The red spots are starting to swell and it is getting really uncomfortable every day.","suffering severe itching body , along fever headache red spots starting swell getting really uncomfortable every day" +5115,Chicken pox,I feel tired every day. There are red spots all over my arms and back and it itches if I touch them. I am really worried and not sure what to do.,feel tired every day red spots arms back itches touch really worried sure +5116,Chicken pox,"The high fever, swollen lymph nodes and headache are causing me a lot of trouble. I don't feel like eating anything and feel weak and fatigued. It's hard for me to concentrate on my daily life.","high fever , swollen lymph nodes headache causing lot trouble feel like eating anything feel weak fatigued hard concentrate daily life" +5117,Chicken pox,"I have a high fever and red spots and rashes all over my body. I feel exhausted and have completely lost my appetite, which has made me weak and lethargic. I am really worried.","high fever red spots rashes body feel exhausted completely lost appetite , made weak lethargic really worried" +5118,Chicken pox,I have seen rashes on my arms and neck and it itches if I scratch them. I've also had a high fever for a few days. I have no idea what is causing it. The itching is causing me a lot of discomforts.,seen rashes arms neck itches scratch also high fever days idea causing itching causing lot discomforts +5119,Chicken pox,"There are red swollen spots all over my body. It itches if I touch them. Moreover, I also have a high fever and headache and always feel exhausted.","red swollen spots body itches touch moreover , also high fever headache always feel exhausted" +5120,Impetigo,I have developed a skin rash on my face and neck. The rash is made up of red sores that are blistering. I am worried about my health.,developed skin rash face neck rash made red sores blistering worried health +5121,Impetigo,"I have developed skin rashes made up of blistering sores. The blistering sores are raised, fluid-filled lesions and they are painful to touch. I am also suffering from a high fever.","developed skin rashes made blistering sores blistering sores raised , fluid filled lesions painful touch also suffering high fever" +5122,Impetigo,I have a high fever. There are red sores developing near my nose. The sores are painful and have yellow rust-colored ooze coming out from them.,high fever red sores developing near nose sores painful yellow rust colored ooze coming +5123,Impetigo,"There are rashes around my nose, with large red sores. I noticed that the rash was spreading to other parts of my body. Also, I have a high fever every night.","rashes around nose , large red sores noticed rash spreading parts body also , high fever every night" +5124,Impetigo,I have been suffering from a high fever for the last couple of days. Sores are developing near my nose. The sores are painful and I am feeling very uncomfortable these days.,suffering high fever last couple days sores developing near nose sores painful feeling uncomfortable days +5125,Impetigo,"My skin has developed rashes, mainly near the nose. The rash is spreading to other parts of my body. I am really about worried about this.","skin developed rashes , mainly near nose rash spreading parts body really worried" +5126,Impetigo,I have been experiencing extreme fatigue and a high fever. There are rashes near my nose and mouth. The rash is itchy and makes it very difficult for me to sleep.,experiencing extreme fatigue high fever rashes near nose mouth rash itchy makes difficult sleep +5127,Impetigo,"I am suffering from extreme fever and weakness. I have developed sores on my face. The sores itchy and uncomfortable. Often, a yellow colored ooze comes out of the sores.","suffering extreme fever weakness developed sores face sores itchy uncomfortable often , yellow colored ooze comes sores" +5128,Impetigo,I have noticed that the sores are taking longer to heal and are more prone to infection. The sores on my face are swollen and tender to the touch and very uncomfortable to handle.,noticed sores taking longer heal prone infection sores face swollen tender touch uncomfortable handle +5129,Impetigo,There are red sores on my face and near my nose. I have noticed that the rash is spreading more quickly on my neck and chest.,red sores face near nose noticed rash spreading quickly neck chest +5130,Impetigo,The sores around my nose have become crusted over and are difficult to touch. A yellow-rust coloured ooze used to come out of the sores. It is taking much more time to handle.,sores around nose become crusted difficult touch yellow rust coloured ooze used come sores taking much time handle +5131,Impetigo,"I developed a minor rash near my nose a few days ago. Now, the rash is accompanied by a burning sensation and redness of the skin. I feel it is some kind of an infection.","developed minor rash near nose days ago , rash accompanied burning sensation redness skin feel kind infection" +5132,Impetigo,"Initially, I developed small red sores near my nose and neck. Now, I am having a high fever and the sores have become more painful and inflamed over the past few days.","initially , developed small red sores near nose neck , high fever sores become painful inflamed past days" +5133,Impetigo,"I noticed a skin rash on my face. It was made up of a blistering sore. Today I observed a yellow colored fluid coming out of the sores, I am not sure what it is.","noticed skin rash face made blistering sore today observed yellow colored fluid coming sores , sure" +5134,Impetigo,"The sores on my face are beginning to weep clear fluid. Also, every night I get a high fever and chills, because of which I cannot sleep all night.","sores face beginning weep clear fluid also , every night get high fever chills , sleep night" +5135,Impetigo,I initially had rashes on my face and near my nose. But now the rash is spreading down my arms and legs.,initially rashes face near nose rash spreading arms legs +5136,Impetigo,"I have a high fever every night and developed sores on my face, particularly near my nose. I have noticed that the sores are taking longer to heal and are more prone to infection.","high fever every night developed sores face , particularly near nose noticed sores taking longer heal prone infection" +5137,Impetigo,"The sores around my nose are now surrounded by red, inflamed skin. The rash has caused my skin to become dry and flaky, with a visible yellow colored fluid coming out of the sores.","sores around nose surrounded red , inflamed skin rash caused skin become dry flaky , visible yellow colored fluid coming sores" +5138,Impetigo,"I have also been experiencing flu-like symptoms, such as fever and body pain. I have noticed red rashes and blistering sores near my nose and lips. It's itchy and uncomfortable.","also experiencing flu like symptoms , fever body pain noticed red rashes blistering sores near nose lips itchy uncomfortable" +5139,Impetigo,I am suffering from mild fever and headache. There are small sores near my nose and rashes on my neck. I am going through a very tough time right now.,suffering mild fever headache small sores near nose rashes neck going tough time right +5140,Impetigo,"There is a rash particularly bad around my nose, with large red sores that are painful and have yellow rust-colored ooze coming from them.","rash particularly bad around nose , large red sores painful yellow rust colored ooze coming" +5141,Impetigo,"There are sores on my face and mostly near my nose and lips. The sores are causing discomfort or pain, and there is a discharge of yellow or rust-colored fluid from them.","sores face mostly near nose lips sores causing discomfort pain , discharge yellow rust colored fluid" +5142,Impetigo,"I have been developing sores on my face and nose area. I am not sure what is causing this. The sores on my face are swollen and tender to the touch, and I have a burning sensation and redness of the skin.","developing sores face nose area sure causing sores face swollen tender touch , burning sensation redness skin" +5143,Impetigo,"The rash on my face has become more painful and inflamed over the past few days, and the sores are beginning to weep clear fluid. It is getting extremely painful with each day.","rash face become painful inflamed past days , sores beginning weep clear fluid getting extremely painful day" +5144,Impetigo,I have rashes on my face. I am starting to have small sores around my nose and often a yellow fluid comes out of the sores. The sores are becoming extremely painful.,rashes face starting small sores around nose often yellow fluid comes sores sores becoming extremely painful +5145,Impetigo,"I am feeling really sick. I have a high fever and headache. I noticed rashes on my arms and face. I am extremely worried about this. Today, I observed red sores near my nose.","feeling really sick high fever headache noticed rashes arms face extremely worried today , observed red sores near nose" +5146,Impetigo,"I've been suffering from a high fever for the past few days. Sores are forming around my nose and there are rashes on different parts of my body. The sores are severe, and I'm feeling really uneasy these days.","suffering high fever past days sores forming around nose rashes different parts body sores severe , feeling really uneasy days" +5147,Impetigo,I have a high fever and am really weak. My face has gotten sores. The blisters are itchy and painful. A yellow ooze frequently leaks from the wounds.,high fever really weak face gotten sores blisters itchy painful yellow ooze frequently leaks wounds +5148,Impetigo,"I am experiencing skin rashes with burning sores. The blistering sores are fluid-filled, elevated, red colored lesions that are unpleasant to touch. I also have a high fever.","experiencing skin rashes burning sores blistering sores fluid filled , elevated , red colored lesions unpleasant touch also high fever" +5149,Impetigo,"I believe I have some skin disease. There are rashes on my face and small sores near my nose. The sores have become red, and painful and some kind of a yellow ooze discharges from them.","believe skin disease rashes face small sores near nose sores become red , painful kind yellow ooze discharges" +5150,Impetigo,"I have noticed that the sores on my face are healing more slowly and are more likely to become infected. My cheek sores are large, painful to the touch, and extremely difficult to handle. I can't seem to get rid of these sores.","noticed sores face healing slowly likely become infected cheek sores large , painful touch , extremely difficult handle seem get rid sores" +5151,Impetigo,"I am having a high fever. I've had a skin rash on my face, neck and arms. The rash is made up of burning red lesions. I'm concerned about my health.","high fever skin rash face , neck arms rash made burning red lesions concerned health" +5152,Impetigo,"I've acquired skin rashes with blistering sores. The blistering sores are fluid-filled, elevated lesions that are unpleasant to touch. I'm also running a high fever.","acquired skin rashes blistering sores blistering sores fluid filled , elevated lesions unpleasant touch also running high fever" +5153,Impetigo,"I'm running a high temperature. Near my nose, red sores are forming. The lesions are painful, and yellow rust-colored fluid is oozing from them.","running high temperature near nose , red sores forming lesions painful , yellow rust colored fluid oozing" +5154,Impetigo,"I have rashes around my nose, as well as huge red sores. The rash is spreading to other places on my body, as I've seen. In addition, I have a high temperature every night.","rashes around nose , well huge red sores rash spreading places body , seen addition , high temperature every night" +5155,Impetigo,My cheeks and nose are covered with red sores. I've observed that the rash on my neck and chest is spreading faster. I am also developing a mild fever.,cheeks nose covered red sores observed rash neck chest spreading faster also developing mild fever +5156,Impetigo,My nasal sores have crusted up and become difficult to touch. The wounds used to leak a yellow-rust coloured fluid. It is taking a lot longer to deal with using medication.,nasal sores crusted become difficult touch wounds used leak yellow rust coloured fluid taking lot longer deal using medication +5157,Impetigo,"A few days ago, I experienced a tiny rash around my nose. The rash is now accompanied by a burning feeling and skin redness and discharge of fluid. I believe it is some sort of infection.","days ago , experienced tiny rash around nose rash accompanied burning feeling skin redness discharge fluid believe sort infection" +5158,Impetigo,"Small red sores appeared near my nose and neck at first. I now have a high temperature, and the sores have gotten more painful and inflamed in recent days.","small red sores appeared near nose neck first high temperature , sores gotten painful inflamed recent days" +5159,Impetigo,"A rash has developed around my nose and lips, with huge red lesions that are painful and emit a yellow rust-colored fluid.","rash developed around nose lips , huge red lesions painful emit yellow rust colored fluid" +5160,Impetigo,"My face is covered in sores. Most of them are near my nose and lips. The lesions are causing discomfort or suffering, and a yellow or rust-colored fluid is oozing from them.","face covered sores near nose lips lesions causing discomfort suffering , yellow rust colored fluid oozing" +5161,Impetigo,"I've started getting sores on my face and nose. I have no idea what is causing this. My cheek sores are large and irritating to the touch, and I have a burning feeling and skin redness.","started getting sores face nose idea causing cheek sores large irritating touch , burning feeling skin redness" +5162,Impetigo,"Over the last two days, the rash on my face has gotten more severe and inflamed, and the blisters have begun to bleed clear pus. It is really painful to deal with.","last two days , rash face gotten severe inflamed , blisters begun bleed clear pus really painful deal" +5163,Impetigo,"I feel I have a skin condition. My face has rashes and little blisters around my nose. The wounds have turned red and painful, and a yellow liquid is oozing from them.","feel skin condition face rashes little blisters around nose wounds turned red painful , yellow liquid oozing" +5164,Impetigo,"I've observed that the lesions on my face are healing slower and are more prone to infection. The lesions on my cheeks are huge, unpleasant to the touch, and incredibly difficult to treat. I can't seem to get these sores to go away.","observed lesions face healing slower prone infection lesions cheeks huge , unpleasant touch , incredibly difficult treat seem get sores go away" +5165,Impetigo,"I'm running a high temperature. I've developed a rash on my face, neck, and arms. The rash consists of painful red lesions. My health is a concern for me.","running high temperature developed rash face , neck , arms rash consists painful red lesions health concern" +5166,Impetigo,"Over the last week, the rash on my face has gotten more severe and painful, and the sores have begun to discharge a yellow colored fluid. It's becoming increasingly painful by the day.","last week , rash face gotten severe painful , sores begun discharge yellow colored fluid becoming increasingly painful day" +5167,Impetigo,"I've had rashes on my face. I'm developing little sores around my nose, and a yellow ooze is frequently oozing from them. The lesions have become even more painful.","rashes face developing little sores around nose , yellow ooze frequently oozing lesions become even painful" +5168,Impetigo,I'm feeling quite ill. I have a high fever and a headache. Rashes appeared on my arms and face. I'm quite concerned about this. I saw red sores around my nose and lips today.,feeling quite ill high fever headache rashes appeared arms face quite concerned saw red sores around nose lips today +5169,Impetigo,"The rashes on my face are not healing. I tried some medications but it is not helping much. Recently, I noticed small sores near my nose. They are painful and very difficult to handle.","rashes face healing tried medications helping much recently , noticed small sores near nose painful difficult handle" +5170,Dengue,I am facing severe joint pain and vomitting. I have developed a skin rash that covers my entire body and is accompanied by intense itching. ,facing severe joint pain vomitting developed skin rash covers entire body accompanied intense itching +5171,Dengue,"I have been experiencing chills and shivering, despite being in a warm environment. My back pains all the time and there are red spots on my arms.","experiencing chills shivering , despite warm environment back pains time red spots arms" +5172,Dengue,"I have been experiencing severe joint pain that makes it difficult for me to move and perform my daily activities. Also, I have lost my apetite because of which I feel weak.","experiencing severe joint pain makes difficult move perform daily activities also , lost apetite feel weak" +5173,Dengue,I have been vomiting frequently and have lost my appetite as a result. My joints and back pain all the time.,vomiting frequently lost appetite result joints back pain time +5174,Dengue,I have a high fever accompanied with severe headache and body pain. I experince chills every night. There is a distinct pain behind my eyes too.,high fever accompanied severe headache body pain experince chills every night distinct pain behind eyes +5175,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. I have developed rashes on my neck, which itch upon touching. ","feeling extremely tired fatigued , energy anything developed rashes neck , itch upon touching" +5176,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I have lost my apetite and experience chills every night. ,experiencing severe headache accompanied pain behind eyes lost apetite experience chills every night +5177,Dengue,I have been feeling nauseous and have a constant urge to vomit. There is a strong pain behind my eyes and there are small red spots all over my arms.,feeling nauseous constant urge vomit strong pain behind eyes small red spots arms +5178,Dengue,I have developed red spots on my body that are itchy and inflamed. I am also experiencing high fever along with chills and shivering. ,developed red spots body itchy inflamed also experiencing high fever along chills shivering +5179,Dengue,I have been experiencing muscle pain that makes it difficult for me to move around. I have lost my apetite and feel vomiting. My legs and back pain a lot. ,experiencing muscle pain makes difficult move around lost apetite feel vomiting legs back pain lot +5180,Dengue,"I have been experiencing back pain that is worse when I sit or stand for a long time. Also, there are rashes all over my body. There is a pain behind my eyes too.","experiencing back pain worse sit stand long time also , rashes body pain behind eyes" +5181,Dengue,The skin rash I have developed is accompanied by redness and swelling. I don’t feel well as I have severe fever accompanied with body pain.,skin rash developed accompanied redness swelling feel well severe fever accompanied body pain +5182,Dengue,The chills and shivering I have been experiencing are accompanied by a feeling of coldness and high fever. I have also developed rashes on my arms and red spots on my neck.,chills shivering experiencing accompanied feeling coldness high fever also developed rashes arms red spots neck +5183,Dengue,"The joint pain I have been experiencing is severe and feels like a constant ache. My head aches most of the time and I am starting to develope mild fever, accompanied with chills. ","joint pain experiencing severe feels like constant ache head aches time starting develope mild fever , accompanied chills" +5184,Dengue,The vomiting I have been experiencing is accompanied by stomach cramps and dizziness. I have lost my apetite and feel weak as a result. There is a pain behind my eyes too.,vomiting experiencing accompanied stomach cramps dizziness lost apetite feel weak result pain behind eyes +5185,Dengue,The high fever I have been experiencing is accompanied by sweating and weakness. My muscles pain as a result I cannot work all day. ,high fever experiencing accompanied sweating weakness muscles pain result work day +5186,Dengue,"The fatigue I have been feeling is extreme and makes it difficult for me to perform even basic tasks. I feel vomitting and developed rashes on my arms, neck and legs. ","fatigue feeling extreme makes difficult perform even basic tasks feel vomitting developed rashes arms , neck legs" +5187,Dengue,The headache I have been experiencing is severe and is accompanied by a feeling of pressure in my head. I have mild fever along with headache. There are small red spots on my back.,headache experiencing severe accompanied feeling pressure head mild fever along headache small red spots back +5188,Dengue,The nausea I have been feeling is accompanied by a loss of appetite and feeling of unease. There is a distinct pain in my back and muscles pain too. ,nausea feeling accompanied loss appetite feeling unease distinct pain back muscles pain +5189,Dengue,The muscle pain I have been experiencing is severe and feels like a constant ache. There are red spots all over my body and the itching is causing me a lot of discomfort.,muscle pain experiencing severe feels like constant ache red spots body itching causing lot discomfort +5190,Dengue,"I have developed a skin rash that covers my entire body and is accompanied by intense itching. My body pains and I have a mild fever, acompanied with headache and chills.","developed skin rash covers entire body accompanied intense itching body pains mild fever , acompanied headache chills" +5191,Dengue,"I'm experiencing extreme body pain, headache and vomiting. I've developed red spots that covers my entire body and causes severe itching.","experiencing extreme body pain , headache vomiting developed red spots covers entire body causes severe itching" +5192,Dengue,"My back hurts all the time, and my arms and neck have rashes. The back of eyes pain a lot. I also have fever and it is making we worried about my health.","back hurts time , arms neck rashes back eyes pain lot also fever making worried health" +5193,Dengue,"I've been suffering from significant joint pain, which makes it difficult for me to walk and carry out my everyday tasks. I've also lost my appetite, which makes me feel weak and feel like vomitting.","suffering significant joint pain , makes difficult walk carry everyday tasks also lost appetite , makes feel weak feel like vomitting" +5194,Dengue,There is a constant behind my eyes. I have developed red spots on my neck and face and rashes on my arms. My arms and legs pain a lot. . The spots are itchy and uncomfortable and it is worrying me.,constant behind eyes developed red spots neck face rashes arms arms legs pain lot spots itchy uncomfortable worrying +5195,Dengue,"I've been feeling sick and feel a strong need to vomit. There is a sharp ache behind my eyes, and swollen red dots all over my back.","feeling sick feel strong need vomit sharp ache behind eyes , swollen red dots back" +5196,Dengue,My shivers and shivering have been accompanied with a sensation of coldness and a very high fever. Rashes on my arms and red patches on my neck have also appeared. ,shivers shivering accompanied sensation coldness high fever rashes arms red patches neck also appeared +5197,Dengue,"I have been suffering from severe joint ache. I feel vomiting most of the time, and I am developing a moderate fever with chills. The fever that doesn't seem to come down even with medication.","suffering severe joint ache feel vomiting time , developing moderate fever chills fever seem come even medication" +5198,Dengue,"The vomiting I've been having has been followed by stomach pains and dizziness. I've lost my appetite and as a result feel weak. My arms, back, neck pain most of the time.","vomiting followed stomach pains dizziness lost appetite result feel weak arms , back , neck pain time" +5199,Dengue,I have developed red spots on my arms and legs that are itchy and inflamed. I have been feeling nauseaus and have a constant urge to vomit. This is accomapanied by mild fever.,developed red spots arms legs itchy inflamed feeling nauseaus constant urge vomit accomapanied mild fever +5200,Dengue,"I have developed a skin rash that covers my entire body. The rash is red and swollen, and is worse in certain areas such as my arms and legs. I have also lost my appetite. ","developed skin rash covers entire body rash red swollen , worse certain areas arms legs also lost appetite" +5201,Dengue,I have been experiencing chills and shivering. There is a strong pain in my back and also behind my eyes. I have also noticed small red spots on my back and neck. ,experiencing chills shivering strong pain back also behind eyes also noticed small red spots back neck +5202,Dengue,I have been experiencing severe joint pain that is making my day very difficult. I feel like vomiting all the time and have a mild headache too.,experiencing severe joint pain making day difficult feel like vomiting time mild headache +5203,Dengue,"I have been vomiting frequently and have lost my appetite as a result. There are rashes on my skin and my eyes pain, because of which I cannot sleep properly.","vomiting frequently lost appetite result rashes skin eyes pain , sleep properly" +5204,Dengue,I have a high fever along with a severe headache. The fever is accompanied by extreme body pain and chills. I am worried about my health and don’t know what to do.,high fever along severe headache fever accompanied extreme body pain chills worried health know +5205,Dengue,"I have been feeling extremely tired and fatigued, and I have no energy to do anything. The fatigue is so severe that I struggle to get out of bed. I have noticed small red spots on my arms and legs. ","feeling extremely tired fatigued , energy anything fatigue severe struggle get bed noticed small red spots arms legs" +5206,Dengue,I have been experiencing a severe headache that is accompanied by pain behind my eyes. I feel tired and fatigued because of which I cannot work all day. I am worried about my health.,experiencing severe headache accompanied pain behind eyes feel tired fatigued work day worried health +5207,Dengue,"I have been feeling nauseous and have a constant urge to vomit, which is accompanied with mild fever and headache. ","feeling nauseous constant urge vomit , accompanied mild fever headache" +5208,Dengue,I have developed rashes on my body that are itchy and. I have lost my appetite and feel very tired all day. I feel something is wrong with my body.,developed rashes body itchy lost appetite feel tired day feel something wrong body +5209,Dengue,"I have been experiencing muscle pain and headache. The muscle pain feels like a constant ache and is worse when I try to use the affected muscles. There are small red spots developing on my face, neck and arms.","experiencing muscle pain headache muscle pain feels like constant ache worse try use affected muscles small red spots developing face , neck arms" +5210,Dengue,"My back hurts, and I have rashes on my arms and armpits. The back of my eyeballs hurt a lot. I also have a mild fever, which is making us concerned about my health. ","back hurts , rashes arms armpits back eyeballs hurt lot also mild fever , making us concerned health" +5211,Dengue,"I am experiencing very high fever and chills every night. It is really concerning me. Moreover, I don’t feel like eating anything and my back, arms, legs pain a lot. There is a strange pain behing my eyes. I can’t do any physical activities. ","experiencing high fever chills every night really concerning moreover , feel like eating anything back , arms , legs pain lot strange pain behing eyes physical activities" +5212,Dengue,"As a result of my regular vomiting, I've lost my appetite. My muscles, joints and back constantly hurt. I am starting to have fever too. I am really worried and not sure what to do.","result regular vomiting , lost appetite muscles , joints back constantly hurt starting fever really worried sure" +5213,Dengue,I have been experiencing a severe fever that is accompanied by pain behind my eyes and headache. I feel tired and exhasuted because of which I cannot do any work.,experiencing severe fever accompanied pain behind eyes headache feel tired exhasuted work +5214,Dengue,"My whole body is paining a lot and I don’t feel like eating anything. I have mild fever and get chills every night. Also, there are some red spots developing on my back and neck.","whole body paining lot feel like eating anything mild fever get chills every night also , red spots developing back neck" +5215,Dengue,"My joints and back pain everyday. I feel like vomitting and this has made me very weak. Because of my body pain, I am not able to focus on my work and don’t feel like doing anything.","joints back pain everyday feel like vomitting made weak body pain , able focus work feel like anything" +5216,Dengue,The body pain I have been feeling is extreme. I has lost my appetite and developed rashes on my arms and face. The back of my eyes pain a lot.,body pain feeling extreme lost appetite developed rashes arms face back eyes pain lot +5217,Dengue,I have developed rashes on my body. I am also experiencing high fever along with chills and headache. My joints and back hurt and there is a strange pain in the back of my eyes.,developed rashes body also experiencing high fever along chills headache joints back hurt strange pain back eyes +5218,Dengue,"I have been feeling nauseous and have a constant urge to vomit. I get high fever and chills every night and feel terrible because of this. Also, I feel I have lost my appetite.","feeling nauseous constant urge vomit get high fever chills every night feel terrible also , feel lost appetite" +5219,Dengue,"There are rashes on my skin, which itch if I touch them. I don’t feel good as my joints pain whole day. At night, I have mild fever and get chills, because of which I can’t sleep too.","rashes skin , itch touch feel good joints pain whole day night , mild fever get chills , sleep" +5220,Fungal infection,"I have raised lumps, a rash that looks red and inflamed, discoloured areas of skin that are different colours from the rest of my skin, and itching on my skin.","raised lumps , rash looks red inflamed , discoloured areas skin different colours rest skin , itching skin" +5221,Fungal infection,"All over my body, there has been a severe itching that has been followed by a red, bumpy rash. My skin also has a few darkened spots and a few tiny, nodular breakouts. It has been happening for several days and is becoming worse.","body , severe itching followed red , bumpy rash skin also darkened spots tiny , nodular breakouts happening several days becoming worse" +5222,Fungal infection,"I've had a rash on my skin that looks like dischromic patches, and I also have a lot of nodular eruptions and really bad itching. During the previous week, it has become worse.","rash skin looks like dischromic patches , also lot nodular eruptions really bad itching previous week , become worse" +5223,Fungal infection,"I've had a rash that won't go away and a bothersome itching on my skin. In addition, I've seen some color-different areas and bumps that resemble knots or lumps on my skin.","rash go away bothersome itching skin addition , seen color different areas bumps resemble knots lumps skin" +5224,Fungal infection,"I have a rash all over my body, and I can't stop scratching because my skin is itchy. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples.","rash body , stop scratching skin itchy skin also spots hue altered lumps knot like pimples" +5225,Fungal infection,"Recently, my skin has been quite itchy, and I have a rash all over my body. My skin also has a few spots where the hue is altered and some lumps and knot-like pimples.","recently , skin quite itchy , rash body skin also spots hue altered lumps knot like pimples" +5226,Fungal infection,"My skin has been itching a lot and developing a rash. Additionally, I have a few areas of my skin that are a different hue than the rest of it. Additionally, I have a few firm pimples or breakouts on my skin.","skin itching lot developing rash additionally , areas skin different hue rest additionally , firm pimples breakouts skin" +5227,Fungal infection,"All over my body has been itching like crazy, and now there are red areas all over. Additionally, some of the patches have a different tone than my natural skin. And on my skin, there are these lumps or pimples that have developed.","body itching like crazy , red areas additionally , patches different tone natural skin skin , lumps pimples developed" +5228,Fungal infection,"My skin has been acting up recently, becoming extremely itchy and rashes-prone. Additionally, there are certain spots that deviate from my natural skin tone in terms of hue. And now my skin has these lumps or bumps that weren't there before.","skin acting recently , becoming extremely itchy rashes prone additionally , certain spots deviate natural skin tone terms hue skin lumps bumps" +5229,Fungal infection,"On my arms and legs, I have a lot of red pimples and itchy skin. My skin also has a few odd-looking lesions. And occasionally there are bumps that are somewhat uncomfortable.","arms legs , lot red pimples itchy skin skin also odd looking lesions occasionally bumps somewhat uncomfortable" +5230,Fungal infection,I have an itchy skin and lots of red bumps on my arms and legs. There are some weird looking spots on my skin too. And sometimes there are bumps that feel kind of hard.,itchy skin lots red bumps arms legs weird looking spots skin sometimes bumps feel kind hard +5231,Fungal infection,"Doctor, I have a really itchy rash on my skin and there are some weird spots that are a different color. There are also some bumps on my skin that look like little knots","doctor , really itchy rash skin weird spots different color also bumps skin look like little knots" +5232,Fungal infection,"Doctor, My skin is covered in a very uncomfortable rash, along with some odd patches of a different hue. My skin also has a few pimples that resemble little knots","doctor , skin covered uncomfortable rash , along odd patches different hue skin also pimples resemble little knots" +5233,Fungal infection,"I have lots of itchy spots on my skin, and sometimes they turn red or bumpy. There are also some weird patches that are different colors than the rest of my skin, and sometimes I get these weird bumps that look like little balls.","lots itchy spots skin , sometimes turn red bumpy also weird patches different colors rest skin , sometimes get weird bumps look like little balls" +5234,Fungal infection,"My skin frequently develops itchy bumps that can occasionally turn red or rough. Aside from that, my skin occasionally develops strange pimples that resemble small balls and some odd spots that are a different hue from the rest of my skin.","skin frequently develops itchy bumps occasionally turn red rough aside , skin occasionally develops strange pimples resemble small balls odd spots different hue rest skin" +5235,Fungal infection,"Doctor, I have these red rashes that keep popping up and my skin is continuously itching. In addition, I've observed some odd color-different spots on my skin, as well as some little nodules on my skin that appear to be expanding.","doctor , red rashes keep popping skin continuously itching addition , observed odd color different spots skin , well little nodules skin appear expanding" +5236,Fungal infection,"I have been experiencing some really intense itching all over my body, along with redness and bumps on my skin. There are also these weird patches that are different colors than the rest of my skin, and sometimes I get these nodules that look like small bumps.","experiencing really intense itching body , along redness bumps skin also weird patches different colors rest skin , sometimes get nodules look like small bumps" +5237,Fungal infection,"All over my body, I've been scratching so much that my skin has become red and developed pimples. Additionally, I occasionally get these nodules that resemble little pimples, as well as these strange patches that are a different hue from the rest of my skin.","body , scratching much skin become red developed pimples additionally , occasionally get nodules resemble little pimples , well strange patches different hue rest skin" +5238,Fungal infection,"I've been experiencing a lot of itching, which has been accompanied with a rash that appears to be growing worse over time. There are also certain areas of skin that are different colours from the rest, and I've spotted several lumps that resemble little nodes.","experiencing lot itching , accompanied rash appears growing worse time also certain areas skin different colours rest , spotted several lumps resemble little nodes" +5239,Fungal infection,"I've been having a lot of problems with itching, and it's been accompanied by a rash that seems to be getting worse over time. There are also some patches of skin that are different colors than the rest, and I've noticed some bumps that look like little nodes.","lot problems itching , accompanied rash seems getting worse time also patches skin different colors rest , noticed bumps look like little nodes" +5240,Fungal infection,"Doctor, My skin is covered in an uncomfortable rash and has a few odd patches of skin that are a different colour. There are a few pimples on my skin that resemble little knots.","doctor , skin covered uncomfortable rash odd patches skin different colour pimples skin resemble little knots" +5241,Fungal infection,"I've been itching a lot, and it's been accompanied with a rash that looks to be getting worse over time. There are also some patches of skin that are different colours from the rest of the skin, as well as some lumps that resemble little nodes.","itching lot , accompanied rash looks getting worse time also patches skin different colours rest skin , well lumps resemble little nodes" +5242,Fungal infection,"My skin has been acting up lately, becoming exceedingly itchy and prone to rashes. Furthermore, several patches differ from my normal skin tone in terms of colour. And now I have lumps or bumps on my skin that weren't there before.","skin acting lately , becoming exceedingly itchy prone rashes furthermore , several patches differ normal skin tone terms colour lumps bumps skin" +5243,Fungal infection,"A rash that appears to be developing throughout my skin has been accompanying my recent bouts of intense itching and discomfort. On my skin, I also have some dischromic spots and little lumps that seem to be appearing everywhere.","rash appears developing throughout skin accompanying recent bouts intense itching discomfort skin , also dischromic spots little lumps seem appearing everywhere" +5244,Fungal infection,"My skin always itches, and occasionally it becomes quite rough and red. In addition, I occasionally get little pimples that resemble tiny balls and certain spots that are a different colour from the rest of my skin. It severely irritates me and itches.","skin always itches , occasionally becomes quite rough red addition , occasionally get little pimples resemble tiny balls certain spots different colour rest skin severely irritates itches" +5245,Fungal infection,"I have a lot of itching all over my skin, and sometimes it gets really red and bumpy. There are also some patches that are different colors than the rest of my skin, and sometimes I get these little bumps that look like little balls. It's really annoying and itchy.","lot itching skin , sometimes gets really red bumpy also patches different colors rest skin , sometimes get little bumps look like little balls really annoying itchy" +5246,Fungal infection,"I have a pretty irritating itch all over my body, and my skin also has a few red, bumpy areas. I've also had some pimples that resemble small balls and other spots that are a different colour than the rest of my skin. ","pretty irritating itch body , skin also red , bumpy areas also pimples resemble small balls spots different colour rest skin" +5247,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my skin that are a different hue than the rest of it, and I've had some pimples that resemble little balls.","pretty uncomfortable itch body , well red bumpy areas skin also certain patches skin different hue rest , pimples resemble little balls" +5248,Fungal infection,"I've been having this really annoying itch all over my body, and I have red and bumpy spots on my skin too. There are also some areas that are a different color than the rest of my skin, and I've had some bumps that look like little balls.","really annoying itch body , red bumpy spots skin also areas different color rest skin , bumps look like little balls" +5249,Fungal infection,"I've had a pretty uncomfortable itch all over my body, as well as red and bumpy areas on my skin. There are also certain patches of my epidermis with a distinct shade than the rest of it, and I've had some pimples that resemble little balls.","pretty uncomfortable itch body , well red bumpy areas skin also certain patches epidermis distinct shade rest , pimples resemble little balls" +5250,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that look different in shade than the rest of my skin, and I've had some bumps that are kind of hard.","really itchy lately rashy spots skin also areas look different shade rest skin , bumps kind hard" +5251,Fungal infection,"I've been quite itchy recently, and I have rashy patches all over my skin. There are also certain regions that are darker in colour than the rest of my skin, and I've got some firm lumps.","quite itchy recently , rashy patches skin also certain regions darker colour rest skin , got firm lumps" +5252,Fungal infection,"I've been rather itchy recently, and I have rashy blotches all over my skin. There are also certain regions that are more dark in color than the rest of my skin, and I've got some painful lumps.","rather itchy recently , rashy blotches skin also certain regions dark color rest skin , got painful lumps" +5253,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. Additionally, I've had a few pimples that are rather firm, and there are certain spots on my body that have a different shade of brown than the rest of my skin.","recently , scratching lot , skin covered rashy places additionally , pimples rather firm , certain spots body different shade brown rest skin" +5254,Fungal infection,"My skin has been really itchy and there are these rashy spots all over. There are also some patches that look different in color than the rest of my skin, and I've had some bumps that are kind of hard.","skin really itchy rashy spots also patches look different color rest skin , bumps kind hard" +5255,Fungal infection,"My skin has been really scratchy, and there are rashes all over my body. I have some bumps that are quite firm, as well as some areas that are a darker shade from the rest of my skin. It's extremely unpleasant.","skin really scratchy , rashes body bumps quite firm , well areas darker shade rest skin extremely unpleasant" +5256,Fungal infection,"There are rashy areas all over my skin, which has been really irritating. Additionally, I have some bumps that are fairly firm and some patches that are a different colour from the rest of my skin.","rashy areas skin , really irritating additionally , bumps fairly firm patches different colour rest skin" +5257,Fungal infection,"Recently, I've been scratching myself a lot, and my skin is covered with rashy places. In addition, there are a few spots where my skin doesn't appear to be its usual shade, and I've experienced a few lumps that are quite painful.","recently , scratching lot , skin covered rashy places addition , spots skin appear usual shade , experienced lumps quite painful" +5258,Fungal infection,"I've been really itchy lately and there are these rashy spots all over my skin. There are also some areas that don't look like the normal color of my skin, and I've had some bumps that are kind of hard","really itchy lately rashy spots skin also areas look like normal color skin , bumps kind hard" +5259,Fungal infection,"I've been quite itchy recently, and I have rashy places all over my body. There are also some regions that don't appear to be the typical hue of my skin, and I've experienced some firm lumps.","quite itchy recently , rashy places body also regions appear typical hue skin , experienced firm lumps" +5260,Fungal infection,"I've been itching and have rashy patches all over my skin recently. There are also some regions that don't appear to be the regular tone of my skin, and I've experienced some painful bumps.","itching rashy patches skin recently also regions appear regular tone skin , experienced painful bumps" +5261,Fungal infection,"Recently, I've been itching myself a lot, and my skin is covered with rashy patches. Furthermore, there are a few regions where my skin doesn't appear to be its usual tone, and I've experienced a few lumps that are exceptionally painful.","recently , itching lot , skin covered rashy patches furthermore , regions skin appear usual tone , experienced lumps exceptionally painful" +5262,Fungal infection,"I've been having this constant itch and there are these red and bumpy spots on my skin. There are also some patches that are a different color than the rest of my skin, and I've had some bumps that are kind of like little lumps.","constant itch red bumpy spots skin also patches different color rest skin , bumps kind like little lumps" +5263,Fungal infection,"There are red, bumpy areas on my skin, and I've been scratching myself nonstop. Additionally, I have some bumps that resemble little lumps and some spots that are a different shade of skin than the rest of my body.","red , bumpy areas skin , scratching nonstop additionally , bumps resemble little lumps spots different shade skin rest body" +5264,Fungal infection,"I've had a lot of itching on my skin, which occasionally turns into a rash. There are also some odd patches of skin that are a different hue than the rest of me, and I occasionally get little pimples that resemble nodules.","lot itching skin , occasionally turns rash also odd patches skin different hue rest , occasionally get little pimples resemble nodules" +5265,Fungal infection,"I've had a tendency of itching on my skin, that frequently turns into a rash. There are also some strange patches of skin that are a different tone than the rest of my skin, and I regularly get little lumps that mimic nodules.","tendency itching skin , frequently turns rash also strange patches skin different tone rest skin , regularly get little lumps mimic nodules" +5266,Fungal infection,"I've been experiencing a lot of itching on my skin, and sometimes it turns into a rash. There are also some strange patches of skin that are a different color than the rest of me, and sometimes I get little bumps that look like nodules.","experiencing lot itching skin , sometimes turns rash also strange patches skin different color rest , sometimes get little bumps look like nodules" +5267,Fungal infection,"My body has been itching terribly all over, and there are now red spots everywhere. Some of the patches also differ in tone from my natural complexion. And there are these lumps or pimples that have appeared on my skin.","body itching terribly , red spots everywhere patches also differ tone natural complexion lumps pimples appeared skin" +5268,Fungal infection,"My skin has been really itchy lately, and it occasionally erupts into a rash. In addition, I have a few odd areas of skin that are a different coloration from the rest of me, and occasionally I develop little bumps that look  like nodules.","skin really itchy lately , occasionally erupts rash addition , odd areas skin different coloration rest , occasionally develop little bumps look like nodules" +5269,Fungal infection,There are now red blotches all over my body where I have been itching horribly all over. A few of the patches also differ in complexion from my natural skin. And these lumps or bumps have developed on my skin.,red blotches body itching horribly patches also differ complexion natural skin lumps bumps developed skin +5270,Common Cold,"I can't stop sneezing and my nose is really runny. I'm also really cold and tired all the time, and I've been coughing a lot. My fever is really high too, like way above normal.","stop sneezing nose really runny also really cold tired time , coughing lot fever really high , like way normal" +5271,Common Cold,"My nose is extremely runny, and I can't seem to stop sneezing. In addition, I constantly feel cold, exhausted, and I've been coughing a lot. My fever is also really high far above normal.","nose extremely runny , seem stop sneezing addition , constantly feel cold , exhausted , coughing lot fever also really high far normal" +5272,Common Cold,"I've been sneezing nonstop and I can't seem to shake this chill. I'm feeling really weak and tired, and my cough won't go away. My fever is really high","sneezing nonstop seem shake chill feeling really weak tired , cough go away fever really high" +5273,Common Cold,"I've been sneezing incessantly and I just can't get this chill to go away. I feel so weak and exhausted, and my cough won't stop. My temperature is really high.","sneezing incessantly get chill go away feel weak exhausted , cough stop temperature really high" +5274,Common Cold,I'm constantly sneezing and my body is shaking from being cold. I'm so tired I can barely move and my head is killing me. My fever is through the roof,constantly sneezing body shaking cold tired barely move head killing fever roof +5275,Common Cold,"I'm constantly sneezing, and the cold is making my body tremble. I'm so exhausted that I can hardly move, and my head hurts. My fever is quite high.","constantly sneezing , cold making body tremble exhausted hardly move , head hurts fever quite high" +5276,Common Cold,"I've been quite exhausted and ill. I'm sneezing nonstop and am quite cold. My head is throbbing, and I lack energy. Additionally, I have a very high fever and feel like I am on fire.","quite exhausted ill sneezing nonstop quite cold head throbbing , lack energy additionally , high fever feel like fire" +5277,Common Cold,"I've been feeling really tired and sick. I've been sneezing a lot and I can't seem to get warm. I'm so tired and my head is killing me. And my fever is really high, like I'm boiling.","feeling really tired sick sneezing lot seem get warm tired head killing fever really high , like boiling" +5278,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak" +5279,Common Cold,"I've been quite exhausted and ill. I have been sneezing a lot and am having trouble warming up. I'm so exhausted, and my head hurts. And I feel like I am boiling over with my high temperature.","quite exhausted ill sneezing lot trouble warming exhausted , head hurts feel like boiling high temperature" +5280,Common Cold,I can't stop sneezing and I feel really tired and crummy. My throat is really sore and I have a lot of gunky stuff in my nose and throat. My neck feels swollen and puffy too.,stop sneezing feel really tired crummy throat really sore lot gunky stuff nose throat neck feels swollen puffy +5281,Common Cold,"I can't stop sneezing, and I'm exhausted and sick. My throat is really uncomfortable, and there is a lot of junk in my nose and throat. My neck is also swollen and puffy.","stop sneezing , exhausted sick throat really uncomfortable , lot junk nose throat neck also swollen puffy" +5282,Common Cold,"I keep sneezing, and I'm miserable and exhausted. I have a lot of gunky things in my nose and throat, and my throat is really hurting. My neck also feels puffy and swollen.","keep sneezing , miserable exhausted lot gunky things nose throat , throat really hurting neck also feels puffy swollen" +5283,Common Cold,I've been feeling really exhausted and sick to my stomach. I've had a really bad cough and my throat has hurt a lot. I've experienced substantial sinus pressure and a congested nose. I'm really unpleasant and worn out.,feeling really exhausted sick stomach really bad cough throat hurt lot experienced substantial sinus pressure congested nose really unpleasant worn +5284,Common Cold,I've been sneezing a lot and feeling really tired and sick. There's also a lot of gross stuff coming out of my nose and my throat feels really scratchy. And my neck feels swollen too.,sneezing lot feeling really tired sick also lot gross stuff coming nose throat feels really scratchy neck feels swollen +5285,Common Cold,"I've been wheezing a lot and am generally feeling sick and exhausted. My throat feels really scratchy, and a lot of gross stuff is flowing out of my nose. My neck also feels bloated.","wheezing lot generally feeling sick exhausted throat feels really scratchy , lot gross stuff flowing nose neck also feels bloated" +5286,Common Cold,"My sinuses feel incredibly congested, and my eyes are continuously red. I just constantly feel drained and exhausted. In addition, I have a lot of uncomfortable phlegm in my throat. My lymph nodes feel bloated, and breathing has been challenging.","sinuses feel incredibly congested , eyes continuously red constantly feel drained exhausted addition , lot uncomfortable phlegm throat lymph nodes feel bloated , breathing challenging" +5287,Common Cold,My eyes have been really red and my sinuses feel congested. I just don't have any energy and my throat has been really itchy. I've also noticed my lymph nodes are swollen and I've been coughing up a lot of phlegm.,eyes really red sinuses feel congested energy throat really itchy also noticed lymph nodes swollen coughing lot phlegm +5288,Common Cold,"My sinuses feel stuffy, and my eyes have been quite red. I simply lack energy, and my throat has been really scratchy. Along with the swelling in my lymph nodes, I've also been coughing up a lot of phlegm.","sinuses feel stuffy , eyes quite red simply lack energy , throat really scratchy along swelling lymph nodes , also coughing lot phlegm" +5289,Common Cold,"My eyes are always red and itchy, and my nose feels all stuffy and congested. I just feel kind of sick and tired all the time, and I keep coughing up all this gunk. My throat feels sore and scratchy, and I've noticed that the bumps on my neck are bigger than usual","eyes always red itchy , nose feels stuffy congested feel kind sick tired time , keep coughing gunk throat feels sore scratchy , noticed bumps neck bigger usual" +5290,Common Cold,"My nose always feels stuffy and congested, and my eyes are always red and itching. I have a feeling of being unwell and fatigued, and I keep hacking up this gunk. I have a scratchy, irritated throat, and I've seen that my neck's bumps are larger than usual.","nose always feels stuffy congested , eyes always red itching feeling unwell fatigued , keep hacking gunk scratchy , irritated throat , seen neck bumps larger usual" +5291,Common Cold,"I keep sneezing, and my eyes don't quit dripping. It's incredibly difficult for me to breathe because it feels like there is something trapped in my throat. I often feel exhausted, and lately, I've had a lot of phlegm. Moreover, my lymph nodes are enlarged.","keep sneezing , eyes quit dripping incredibly difficult breathe feels like something trapped throat often feel exhausted , lately , lot phlegm moreover , lymph nodes enlarged" +5292,Common Cold,My eyes are red and watery all the time. I've also had this pressure in my sinuses that won't go away. I'm always feeling tired and I've been having a lot of trouble breathing. I've also had a lot of gunk in my throat and my lymph nodes are swollen.,eyes red watery time also pressure sinuses go away always feeling tired lot trouble breathing also lot gunk throat lymph nodes swollen +5293,Common Cold,"My eyes are constantly red and runny. A persistent tightness in my sinuses has also been bothering me. I've been having a lot of difficulties breathing and constantly feel fatigued. In addition, I have a lot of throat mucus and inflamed lymph nodes.","eyes constantly red runny persistent tightness sinuses also bothering lot difficulties breathing constantly feel fatigued addition , lot throat mucus inflamed lymph nodes" +5294,Common Cold,"My nose feels quite clogged, and my eyes are constantly very red and runny. In addition, my chest hurts and I've been having a lot of breathing problems. In addition, my muscles feel quite painful, and I can't smell anything.","nose feels quite clogged , eyes constantly red runny addition , chest hurts lot breathing problems addition , muscles feel quite painful , smell anything" +5295,Common Cold,"My eyes are usually red and runny, and my nose is always stuffy. I've also been having difficulty breathing and my chest hurts. In addition, I can't smell anything and my muscles are quite painful.","eyes usually red runny , nose always stuffy also difficulty breathing chest hurts addition , smell anything muscles quite painful" +5296,Common Cold,"My eyes are usually red and inflamed, and I have the impression that something is clogging my sinuses. I've been coughing up a lot of gunk, and my chest hurts. I can't smell anything, and my muscles are aching.","eyes usually red inflamed , impression something clogging sinuses coughing lot gunk , chest hurts smell anything , muscles aching" +5297,Common Cold,"My eyes are always red and swollen, and I feel like there's something blocking my sinuses. I've been coughing up a lot of goo and my chest feels really heavy. I can't smell anything and my muscles are really sore","eyes always red swollen , feel like something blocking sinuses coughing lot goo chest feels really heavy smell anything muscles really sore" +5298,Common Cold,"I've been coughing a lot and feeling chilly and shivery. My nose has been quite clogged, and I am experiencing facial pressure. I also have a lot of phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching.","coughing lot feeling chilly shivery nose quite clogged , experiencing facial pressure also lot phlegm , coughing pains chest smell anything , muscles aching" +5299,Common Cold,"For days, I've had a nasty cough and cold. My sinuses are clogged, and I have facial pressure. I've also been creating phlegm, and coughing pains my chest. I can't smell anything, and my muscles are aching.","days , nasty cough cold sinuses clogged , facial pressure also creating phlegm , coughing pains chest smell anything , muscles aching" +5300,Common Cold,"I've had a nasty cough and cold for days. My sinuses are congested, and I have facial pressure. I've also been coughing up mucus, and it pains my chest. I can't smell anything and my muscles are aching.","nasty cough cold days sinuses congested , facial pressure also coughing mucus , pains chest smell anything muscles aching" +5301,Common Cold,"My cough and cold have been awful for days. My sinuses are congested, and my face is under strain. Additionally, I've been coughing up phlegm, and it hurts in my chest. I have no sense of smell, and my muscles hurt a lot.","cough cold awful days sinuses congested , face strain additionally , coughing phlegm , hurts chest sense smell , muscles hurt lot" +5302,Common Cold,"I'm coughing nonstop and I'm shivering terribly. I have a stuffy nose and my face is under strain. In addition, my throat is coughing up some nasty gunk, and my chest hurts. My muscles hurt a lot, and I can't smell anything.","coughing nonstop shivering terribly stuffy nose face strain addition , throat coughing nasty gunk , chest hurts muscles hurt lot , smell anything" +5303,Common Cold,I can't stop coughing and I feel really cold. My sinuses are all blocked and I have a lot of mucus. My chest hurts and I can't smell anything. My muscles are also really sore.,stop coughing feel really cold sinuses blocked lot mucus chest hurts smell anything muscles also really sore +5304,Common Cold,"I'm coughing nonstop and am really chilly. My mucus production is excessive, and my sinuses are fully clogged. I can't smell anything, and my chest hurts. My muscles are quite painful as well.","coughing nonstop really chilly mucus production excessive , sinuses fully clogged smell anything , chest hurts muscles quite painful well" +5305,Common Cold,"I can't stop coughing and I'm freezing. My sinuses are completely blocked, and I'm inundated with mucous. My chest hurts, and I'm unable to smell anything. My muscles are also really achy.","stop coughing freezing sinuses completely blocked , inundated mucous chest hurts , unable smell anything muscles also really achy" +5306,Common Cold,"I've been coughing a lot and finding it difficult to breathe. My throat hurts and I feel like I have a lot of phlegm trapped in my chest. My nose has been running a lot, and I've been feeling really congested.","coughing lot finding difficult breathe throat hurts feel like lot phlegm trapped chest nose running lot , feeling really congested" +5307,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Just feeling extremely run down and weak","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature feeling extremely run weak" +5308,Common Cold,"I've been experiencing severe weariness and a sickly sensation. My throat has been really painful and I've had a fairly severe cough. My nose has been quite stuffy, and I've had significant sinus pressure. I'm really miserable and extremely exhausted.","experiencing severe weariness sickly sensation throat really painful fairly severe cough nose quite stuffy , significant sinus pressure really miserable extremely exhausted" +5309,Common Cold,I've been feeling really sick and I've had a lot of fatigue. I've had a really bad cough and my throat has been really sore. I've had a lot of sinus pressure and my nose has been really congested. I just feel really run down and miserable.,feeling really sick lot fatigue really bad cough throat really sore lot sinus pressure nose really congested feel really run miserable +5310,Common Cold,"I've been quite exhausted and ill. My throat has been quite painful, and I've had a fairly nasty cough. I've got a lot of chills and a pretty high temperature. Simply put, I feel really run down and feeble.","quite exhausted ill throat quite painful , fairly nasty cough got lot chills pretty high temperature simply put , feel really run feeble" +5311,Common Cold,I've been really weary and ill. I've been suffering from a severe cough and sore throat. I've got a lot of chills and a pretty high temperature. I simply feel tired and run down.,really weary ill suffering severe cough sore throat got lot chills pretty high temperature simply feel tired run +5312,Common Cold,"I can't quit sneezing, and my nose is running. I'm also constantly chilly and exhausted, and I've been coughing a lot. My fever is also really high, well above usual.","quit sneezing , nose running also constantly chilly exhausted , coughing lot fever also really high , well usual" +5313,Common Cold,"I've been feeling awful, with a lot of congestion and a runny nose. I've been coughing a lot and having a lot of chest pain. My fever has been really high, and I've been experiencing severe muscular discomfort.","feeling awful , lot congestion runny nose coughing lot lot chest pain fever really high , experiencing severe muscular discomfort" +5314,Common Cold,"My neck is swollen, and I'm exhausted. My throat is scratchy, and my eyes are burning red. My nose is really clogged, and I am experiencing facial pressure. My chest hurts, and I'm unable to smell anything.","neck swollen , exhausted throat scratchy , eyes burning red nose really clogged , experiencing facial pressure chest hurts , unable smell anything" +5315,Common Cold,"I lack energy and feel like my neck is bloated. My eyes are red, and my throat feels scratchy. I have severe congestion in my nostrils, and my face is under pressure. I can't smell anything, and my chest hurts.","lack energy feel like neck bloated eyes red , throat feels scratchy severe congestion nostrils , face pressure smell anything , chest hurts" +5316,Common Cold,"I feel quite weak, and my lymph nodes are enlarged. My eyes are burning, and my throat hurts. My sinuses are under strain, and my nose is stuffy. I can't smell anything, and my chest hurts.","feel quite weak , lymph nodes enlarged eyes burning , throat hurts sinuses strain , nose stuffy smell anything , chest hurts" +5317,Common Cold,"I've had a terrible cough and cold for days. My face is tired and my sinuses are blocked. In addition, my chest hurts from the phlegm I've been coughing up. I can't smell, and my muscles are in terrible pain.","terrible cough cold days face tired sinuses blocked addition , chest hurts phlegm coughing smell , muscles terrible pain" +5318,Common Cold,"I have red, watery eyes all the time. My sinuses have also been bothered by a constant tightness. My breathing has been quite tough, and I've been feeling worn out all the time. My lymph nodes are irritated, and I also have a lot of throat mucous.","red , watery eyes time sinuses also bothered constant tightness breathing quite tough , feeling worn time lymph nodes irritated , also lot throat mucous" +5319,Common Cold,"I always get hot, puffy eyes and the feeling that something is obstructing my sinuses. My chest feels quite heavy, and I've been coughing up a lot of gunk. I have no sense of smell, and my muscles hurt a lot.","always get hot , puffy eyes feeling something obstructing sinuses chest feels quite heavy , coughing lot gunk sense smell , muscles hurt lot" +5320,Pneumonia,"I've been feeling really cold and tired lately, and I've been coughing a lot with chest pain. My heart is beating really fast too, and when I cough, the phlegm is kind of a rusty color.","feeling really cold tired lately , coughing lot chest pain heart beating really fast , cough , phlegm kind rusty color" +5321,Pneumonia,"I've been coughing a lot recently with chest pain and feeling incredibly chilly and exhausted. Additionally, my heart is thumping rapidly, and the phlegm I cough up has a reddish hue.","coughing lot recently chest pain feeling incredibly chilly exhausted additionally , heart thumping rapidly , phlegm cough reddish hue" +5322,Pneumonia,"I've been feeling really drained and cold, and I can't stop coughing. It hurts in my chest when I do, and my heart feels like it's racing. The mucus I'm coughing up is a gross brownish color.","feeling really drained cold , stop coughing hurts chest , heart feels like racing mucus coughing gross brownish color" +5323,Pneumonia,"I've been exhausted and chilly, and I can't stop coughing. When I do, it pains in my chest and makes my heart race. My coughing mucous has a disgusting brownish hue.","exhausted chilly , stop coughing , pains chest makes heart race coughing mucous disgusting brownish hue" +5324,Pneumonia,"I've been having chills and feeling exhausted, and I can't seem to shake this cough. My chest hurts when I cough, and my heart feels like it's going a million miles an hour. The phlegm I'm coughing up is a dirty rust color.","chills feeling exhausted , seem shake cough chest hurts cough , heart feels like going million miles hour phlegm coughing dirty rust color" +5325,Pneumonia,"I've been experiencing chills, feeling worn out, and I can't seem to get rid of this cough. When I cough, my chest aches and my heart feels as like it is beating a million miles per hour. I'm coughing up a nasty rust-colored phlegm.","experiencing chills , feeling worn , seem get rid cough cough , chest aches heart feels like beating million miles per hour coughing nasty rust colored phlegm" +5326,Pneumonia,"I've been feeling really weak and cold lately, and this cough won't go away. It hurts in my chest when I cough, and my heart is pounding. The mucus I'm bringing up is a rusty brown color.","feeling really weak cold lately , cough go away hurts chest cough , heart pounding mucus bringing rusty brown color" +5327,Pneumonia,"I've been having chills and feeling really worn out, and this cough won't go away. My chest hurts when I cough, and my heart is racing. The mucus I'm bringing up is a gross brownish color.","chills feeling really worn , cough go away chest hurts cough , heart racing mucus bringing gross brownish color" +5328,Pneumonia,"I've been experiencing chills, feel really exhausted, and my cough just won't go away. When I cough, my chest aches and my heart is pounding. It's a disgusting brownish hue, the mucous I'm coming up.","experiencing chills , feel really exhausted , cough go away cough , chest aches heart pounding disgusting brownish hue , mucous coming" +5329,Pneumonia,"I have a really high fever, and I'm having trouble breathing. I'm sweating a lot and feeling really cold and tired. My heart is beating really fast, and I have some brownish sputum","really high fever , trouble breathing sweating lot feeling really cold tired heart beating really fast , brownish sputum" +5330,Pneumonia,"I'm having problems breathing and have a very high fever. I'm perspiring a lot and experiencing extreme fatigue and chilly. My heart is racing, and I'm coughing up some brownish mucus.","problems breathing high fever perspiring lot experiencing extreme fatigue chilly heart racing , coughing brownish mucus" +5331,Pneumonia,"My temperature is very high, and I'm having a hard time breathing. I'm sweating profusely, and I'm shaking with chills. I'm really tired, and my heart is beating really fast. I also have some brownish phlegm coming up","temperature high , hard time breathing sweating profusely , shaking chills really tired , heart beating really fast also brownish phlegm coming" +5332,Pneumonia,"I'm having trouble breathing, and my fever is really high. I'm drenched in sweat and shivering from the chill. My heart is thumping rapidly, and I'm quite exhausted. Additionally, I'm about to have some brownish phlegm.","trouble breathing , fever really high drenched sweat shivering chill heart thumping rapidly , quite exhausted additionally , brownish phlegm" +5333,Pneumonia,"My fever is really high, and I'm having trouble catching my breath. I'm sweating a lot, feeling cold and tired, and my heart is beating really fast. I also have some brownish phlegm coming up.","fever really high , trouble catching breath sweating lot , feeling cold tired , heart beating really fast also brownish phlegm coming" +5334,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm.","really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm" +5335,Pneumonia,"I've been feeling really sick with a high fever, shortness of breath, sweating, chills, and extreme fatigue. My heart rate is rapid, and I've been coughing up a lot of brownish sputum.","feeling really sick high fever , shortness breath , sweating , chills , extreme fatigue heart rate rapid , coughing lot brownish sputum" +5336,Pneumonia,"With a high temperature, shortness of breath, sweating, chills, and intense exhaustion, I've been feeling quite poorly. I've been coughing up a lot of brownish phlegm and my pulse rate is racing.","high temperature , shortness breath , sweating , chills , intense exhaustion , feeling quite poorly coughing lot brownish phlegm pulse rate racing" +5337,Pneumonia,I'm having a really hard time catching my breath and I'm sweating a lot. I feel really sick and have a lot of mucus in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is dark and looks like rust.,really hard time catching breath sweating lot feel really sick lot mucus throat chest hurts heart racing mucus coughing dark looks like rust +5338,Pneumonia,"I'm sweating profusely and finding it difficult to catch my breath. I feel quite ill, and my throat is very mucous. My heart is pounding, and my chest aches. I'm coughing up thick mucous that resembles rust.","sweating profusely finding difficult catch breath feel quite ill , throat mucous heart pounding , chest aches coughing thick mucous resembles rust" +5339,Pneumonia,"I'm having a lot of trouble breathing and am really uneasy. I'm feeling unwell and am perspiring a lot. My chest hurts and I have a lot of mucus in my throat. My heart is racing, and the hue of the mucus I'm coughing up is off.","lot trouble breathing really uneasy feeling unwell perspiring lot chest hurts lot mucus throat heart racing , hue mucus coughing" +5340,Pneumonia,I can't seem to get enough air and I'm sweating a lot. I don't feel well and there's a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is reddish in color.,seem get enough air sweating lot feel well lot phlegm throat chest hurts heart racing mucus coughing reddish color +5341,Pneumonia,"I'm sweating profusely and can't seem to get enough air. My throat is filled with a lot of mucus, and I don't feel good. My heart is pounding, and my chest aches. I'm coughing up reddish-colored mucous.","sweating profusely seem get enough air throat filled lot mucus , feel good heart pounding , chest aches coughing reddish colored mucous" +5342,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is yellowish.,seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing yellowish +5343,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up brownish mucous.","dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing brownish mucous" +5344,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish.,hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish +5345,Pneumonia,"I'm having trouble breathing and am quite uneasy. My throat is filled with a lot of phlegm, and I'm perspiring a lot. My heart is racing, and my chest aches. I'm coughing up reddish mucous.","trouble breathing quite uneasy throat filled lot phlegm , perspiring lot heart racing , chest aches coughing reddish mucous" +5346,Pneumonia,I can't seem to catch my breath and I'm sweating a lot. I feel really sick and have a lot of phlegm in my throat. My chest hurts and my heart is racing. The mucus I'm coughing up is brownish and stringy.,seem catch breath sweating lot feel really sick lot phlegm throat chest hurts heart racing mucus coughing brownish stringy +5347,Pneumonia,"I'm dripping with perspiration and can't seem to catch my breath. My throat is filled with a lot of phlegm, and I feel awful. My heart is pounding, and my chest aches. I'm coughing up a stringy, brownish mucous.","dripping perspiration seem catch breath throat filled lot phlegm , feel awful heart pounding , chest aches coughing stringy , brownish mucous" +5348,Pneumonia,"I'm drenched with sweat and struggling to breathe. I don't feel well and have a lot of mucous in my throat. My chest aches, and my heart is racing. I'm coughing up mucus that is crimson in colour.","drenched sweat struggling breathe feel well lot mucous throat chest aches , heart racing coughing mucus crimson colour" +5349,Pneumonia,"I've been feeling very lousy, with a high temperature, shortness of breath, sweating, chills, and extreme weariness. My heart is beating, and I've been coughing up a lot of brownish phlegm.","feeling lousy , high temperature , shortness breath , sweating , chills , extreme weariness heart beating , coughing lot brownish phlegm" +5350,Pneumonia,"I have a really high fever, and I have problems breathing. My heart is racing quite quickly, I'm perspiring a lot, and I feel chilly and exhausted. I'm also about to cough out some brownish phlegm.","really high fever , problems breathing heart racing quite quickly , perspiring lot , feel chilly exhausted also cough brownish phlegm" +5351,Pneumonia,"My fever is really high, and I'm having difficulty breathing. I'm drenched in sweat and shivering with chills. I'm quite fatigued, and my heart is racing. I'm also expecting some brownish phlegm.","fever really high , difficulty breathing drenched sweat shivering chills quite fatigued , heart racing also expecting brownish phlegm" +5352,Pneumonia,"I've been getting chills, feeling tired, and I can't seem to shake this cough. My chest aches and my heart feels like it's racing at a million miles per hour when I cough. I'm coughing out a foul rusty phlegm.","getting chills , feeling tired , seem shake cough chest aches heart feels like racing million miles per hour cough coughing foul rusty phlegm" +5353,Pneumonia,I'm having a hard time breathing and I feel really uncomfortable. I'm sweating a lot and there's a lot of phlegm in my throat. My chest hurts and my heart is beating fast. The mucus I'm coughing up is brownish.,hard time breathing feel really uncomfortable sweating lot lot phlegm throat chest hurts heart beating fast mucus coughing brownish +5354,Pneumonia,"I'm having trouble breathing and am really uncomfortable. I'm sweating profusely and have a lot of mucus in my throat. My chest aches, and my heart is racing. I'm coughing up dark mucous.","trouble breathing really uncomfortable sweating profusely lot mucus throat chest aches , heart racing coughing dark mucous" +5355,Pneumonia,"I've got a high fever and can't seem to catch my breath. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm. My chest aches, and my heart has been racing rapidly.","got high fever seem catch breath sweating profusely generally feeling ill weak also quite thick black phlegm chest aches , heart racing rapidly" +5356,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark.","lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark" +5357,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm.","recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick black phlegm" +5358,Pneumonia,"Lately I've been experiencing chills, fatigue, a cough, a high fever, and difficulty breathing. I've been sweating a lot and just feeling really sick and weak. I've also had some phlegm that's been really thick and dark.","lately experiencing chills , fatigue , cough , high fever , difficulty breathing sweating lot feeling really sick weak also phlegm really thick dark" +5359,Pneumonia,"I've recently been suffering with chills, lethargy, a cough, a high temperature, and difficulties breathing. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and red phlegm.","recently suffering chills , lethargy , cough , high temperature , difficulties breathing sweating profusely generally feeling ill weak also quite thick red phlegm" +5360,Pneumonia,"I've had chills, lethargy, a cough, a high temperature, and difficulties breathing lately. I've been sweating profusely and generally feeling ill and weak. I've also had some quite thick and black phlegm.","chills , lethargy , cough , high temperature , difficulties breathing lately sweating profusely generally feeling ill weak also quite thick black phlegm" +5361,Pneumonia,"I've been having a lot of respiratory issues lately along with chills, exhaustion, a cough, and a high temperature. I've been sweating profusely and generally feeling ill and weak. My chest aches, and my heart has been racing rapidly.","lot respiratory issues lately along chills , exhaustion , cough , high temperature sweating profusely generally feeling ill weak chest aches , heart racing rapidly" +5362,Pneumonia,"I've been suffering with chills, tiredness, and a cough recently. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My chest aches, and my heart has been racing.","suffering chills , tiredness , cough recently sweating tremendously feeling overall unwell weak also thick , black phlegm chest aches , heart racing" +5363,Pneumonia,"I'm running a temperature and can't seem to catch my breath. I've been sweating tremendously and feeling overall unwell and weak. I've also had some thick, black phlegm. My heart has been beating frantically, and my chest hurts.","running temperature seem catch breath sweating tremendously feeling overall unwell weak also thick , black phlegm heart beating frantically , chest hurts" +5364,Pneumonia,"I'm drenched with sweat and can't seem to catch my breath. My throat is clogged with mucus, and I'm miserable. My heart is racing, and my chest aches. I'm coughing up a brownish stringy mucus.","drenched sweat seem catch breath throat clogged mucus , miserable heart racing , chest aches coughing brownish stringy mucus" +5365,Pneumonia,"I'm saturated with sweat and struggling to breathe. My throat is blocked with mucous, and I'm uncomfortable. My heart is racing, and my chest aches. I'm coughing up a darkish stringy mucous.","saturated sweat struggling breathe throat blocked mucous , uncomfortable heart racing , chest aches coughing darkish stringy mucous" +5366,Pneumonia,"I'm having a lot of problems breathing. I'm not feeling good, and I'm sweating a lot. I have a lot of mucous in my throat and my chest hurts. My breathing is laboured, and the phlegm I'm coughing up has an odd tint.","lot problems breathing feeling good , sweating lot lot mucous throat chest hurts breathing laboured , phlegm coughing odd tint" +5367,Pneumonia,"I have a lot of difficulty breathing. I don't feel well, and I'm perspiring a lot. My chest hurts, and I have a lot of mucus in my throat. I'm having trouble breathing, and the phlegm I'm coughing up has a strange hue.","lot difficulty breathing feel well , perspiring lot chest hurts , lot mucus throat trouble breathing , phlegm coughing strange hue" +5368,Pneumonia,"I've been coughing a lot and feeling incredibly chilly and exhausted. I have a pretty high fever, and it's difficult for me to breathe. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm.","coughing lot feeling incredibly chilly exhausted pretty high fever , difficult breathe perspiring lot generally feeling weak ill quite thick black phlegm" +5369,Pneumonia,"I've recently had chills, exhaustion, a cough, a high temperature, and breathing issues. I've been perspiring a lot and generally feeling weak and ill. I've had some quite thick and black phlegm. My heart has been racing quite quickly.","recently chills , exhaustion , cough , high temperature , breathing issues perspiring lot generally feeling weak ill quite thick black phlegm heart racing quite quickly" +5370,Dimorphic Hemorrhoids,"Constipation, discomfort with bowel motions, and anus pain have all recently been bothering me. My anus has been quite inflamed, and my stool has been extremely bloody.","constipation , discomfort bowel motions , anus pain recently bothering anus quite inflamed , stool extremely bloody" +5371,Dimorphic Hemorrhoids,"Lately I've been experiencing constipation, pain during bowel movements, and pain in my anus. My stool has also been really bloody and my anus has been really irritated.","lately experiencing constipation , pain bowel movements , pain anus stool also really bloody anus really irritated" +5372,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. My bowel movements have been extremely uncomfortable and difficult for me to have.  My anus has been quite inflamed, and my stool has been extremely bloody.","recently , lot difficulty using restroom bowel movements extremely uncomfortable difficult anus quite inflamed , stool extremely bloody" +5373,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately. It's really painful when I do, and there's been some blood in my stool. I've also been having some pain and irritation around my anus.","lot trouble going bathroom lately really painful , blood stool also pain irritation around anus" +5374,Dimorphic Hemorrhoids,"Recently, I've been having a lot of difficulty using the restroom. When I do, it hurts a lot, and I've noticed some blood in my stool. Around my anus, I've also been experiencing some discomfort and itching.","recently , lot difficulty using restroom , hurts lot , noticed blood stool around anus , also experiencing discomfort itching" +5375,Dimorphic Hemorrhoids,"Lately I've been really constipated, and it's been really painful when I do go to the bathroom. I've also noticed some blood in my stool, and my anus has been really irritated.","lately really constipated , really painful go bathroom also noticed blood stool , anus really irritated" +5376,Dimorphic Hemorrhoids,"I've been suffering from severe constipation lately, and whenever I do go to the restroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool.","suffering severe constipation lately , whenever go restroom , hurts lot aside , anus really itchy , observed blood stool" +5377,Dimorphic Hemorrhoids,"I've been having a lot of trouble going to the bathroom lately, and it's been really painful. I've also noticed that my stool has been bloody and my anus has been really irritated.","lot trouble going bathroom lately , really painful also noticed stool bloody anus really irritated" +5378,Dimorphic Hemorrhoids,"Recently, I've been having a lot of discomfort and difficulty using the restroom. Additionally, I've noticed that my anus has been quite sore and that my stool has been bloody.","recently , lot discomfort difficulty using restroom additionally , noticed anus quite sore stool bloody" +5379,Dimorphic Hemorrhoids,"I've been terribly constipated lately, and when I do go to the bathroom, it hurts a lot. Aside from that, my anus has been really itchy, and I've observed some blood in my stool.","terribly constipated lately , go bathroom , hurts lot aside , anus really itchy , observed blood stool" +5380,Dimorphic Hemorrhoids,"I've been quite constipated lately, and going to the restroom has been excruciatingly uncomfortable. I've also observed blood in my stool, and my anus has been aggravated.","quite constipated lately , going restroom excruciatingly uncomfortable also observed blood stool , anus aggravated" +5381,Dimorphic Hemorrhoids,I've been having a lot of trouble going to the bathroom lately. It's been really painful and I've been experiencing pain in my anus. My stool has also been bloody and my anus has been really irritated.,lot trouble going bathroom lately really painful experiencing pain anus stool also bloody anus really irritated +5382,Dimorphic Hemorrhoids,"I've been having a lot of problems using the restroom recently. It's been excruciatingly uncomfortable, and I've been feeling agony in my anus. My stool has been bloody as well, and my anus has been really inflamed.","lot problems using restroom recently excruciatingly uncomfortable , feeling agony anus stool bloody well , anus really inflamed" +5383,Dimorphic Hemorrhoids,"I've been having trouble going to the restroom recently. When I try to go, it's really uncomfortable, and my anus hurts a lot. I've also had some blood in my stool, and my anus has been really uncomfortable.","trouble going restroom recently try go , really uncomfortable , anus hurts lot also blood stool , anus really uncomfortable" +5384,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful when I try to go and my anus hurts a lot. There's also been some blood in my stool and my anus has been really itchy.,really hard time going bathroom lately really painful try go anus hurts lot also blood stool anus really itchy +5385,Dimorphic Hemorrhoids,"I've been experiencing problems using the restroom recently. It's quite difficult for me to go, and it hurts when I do. I've also been experiencing buttock soreness and bloody stools. My anus has also been quite itching and sensitive.","experiencing problems using restroom recently quite difficult go , hurts also experiencing buttock soreness bloody stools anus also quite itching sensitive" +5386,Dimorphic Hemorrhoids,"Recently, I've been having problems using the restroom. Going is incredibly difficult, and doing so hurts. In addition, I've been experiencing some butt soreness, and my stools have been bloody. My anus has also been quite itching and aggravated.","recently , problems using restroom going incredibly difficult , hurts addition , experiencing butt soreness , stools bloody anus also quite itching aggravated" +5387,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5388,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt.","since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt" +5389,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5390,Dimorphic Hemorrhoids,"Since I've been constipated, using the restroom has been quite challenging. When I do go, it aches and I've had blood in my stool. My anus has been quite itchy and irritating, and I've also been experiencing some discomfort in my butt.","since constipated , using restroom quite challenging go , aches blood stool anus quite itchy irritating , also experiencing discomfort butt" +5391,Dimorphic Hemorrhoids,"I've been constipated and it's really hard to go to the bathroom. When I do go, it hurts and my stool has been bloody. I've also been having some pain in my butt and my anus has been really itchy and irritated.","constipated really hard go bathroom go , hurts stool bloody also pain butt anus really itchy irritated" +5392,Dimorphic Hemorrhoids,"Constipation has made it quite difficult for me to use the restroom. My stool has been bloody when I do go, and it hurts. In addition, my anus has been quite itchy and inflamed, and I've been experiencing some butt soreness.","constipation made quite difficult use restroom stool bloody go , hurts addition , anus quite itchy inflamed , experiencing butt soreness" +5393,Dimorphic Hemorrhoids,"It's incredibly difficult for me to use the restroom, and when I do, it hurts a lot. My stools have been bloody, and my butt has been hurting. My anus has also been quite itching and aggravated.","incredibly difficult use restroom , , hurts lot stools bloody , butt hurting anus also quite itching aggravated" +5394,Dimorphic Hemorrhoids,I'm having a lot of trouble going to the bathroom and it's really painful when I do. My stool has been bloody and I've had some pain in my butt. My anus has been really itchy and irritated too.,lot trouble going bathroom really painful stool bloody pain butt anus really itchy irritated +5395,Dimorphic Hemorrhoids,I've been having trouble going to the bathroom. It's been really hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,trouble going bathroom really hard go hurts anus really sore bleeding go really painful really uncomfortable +5396,Dimorphic Hemorrhoids,"I've been finding it challenging to use the restroom. Going has been quite difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","finding challenging use restroom going quite difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5397,Dimorphic Hemorrhoids,"I've been having difficulty using the restroom. It's been difficult to go, and it aches when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","difficulty using restroom difficult go , aches anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5398,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable +5399,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5400,Dimorphic Hemorrhoids,"Constipation and soreness with bowel motions have been bothering me lately. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","constipation soreness bowel motions bothering lately go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5401,Dimorphic Hemorrhoids,I've been having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5402,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5403,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5404,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5405,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5406,Dimorphic Hemorrhoids,"My bowel motions are giving me a lot of problems right now. Going is difficult, and going hurts when I do it. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions giving lot problems right going difficult , going hurts go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5407,Dimorphic Hemorrhoids,Lately I've been experiencing constipation and pain during bowel movements. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lately experiencing constipation pain bowel movements anus really sore bleeding go really painful really uncomfortable +5408,Dimorphic Hemorrhoids,"I've been having constipation and bowel motions that hurt recently. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","constipation bowel motions hurt recently go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5409,Dimorphic Hemorrhoids,"I've recently been suffering from constipation and digestive discomfort. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","recently suffering constipation digestive discomfort anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5410,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5411,Dimorphic Hemorrhoids,I'm having a lot of trouble with my bowel movements lately. It's hard to go and it hurts when I do. My anus is really sore and it's been bleeding when I go. It's really painful and I'm really uncomfortable.,lot trouble bowel movements lately hard go hurts anus really sore bleeding go really painful really uncomfortable +5412,Dimorphic Hemorrhoids,"My bowel motions have been really difficult for me recently. Going is difficult, and it aches when I do. When I go, my anus bleeds and is really uncomfortable. I'm in a lot of discomfort and it hurts extremely bad.","bowel motions really difficult recently going difficult , aches go , anus bleeds really uncomfortable lot discomfort hurts extremely bad" +5413,Dimorphic Hemorrhoids,"I've been experiencing a lot of problems with my bowel motions recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","experiencing lot problems bowel motions recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5414,Dimorphic Hemorrhoids,"I've been experiencing a lot of bowel movement issues recently. It's difficult to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's really painful and I'm really uncomfortable.","experiencing lot bowel movement issues recently difficult go , hurts anus quite painful , bleeding whenever go really painful really uncomfortable" +5415,Dimorphic Hemorrhoids,"I've been getting a lot of bowel issues recently. It's difficult for me to go, and it hurts when I do. My anus is quite painful, and it has been bleeding whenever I go. It's excruciatingly painful, and I'm quite uneasy.","getting lot bowel issues recently difficult go , hurts anus quite painful , bleeding whenever go excruciatingly painful , quite uneasy" +5416,Dimorphic Hemorrhoids,I've been having a really hard time going to the bathroom lately. It's really painful and I'm only able to go every few days. There's also a lot of pain in my anus and around that area. My stool has been really bloody and my anus feels really irritated.,really hard time going bathroom lately really painful able go every days also lot pain anus around area stool really bloody anus feels really irritated +5417,Dimorphic Hemorrhoids,"I've been finding it incredibly difficult recently to use the restroom. I can only go sporadically because it hurts so much. My anus and the surrounding region are also quite painful. My anus feels really aggravated, and my stool has been extremely bloody.","finding incredibly difficult recently use restroom go sporadically hurts much anus surrounding region also quite painful anus feels really aggravated , stool extremely bloody" +5418,Dimorphic Hemorrhoids,I'm having a lot of trouble with constipation and pain while trying to go to the bathroom. It hurts a lot in my anus and the area around it. My stool has been bloody and my anus is really irritated.,lot trouble constipation pain trying go bathroom hurts lot anus area around stool bloody anus really irritated +5419,Dimorphic Hemorrhoids,"Constipation and bowel movement discomfort have been very common for me lately. The region surrounding my anus and I both ache a lot. My anus is really itchy, and my stool has been bloody.","constipation bowel movement discomfort common lately region surrounding anus ache lot anus really itchy , stool bloody" +5420,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I've been experiencing a lot of stiffness when I walk about and my joints have been swollen. Walking has also been really uncomfortable.","muscles feeling really weak , neck extremely tight experiencing lot stiffness walk joints swollen walking also really uncomfortable" +5421,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and I've been having a lot of stiffness when I move around. It's also been really painful to walk.,feeling really weak muscles neck really stiff joints swelling lot stiffness move around also really painful walk +5422,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen and I've been experiencing a lot of stiffness when I move around. Walking has also been excruciatingly uncomfortable.","muscles quite weak , neck really stiff joints swollen experiencing lot stiffness move around walking also excruciatingly uncomfortable" +5423,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's been hard to move around. Walking has been really painful.,feeling really weak muscles neck really stiff joints swelling hard move around walking really painful +5424,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult to move about. Walking has been excruciatingly uncomfortable.","muscles really weak , neck extremely stiff joints swollen , making difficult move walking excruciatingly uncomfortable" +5425,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. It has been difficult to move about since my joints have swollen. It has been really uncomfortable to walk.","experiencing severe muscular weakness , neck really stiff difficult move since joints swollen really uncomfortable walk" +5426,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. My joints have swollen, making it difficult for me to move. It has hurt a lot to walk.","muscles feeling really weak , neck extremely tight joints swollen , making difficult move hurt lot walk" +5427,Arthritis,"My neck has been so tense, and I've been feeling like my muscles are incredibly weak. I have trouble moving since my joints have enlarged. To walk has been quite painful.","neck tense , feeling like muscles incredibly weak trouble moving since joints enlarged walk quite painful" +5428,Arthritis,"My neck has been really stiff, and I've had terrible muscle weakness. Due to the swelling in my joints, it has been challenging to move about. Walking has been quite unpleasant.","neck really stiff , terrible muscle weakness due swelling joints , challenging move walking quite unpleasant" +5429,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles lately neck really stiff joints swelling hard move around without feeling stiff walking really painful +5430,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","recently , muscles felt quite weak , neck really tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5431,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable.","experiencing muscular weakness stiffness neck recently joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable" +5432,Arthritis,"Recently, I've been suffering neck muscle weakness and stiffness. My joints have enlarged and it is difficult for me to walk without feeling stiff. Walking has also been excruciatingly uncomfortable.","recently , suffering neck muscle weakness stiffness joints enlarged difficult walk without feeling stiff walking also excruciatingly uncomfortable" +5433,Arthritis,"Lately, my neck has been tight and my muscles have been weakened. I have swelling joints that make it difficult for me to move about without getting stiff. It has also been agonisingly painful to walk.","lately , neck tight muscles weakened swelling joints make difficult move without getting stiff also agonisingly painful walk" +5434,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5435,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5436,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without becoming stiff. Walking has also been excruciatingly uncomfortable.","muscles quite weak , neck really stiff joints swollen , making difficult walk without becoming stiff walking also excruciatingly uncomfortable" +5437,Arthritis,"My muscles have been really weak, and my neck has been extremely stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable.","muscles really weak , neck extremely stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable" +5438,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to move without becoming stiff. Walking has been quite uncomfortable as well.","muscles quite weak , neck really stiff joints swollen , making difficult move without becoming stiff walking quite uncomfortable well" +5439,Arthritis,"My neck has been really tight, and my muscles have been rather weak. I have swelling joints that make it hard for me to move without getting stiff. Additionally, walking has been quite unpleasant.","neck really tight , muscles rather weak swelling joints make hard move without getting stiff additionally , walking quite unpleasant" +5440,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5441,Arthritis,"My muscles have been feeling really weak, and my neck has been extremely tight. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","muscles feeling really weak , neck extremely tight swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5442,Arthritis,My neck has been extremely tight and my muscles have been feeling extremely weak. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable.,neck extremely tight muscles feeling extremely weak difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable +5443,Arthritis,"My neck has been extremely stiff and my muscles have been extremely weak. As a result of swelling in my joints, I find it difficult to move around without feeling stiff. Additionally, walking has been extremely uneasy.","neck extremely stiff muscles extremely weak result swelling joints , find difficult move around without feeling stiff additionally , walking extremely uneasy" +5444,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable" +5445,Arthritis,"My neck has been extremely tight and my muscles have been feeling extremely weak. My joints have been swollen and I've been walking around with a lot of stiffness. Additionally, walking has been extremely uneasy.","neck extremely tight muscles feeling extremely weak joints swollen walking around lot stiffness additionally , walking extremely uneasy" +5446,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grown, it's hard for me to walk without getting stiff. Additionally, walking has been extremely uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grown , hard walk without getting stiff additionally , walking extremely uncomfortable" +5447,Arthritis,I've been feeling really weak in my muscles and my neck has been really stiff. My joints have been swelling up and it's hard for me to move around without feeling stiff. Walking has been really painful too.,feeling really weak muscles neck really stiff joints swelling hard move around without feeling stiff walking really painful +5448,Arthritis,"My muscles have been quite weak, and my neck has been really stiff. My joints have swollen, making it difficult for me to walk about without feeling stiff. Walking has also been really uncomfortable.","muscles quite weak , neck really stiff joints swollen , making difficult walk without feeling stiff walking also really uncomfortable" +5449,Arthritis,"I've been experiencing severe muscular weakness, and my neck has been really stiff. I have swollen joints and find it difficult to move about without becoming stiff. It has also been really uncomfortable to walk.","experiencing severe muscular weakness , neck really stiff swollen joints find difficult move without becoming stiff also really uncomfortable walk" +5450,Arthritis,I've been feeling really weak in my muscles lately and my neck has been really stiff. My joints have been swollen and it's hard for me to move around. It's also been painful to walk.,feeling really weak muscles lately neck really stiff joints swollen hard move around also painful walk +5451,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. Swollen joints make it difficult for me to move around. Walking has also been difficult.,feeling truly frail muscles recently neck truly solid swollen joints make difficult move around walking also difficult +5452,Arthritis,"Recently, my muscles have felt quite weak, and my neck has been really tight. I have swollen joints, making it difficult for me to move. Walking has also been painful.","recently , muscles felt quite weak , neck really tight swollen joints , making difficult move walking also painful" +5453,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have enlarged, making it difficult for me to move. Walking has also been difficult.","experiencing muscular weakness stiffness neck recently joints enlarged , making difficult move walking also difficult" +5454,Arthritis,I've been feeling truly frail in my muscles recently and my neck has been truly solid. It has been difficult for me to move around because my joints have been swelling. Walking has also been extremely painful.,feeling truly frail muscles recently neck truly solid difficult move around joints swelling walking also extremely painful +5455,Arthritis,"My muscles have been feeling feeble recently, but my neck has been rock solid. My joints have become swollen, making it difficult for me to move about. Walking has been quite uncomfortable as well.","muscles feeling feeble recently , neck rock solid joints become swollen , making difficult move walking quite uncomfortable well" +5456,Arthritis,"My muscles have been feeling rather weak lately, but my neck has been really strong. My joints have swollen, making it challenging for me to move about. It has also been excruciatingly difficult to walk.","muscles feeling rather weak lately , neck really strong joints swollen , making challenging move also excruciatingly difficult walk" +5457,Arthritis,My neck has been extremely tight and my muscles have felt quite weak recently. It is difficult for me to move around without becoming stiff due to my swollen joints. Walking has also been extremely uncomfortable.,neck extremely tight muscles felt quite weak recently difficult move around without becoming stiff due swollen joints walking also extremely uncomfortable +5458,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of Pine Tree State to run whereas not getting stiff. additionally, walking has been terribly uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf pine tree state run whereas getting stiff additionally , walking terribly uncomfortable" +5459,Arthritis,"I've been experiencing muscular weakness and stiffness in my neck recently. My joints have swollen, creating it troublesome on behalf of me to run regarding while not changing into stiff. Walking has additionally been agonizingly uncomfortable.","experiencing muscular weakness stiffness neck recently joints swollen , creating troublesome behalf run regarding changing stiff walking additionally agonizingly uncomfortable" +5460,Arthritis,"My muscles are quite weak, and my neck has been very stiff. My joints have swollen, creating it troublesome on behalf of me to steer concerning while not feeling stiff. Walking has conjointly been very uncomfortable.","muscles quite weak , neck stiff joints swollen , creating troublesome behalf steer concerning feeling stiff walking conjointly uncomfortable" +5461,Arthritis,"My muscles area unit quite weak, and my neck has been terribly stiff. My joints have swollen, making it hard on behalf of Maine to steer regarding whereas not feeling stiff. Walking has put together been terribly uncomfortable.","muscles area unit quite weak , neck terribly stiff joints swollen , making hard behalf maine steer regarding whereas feeling stiff walking put together terribly uncomfortable" +5462,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's onerous on behalf of me to run while not obtaining stiff. in addition, walking has been extraordinarily uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , onerous behalf run obtaining stiff addition , walking extraordinarily uncomfortable" +5463,Arthritis,My neck has been very tight and my muscles have felt quite weak recently. it's tough on behalf of me to maneuver around while not changing into stiff thanks to my swollen joints. Walking has additionally been very uncomfortable.,neck tight muscles felt quite weak recently tough behalf maneuver around changing stiff thanks swollen joints walking additionally uncomfortable +5464,Arthritis,"Recently, when I try to walk about, I have stiffness, a stiff neck, swollen joints, and muscular weakness. Walking has also been really uncomfortable.","recently , try walk , stiffness , stiff neck , swollen joints , muscular weakness walking also really uncomfortable" +5465,Arthritis,"Lately i have been experiencing muscle weakness, a stiff neck, swelling joints, and stiffness after I attempt to move around. it is also been very painful to steer.","lately experiencing muscle weakness , stiff neck , swelling joints , stiffness attempt move around also painful steer" +5466,Arthritis,"Recently, the muscles in my neck have become tight and weak. It's difficult for me to run now since my joints are older without getting tight. The act of walking has also been quite unpleasant.","recently , muscles neck become tight weak difficult run since joints older without getting tight act walking also quite unpleasant" +5467,Arthritis,"I've been experiencing stiffness and weakness in my neck muscles recently. Since my joints have grownup, it's heavy on behalf of American state to run whereas not getting stiff. additionally, walking has been very uncomfortable.","experiencing stiffness weakness neck muscles recently since joints grownup , heavy behalf american state run whereas getting stiff additionally , walking uncomfortable" +5468,Arthritis,"Recently, the muscles in my neck have become tight and weak. Since my joints have matured, it is difficult for the American government for me to run without becoming stiff. Walking has also been quite unpleasant.","recently , muscles neck become tight weak since joints matured , difficult american government run without becoming stiff walking also quite unpleasant" +5469,Arthritis,"Lately, I've been having stiffness and weakness in my neck muscles. Since my joints have matured, it is difficult for the American state to operate without becoming stiff. Furthermore, walking has been quite painful.","lately , stiffness weakness neck muscles since joints matured , difficult american state operate without becoming stiff furthermore , walking quite painful" +5470,Acne,I've been having a really bad rash on my skin lately. It's full of pus-filled pimples and blackheads. My skin has also been scurring a lot.,really bad rash skin lately full pus filled pimples blackheads skin also scurring lot +5471,Acne,I've just developed a severe rash on my skin. It's clogged with pus-filled pimples and blackheads. My skin has also been quite sensitive.,developed severe rash skin clogged pus filled pimples blackheads skin also quite sensitive +5472,Acne,"My skin has been breaking out in a terrible rash lately. Blackheads and pus-filled pimples abound on it. Additionally, my skin has been scurring a lot.","skin breaking terrible rash lately blackheads pus filled pimples abound additionally , skin scurring lot" +5473,Acne,"I've recently been experiencing a severe skin rash. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been scurring a lot.","recently experiencing severe skin rash blackheads pimples packed pus everywhere additionally , skin scurring lot" +5474,Acne,I've been having a very unhealthy rash on my skin latterly. It's filled with pus-filled pimples and blackheads. My skin has additionally been scurring heaps.,unhealthy rash skin latterly filled pus filled pimples blackheads skin additionally scurring heaps +5475,Acne,My skin has just acquired a nasty rash. It's full of pus-filled pimples and blackheads. My skin has been really sensitive as well.,skin acquired nasty rash full pus filled pimples blackheads skin really sensitive well +5476,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive.","nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive" +5477,Acne,"I recently experienced a severe skin rash. Blackheads and pimples filled with pus are clogging it. Additionally, my skin has been quite irritated.","recently experienced severe skin rash blackheads pimples filled pus clogging additionally , skin quite irritated" +5478,Acne,My skin has recently been severely rashy. Blackheads and pus-filled pimples have blocked it. My skin has been quite delicate as well.,skin recently severely rashy blackheads pus filled pimples blocked skin quite delicate well +5479,Acne,Lately I've been experiencing a skin rash with a lot of pus-filled pimples and blackheads. My skin has also been scurring a lot.,lately experiencing skin rash lot pus filled pimples blackheads skin also scurring lot +5480,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot.","skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot" +5481,Acne,My skin has now developed a revolting rash. There are pus-filled pimples and blackheads everywhere. My skin has also been really sensitive.,skin developed revolting rash pus filled pimples blackheads everywhere skin also really sensitive +5482,Acne,"My skin has developed a horrible rash. There are blackheads and pus-filled pimples everywhere. Furthermore, my skin has been exceedingly sensitive.","skin developed horrible rash blackheads pus filled pimples everywhere furthermore , skin exceedingly sensitive" +5483,Acne,"A nasty rash has just appeared on my skin. Blackheads and pimples packed with pus are everywhere. Additionally, my skin has been extremely sensitive.","nasty rash appeared skin blackheads pimples packed pus everywhere additionally , skin extremely sensitive" +5484,Acne,My skin has simply nonheritable a nasty rash. It's packed with pus-filled pimples and blackheads. My skin has been very sensitive moreover.,skin simply nonheritable nasty rash packed pus filled pimples blackheads skin sensitive moreover +5485,Acne,"My skin has developed a terrible rash that is not inherited. It has a lot of blackheads and pus-filled pimples. Furthermore, my skin has been exceedingly sensitive.","skin developed terrible rash inherited lot blackheads pus filled pimples furthermore , skin exceedingly sensitive" +5486,Acne,"Recently, I've been experiencing a lot of acne breakouts with pimples that contain pus. I've also been struggling with blackheads.","recently , experiencing lot acne breakouts pimples contain pus also struggling blackheads" +5487,Acne,I woke up this morning and found that I have a really nasty rash all over my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,woke morning found really nasty rash skin ton blackheads pimples filled pus skin also really scurrying +5488,Acne,I've been noticing a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,noticing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5489,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying +5490,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5491,Acne,I woke up this morning to find a really nasty rash on my skin. There are a ton of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,woke morning find really nasty rash skin ton blackheads pimples filled pus skin also really scurrying +5492,Acne,I've been struggling with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,struggling really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5493,Acne,I just developed a really nasty rash on my skin. There are tons of blackheads and pimples that are filled with pus. My skin has also been really scurrying.,developed really nasty rash skin tons blackheads pimples filled pus skin also really scurrying +5494,Acne,I've been dealing with a really nasty rash on my skin lately. It's covered in blackheads and pimples that are packed with pus. My skin has also been really scurrying.,dealing really nasty rash skin lately covered blackheads pimples packed pus skin also really scurrying +5495,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying everywhere.,recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying everywhere +5496,Acne,I recently had a horrible rash on my skin. There are several blackheads and pus-filled pimples. My skin has also been moving around a lot.,recently horrible rash skin several blackheads pus filled pimples skin also moving around lot +5497,Acne,"This morning when I woke up, I discovered that I have an extremely bad rash all over my body. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot.","morning woke , discovered extremely bad rash body several pus filled pimples blackheads around skin also moving around lot" +5498,Acne,I awoke this morning to see that I had a horrible rash all over my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about.,awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying +5499,Acne,I've just developed a skin rash with several pus-filled pimples and blackheads. My skin has also been quite sensitive.,developed skin rash several pus filled pimples blackheads skin also quite sensitive +5500,Acne,"A skin rash with several pus-filled pimples and blackheads has been bothering me lately. Additionally, my skin has been scurring a lot.","skin rash several pus filled pimples blackheads bothering lately additionally , skin scurring lot" +5501,Acne,"I woke up this morning to find that I have a terrible rash all over my body. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been changing a lot.","woke morning find terrible rash body blackheads pus filled pimples place additionally , skin changing lot" +5502,Acne,"When I awoke this morning, I realised that I had a severe rash all over my body. There are many pus-filled pimples and blackheads all over the place. My skin has also been scurring a lot.","awoke morning , realised severe rash body many pus filled pimples blackheads place skin also scurring lot" +5503,Acne,I've recently developed a terrible rash on my skin. It's riddled with blackheads and pus-filled pimples. My skin has also been scurrying about.,recently developed terrible rash skin riddled blackheads pus filled pimples skin also scurrying +5504,Acne,I awoke this morning to see a horrible rash on my skin. There are several blackheads and pimples loaded with pus. My skin has also been scurrying about.,awoke morning see horrible rash skin several blackheads pimples loaded pus skin also scurrying +5505,Acne,"This morning when I woke up, I discovered an extremely bad rash on my skin. There are several pus-filled pimples and blackheads all around. My skin has also been moving around a lot.","morning woke , discovered extremely bad rash skin several pus filled pimples blackheads around skin also moving around lot" +5506,Acne,I've recently been battling a pretty itchy rash on my skin. There are pus-filled pimples and blackheads all over it. My skin has also been scurring a lot.,recently battling pretty itchy rash skin pus filled pimples blackheads skin also scurring lot +5507,Acne,"This morning, I realized that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot.","morning , realized major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot" +5508,Acne,"I woke up today to find that I had a major rash all over my body. There are lots of pimples filled with pus and blackheads everywhere, and my skin has been scurrying a lot.","woke today find major rash body lots pimples filled pus blackheads everywhere , skin scurrying lot" +5509,Acne,"I woke up this morning to find that I had a major rash all over my body. It's covered in pus-filled pimples and blackheads, and my skin has been scurrying a lot","woke morning find major rash body covered pus filled pimples blackheads , skin scurrying lot" +5510,Acne,"This morning, I saw a large rash all over my body. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot.","morning , saw large rash body lot pus filled pimples blackheads face , skin scurrying lot" +5511,Acne,"I discovered that I had a significant rash all over my body this morning. Blackheads and pus-filled pimples are proliferating, and my skin has been scurrying a lot.","discovered significant rash body morning blackheads pus filled pimples proliferating , skin scurrying lot" +5512,Acne,"Yesterday, I noticed an enormous rash all over my skin. There are a lot of pus-filled pimples and blackheads all over my face, and my skin has been scurrying a lot.","yesterday , noticed enormous rash skin lot pus filled pimples blackheads face , skin scurrying lot" +5513,Acne,"I discovered a huge rash on my skin yesterday. My face is covered of blackheads and pus-filled pimples, and my skin has been crawling a lot.","discovered huge rash skin yesterday face covered blackheads pus filled pimples , skin crawling lot" +5514,Acne,"My skin has a horrible rash that is absolutely nonheritable. Blackheads and pus-filled pimples abound on it. In addition, my skin has been quite sensitive.","skin horrible rash absolutely nonheritable blackheads pus filled pimples abound addition , skin quite sensitive" +5515,Acne,"My skin has merely developed an uninherited rash. It has a lot of pus-filled pimples and blackheads. Furthermore, my skin has been quite sensitive.","skin merely developed uninherited rash lot pus filled pimples blackheads furthermore , skin quite sensitive" +5516,Acne,"When I awoke this morning, I saw a severe rash across my skin. There are many pus-filled pimples and blackheads all over the place. My skin has also been shifting a lot.","awoke morning , saw severe rash across skin many pus filled pimples blackheads place skin also shifting lot" +5517,Acne,"When I woke up this morning, I saw a terrible rash on my skin. Blackheads and pus-filled pimples are all over the place. Additionally, my skin has been shifting a lot.","woke morning , saw terrible rash skin blackheads pus filled pimples place additionally , skin shifting lot" +5518,Acne,"I've recently struggled with a really irritating skin rash. There are blackheads and pus-filled pimples all over it. Additionally, my skin has been scurring a lot.","recently struggled really irritating skin rash blackheads pus filled pimples additionally , skin scurring lot" +5519,Acne,I've recently been dealing with an itching rash on my skin. It's covered in pus-filled pimples and blackheads. My skin has also been quite sensitive.,recently dealing itching rash skin covered pus filled pimples blackheads skin also quite sensitive +5520,Bronchial Asthma,"I have been feeling extremely tired and weak, and I've also been coughing a lot with difficulty breathing. My fever is very high, and I'm producing a lot of mucus when I cough.","feeling extremely tired weak , also coughing lot difficulty breathing fever high , producing lot mucus cough" +5521,Bronchial Asthma,"I've got a cough that won't go away, and I'm exhausted. I've been coughing up thick mucous and my fever is also pretty high.","got cough go away , exhausted coughing thick mucous fever also pretty high" +5522,Bronchial Asthma,"I have a persistent cough and have been feeling quite fatigued. My fever is through the roof, and I'm having trouble breathing. When I cough, I also cough up a lot of mucous.","persistent cough feeling quite fatigued fever roof , trouble breathing cough , also cough lot mucous" +5523,Bronchial Asthma,"I've been having issues with exhaustion, a dry cough, and breathing. I have a very high fever and have been coughing up a lot of thick, mucoid phlegm.","issues exhaustion , dry cough , breathing high fever coughing lot thick , mucoid phlegm" +5524,Bronchial Asthma,"I feel really fatigued and weak, and I have a bad cough. My fever is really high, and my breathing has become shallow. When I cough, a lot of saliva comes out as well.","feel really fatigued weak , bad cough fever really high , breathing become shallow cough , lot saliva comes well" +5525,Bronchial Asthma,"I've had a lot of sleepiness, a cough that refuses to go away, and breathing difficulty. I've been coughing up a lot of thick, mucoid saliva and have a high fever.","lot sleepiness , cough refuses go away , breathing difficulty coughing lot thick , mucoid saliva high fever" +5526,Bronchial Asthma,"doctor, i have been having high fever since past few days , saliva also became thick , dry cough , weakness also seen","doctor , high fever since past days , saliva also became thick , dry cough , weakness also seen" +5527,Bronchial Asthma,"I have a cough that has continued for days, and I feel really weak and tired. My fever is high, and my breath has become strained. When I cough, I also generate a lot of mucus.","cough continued days , feel really weak tired fever high , breath become strained cough , also generate lot mucus" +5528,Bronchial Asthma,"Mom, Dad, I've been feeling really tired and weak lately, and I've had this cough that just won't go away. It's been hard for me to catch my breath, and my fever has been really high. When I cough, I've been producing a lot of mucus.","mom , dad , feeling really tired weak lately , cough go away hard catch breath , fever really high cough , producing lot mucus" +5529,Bronchial Asthma,"Hey Mom, Hey Dad, I've been feeling really exhausted lately and have had this persistent cough. My breathing has become shallow, and my fever is very high. I've also been coughing up a lot of thick, mucoid sputum","hey mom , hey dad , feeling really exhausted lately persistent cough breathing become shallow , fever high also coughing lot thick , mucoid sputum" +5530,Bronchial Asthma,"Recently, I've felt quite weak and exhausted, and I've also had a cough that simply won't go away. My fever has been really high, and it has been challenging for me to catch my breath. I've been making a lot of mucous when I cough.","recently , felt quite weak exhausted , also cough simply go away fever really high , challenging catch breath making lot mucous cough" +5531,Bronchial Asthma,"I've felt terribly weak and drained, and I've also had a cough that that won't go away. My fever has been exceptionally high, and it has been challenging to try to catch my breath. I've been creating a lot of mucous when I cough.","felt terribly weak drained , also cough go away fever exceptionally high , challenging try catch breath creating lot mucous cough" +5532,Bronchial Asthma,"I'm feeling really tired and weak lately, and I've had this cough that just won't go away. My breathing has become shallow, and my fever has been really high. When I cough, I've been producing a lot of thick, mucoid sputum","feeling really tired weak lately , cough go away breathing become shallow , fever really high cough , producing lot thick , mucoid sputum" +5533,Bronchial Asthma,"feeling extremely exhausted and have had this persistent cough. It's been hard for me to catch my breath, and my fever is very high. I've also been producing a lot of mucus when I cough","feeling extremely exhausted persistent cough hard catch breath , fever high also producing lot mucus cough" +5534,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum.","struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum" +5535,Bronchial Asthma,"I've had a nagging cough that won't go away, and my breathing has become labored. My fever is also very high, and I'm feeling very weak and tired. I've been producing a lot of mucus when I cough","nagging cough go away , breathing become labored fever also high , feeling weak tired producing lot mucus cough" +5536,Bronchial Asthma,"I've been experiencing a high fever, a persistent cough, and shortness of breath. I've also been producing a lot of thick, mucoid sputum, and I'm feeling very tired and weak.","experiencing high fever , persistent cough , shortness breath also producing lot thick , mucoid sputum , feeling tired weak" +5537,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so drained and tired from having to deal with all of this.","breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling drained tired deal" +5538,Bronchial Asthma,"I've had this cough that's been lingering for days and difficulty breathing. My fever is sky-high, and I'm feeling so weak and tired. I've also been producing a lot of mucus when I cough, and it's just been so overwhelming to deal with all of these symptoms. I'm getting so frustrated with all of this.","cough lingering days difficulty breathing fever sky high , feeling weak tired also producing lot mucus cough , overwhelming deal symptoms getting frustrated" +5539,Bronchial Asthma,"I've had a persistent cough for days, and I also have breathing problems. I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything.","persistent cough days , also breathing problems weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything" +5540,Bronchial Asthma,"I've been struggling with difficulty breathing, a constant cough, and fatigue. My fever is extremely high, and I've been coughing up a lot of thick, mucoid sputum. It's been so hard to deal with all of this, and I'm just feeling so drained and worn out","struggling difficulty breathing , constant cough , fatigue fever extremely high , coughing lot thick , mucoid sputum hard deal , feeling drained worn" +5541,Bronchial Asthma,"I've been having breathing issues, a persistent cough, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a very high fever. I'm just feeling so exhausted and tired from having to cope with all of this.","breathing issues , persistent cough , exhaustion coughing lot thick , mucoid sputum high fever feeling exhausted tired cope" +5542,Bronchial Asthma,"I've been feeling really ill lately. I've had this persistent cough and difficulty breathing, and my fever has been off the charts. I'm also feeling extremely exhausted, and I've been producing a lot of mucus when I cough. It's just been so overwhelming to deal with all of these symptoms","feeling really ill lately persistent cough difficulty breathing , fever charts also feeling extremely exhausted , producing lot mucus cough overwhelming deal symptoms" +5543,Bronchial Asthma,"Recently, I've been feeling terrible. My fever has been through the roof, and I've had a persistent cough and breathing problems. I've been coughing up a lot of phlegm and am also feeling quite weary. Dealing with all of these symptoms has been quite difficult.","recently , feeling terrible fever roof , persistent cough breathing problems coughing lot phlegm also feeling quite weary dealing symptoms quite difficult" +5544,Bronchial Asthma,"I've had a fever, a cough that won't go away, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I feel quite worn out and weak.","fever , cough go away , shortness breath addition , coughing lot thick , mucoid saliva feel quite worn weak" +5545,Bronchial Asthma,"Hey, I've had a dry cough, breathing difficulties, as well as a high fever. a lot of mucous is being produced, and I feel incredibly weak and tired.""","hey , dry cough , breathing difficulties , well high fever lot mucous produced , feel incredibly weak tired" +5546,Bronchial Asthma,"Recently, I have had a number of concerning symptoms, including a dry cough, impaired breathing, a high fever, and a lot of mucus. I also feel very weak and tired.","recently , number concerning symptoms , including dry cough , impaired breathing , high fever , lot mucus also feel weak tired" +5547,Bronchial Asthma,"I am currently dealing with a number of health issues, including a dry cough, difficulty breathing, a high fever, and increased mucus production. I am also feeling very weak and tired","currently dealing number health issues , including dry cough , difficulty breathing , high fever , increased mucus production also feeling weak tired" +5548,Bronchial Asthma,"its been a week , i am suffering from continious health issues like dry cough , problems in breathing , weakness throughout the day.","week , suffering continious health issues like dry cough , problems breathing , weakness throughout day" +5549,Bronchial Asthma,"Doctor , from couple of days i am not able to brethe propelry , lying on bed due to high fever , lot of mucus gets out . please suggest me some medicines.","doctor , couple days able brethe propelry , lying bed due high fever , lot mucus gets please suggest medicines" +5550,Bronchial Asthma,"I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling so drained and exhausted. It's been so hard to deal with all of this.","experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling drained exhausted hard deal" +5551,Bronchial Asthma," I'm so weak and exhausted, and my fever is through the roof. It's been very difficult to manage all of these symptoms, and I've also been coughing up a lot of mucus. I'm becoming so angry over everything.","weak exhausted , fever roof difficult manage symptoms , also coughing lot mucus becoming angry everything" +5552,Bronchial Asthma," must confess that I've been experiencing shortness of breath, a persistent cough, and a high fever. I've also been producing a lot of thick, mucoid sputum, and I'm feeling quite drained and exhausted. It's all been rather tough to deal with, and I'm feeling quite sick at the moment","must confess experiencing shortness breath , persistent cough , high fever also producing lot thick , mucoid sputum , feeling quite drained exhausted rather tough deal , feeling quite sick moment" +5553,Bronchial Asthma,"I must admit that I have been having a high fever, a persistent cough, and shortness of breath. In addition, I've been coughing up a lot of thick, mucoid saliva and I've been feeling really depleted and worn out.","must admit high fever , persistent cough , shortness breath addition , coughing lot thick , mucoid saliva feeling really depleted worn" +5554,Bronchial Asthma,"I've been having a tough time with this constant cough, difficulty breathing, and fatigue. My fever is high, and I've been coughing up a lot of thick, mucoid sputum. It's all been rather draining and exhausting, and I'm feeling quite sick at the moment.","tough time constant cough , difficulty breathing , fatigue fever high , coughing lot thick , mucoid sputum rather draining exhausting , feeling quite sick moment" +5555,Bronchial Asthma,"I've been struggling with a persistent cough, breathing issues, and exhaustion. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really tiring and exhausting, and right now I'm feeling rather ill.","struggling persistent cough , breathing issues , exhaustion coughing lot thick , mucoid sputum high fever really tiring exhausting , right feeling rather ill" +5556,Bronchial Asthma,"I've been dealing with a bad cough, breathing issues, and drowsiness. I've been coughing up a lot of thick, mucoid sputum and have a high fever. All of this has been really exhausting and exhausting, and right now I'm feeling rather ill.","dealing bad cough , breathing issues , drowsiness coughing lot thick , mucoid sputum high fever really exhausting exhausting , right feeling rather ill" +5557,Bronchial Asthma,"My persistent cough, breathing problems, and exhaustion have been making things difficult for me. I've been producing copious amounts of thick, mucoid sputum while also having a high fever. I'm currently feeling fairly ill because everything has been so tiring and exhausting.","persistent cough , breathing problems , exhaustion making things difficult producing copious amounts thick , mucoid sputum also high fever currently feeling fairly ill everything tiring exhausting" +5558,Bronchial Asthma,"With my persistent cough, respiratory issues, and exhaustion, I've been struggling. I have a high fever and have been producing a lot of thick, mucoid sputum while coughing. I currently feel rather sick as a result of how draining and tiresome everything has been.","persistent cough , respiratory issues , exhaustion , struggling high fever producing lot thick , mucoid sputum coughing currently feel rather sick result draining tiresome everything" +5559,Bronchial Asthma,"My fever is through the roof, and I'm so weak and tired out. I've been coughing up a lot of mucous, and managing all of these symptoms has been really hard. Everything is making me so upset.","fever roof , weak tired coughing lot mucous , managing symptoms really hard everything making upset" +5560,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feelinf too tired. Please recommend some medications for me.","doctor due high fever , able breathe via nose mouth days feelinf tired please recommend medications" +5561,Bronchial Asthma,"Hey, I've got a dry cough, trouble breathing, and a high fever. I'm producing a lot of mucus and am feeling quite weak and exhausted.","hey , got dry cough , trouble breathing , high fever producing lot mucus feeling quite weak exhausted" +5562,Bronchial Asthma,"I've been coughing nonstop for days, and I also have respiratory issues. My fever is through the roof, and I'm so weak and worn out. All of these symptoms have been really challenging for me to control,","coughing nonstop days , also respiratory issues fever roof , weak worn symptoms really challenging control ," +5563,Bronchial Asthma,"In addition to sleepiness, I've been having trouble breathing due to a persistent cough. I've been coughing up a lot of thick, mucoid sputum and have a high fever.","addition sleepiness , trouble breathing due persistent cough coughing lot thick , mucoid sputum high fever" +5564,Bronchial Asthma,"I've been struggling to breathe, coughing constantly, and feeling worn out. I have a very high fever and have been coughing up a lot of thick, mucoid saliva. I simply feel so worn out and exhausted from trying to deal with everything.","struggling breathe , coughing constantly , feeling worn high fever coughing lot thick , mucoid saliva simply feel worn exhausted trying deal everything" +5565,Bronchial Asthma,"I've been experiencing difficulty breathing, a chronic cough, and weariness. I've been producing a lot of thick, mucoid sputum while also running a very high temperature. Due to having to cope with all of this, I'm simply feeling extremely worn out and exhausted.","experiencing difficulty breathing , chronic cough , weariness producing lot thick , mucoid sputum also running high temperature due cope , simply feeling extremely worn exhausted" +5566,Bronchial Asthma,"Hello, Mom and Father Recently, I've felt incredibly worn out and have had a cough that won't go away. My fever is really high, and my breathing has become shallow. Additionally, I've been coughing up a lot of mucous, thick sputum.","hello , mom father recently , felt incredibly worn cough go away fever really high , breathing become shallow additionally , coughing lot mucous , thick sputum" +5567,Bronchial Asthma,"I've been struggling with fatigue and a constant cough that's been making it difficult to breathe. My fever is high, and I've been coughing up a lot of thick, mucoid sputum.","struggling fatigue constant cough making difficult breathe fever high , coughing lot thick , mucoid sputum" +5568,Bronchial Asthma,"Doctor Due to a high fever, I haven't been able to breathe via my nose or mouth for a few days and feeling too tired.sometimes mucus has been seen too.Please recommend some medications for me.","doctor due high fever , able breathe via nose mouth days feeling tired sometimes mucus seen please recommend medications" +5569,Bronchial Asthma,"I've had ongoing health problems for a week, including a dry cough, breathing difficulties, and general weakness.","ongoing health problems week , including dry cough , breathing difficulties , general weakness" +5570,Hypertension,"I have been experiencing a headache, chest pain, dizziness, and difficulty maintaining my balance. I also feel like I am having trouble concentrating","experiencing headache , chest pain , dizziness , difficulty maintaining balance also feel like trouble concentrating" +5571,Hypertension,"Along with a headache, chest pain, instability, and balance issues, I've also been feeling dizzy. I also think I'm having problems focusing.","along headache , chest pain , instability , balance issues , also feeling dizzy also think problems focusing" +5572,Hypertension,"Along with a head pain, chest pain, instability, and balance issues, I've also been feeling unwell. I also think I'm having problems focusing.","along head pain , chest pain , instability , balance issues , also feeling unwell also think problems focusing" +5573,Hypertension,"In addition to a head pain, chest pain, instability, and balance issues, I've already been feeling unwell. I also suppose I'm having issues focusing.","addition head pain , chest pain , instability , balance issues , already feeling unwell also suppose issues focusing" +5574,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. My ability to concentrate and focus has also been challenging.","experiencing balance issues , headache , chest pain , dizziness ability concentrate focus also challenging" +5575,Hypertension,"I have been having a headache, chest pain, dizziness, and trouble with my balance. It has also been hard for me to focus and concentrate.","headache , chest pain , dizziness , trouble balance also hard focus concentrate" +5576,Hypertension,"I've been encountering trouble walking, a headache, chest pain, and dizziness. My concentration skills and focus has also been challenging.","encountering trouble walking , headache , chest pain , dizziness concentration skills focus also challenging" +5577,Hypertension,"I've been encountering poor balance, a headache, chest pain, and dizziness. My ability to pay attention and focus has also been problematic.","encountering poor balance , headache , chest pain , dizziness ability pay attention focus also problematic" +5578,Hypertension,"My coordination has been off, and I've been experiencing a headache, chest pain, and dizziness. Additionally, I've had trouble concentrating and focusing.","coordination , experiencing headache , chest pain , dizziness additionally , trouble concentrating focusing" +5579,Hypertension,"My symptoms include a headache, chest pain, dizziness, lack of balance, and trouble concentrating.","symptoms include headache , chest pain , dizziness , lack balance , trouble concentrating" +5580,Hypertension,"I have been experiencing symptoms such as a headache, chest pain, dizziness, loss of balance, and difficulty focusing.","experiencing symptoms headache , chest pain , dizziness , loss balance , difficulty focusing" +5581,Hypertension,"I've been suffering from symptoms including a headache, chest pain, dizziness, losing my balance, and trouble concentrating.","suffering symptoms including headache , chest pain , dizziness , losing balance , trouble concentrating" +5582,Hypertension,"Headache, chest discomfort, dizziness, lack of balance, and difficulty concentrating are some of the symptoms I've been having.","headache , chest discomfort , dizziness , lack balance , difficulty concentrating symptoms" +5583,Hypertension,"Along with a headache and chest pain, I also experienced fainting and balance issues. Additionally, I've discovered that it's hard for me to focus.","along headache chest pain , also experienced fainting balance issues additionally , discovered hard focus" +5584,Hypertension,"I've been experiencing balance issues, a headache, chest pain, and dizziness. I've also realised that I'm having trouble focusing.","experiencing balance issues , headache , chest pain , dizziness also realised trouble focusing" +5585,Hypertension,"My balance has been off, and I have a headache, chest pain, and dizziness. I've also observed that it's hard for me to concentrate.","balance , headache , chest pain , dizziness also observed hard concentrate" +5586,Hypertension,"I've been experiencing balance issues, chest pain, headaches, and pains. I've been having trouble focusing as well.","experiencing balance issues , chest pain , headaches , pains trouble focusing well" +5587,Hypertension,"I have been experiencing chest pain, dizziness, and a headache that feels like a continual pressure in my forehead.","experiencing chest pain , dizziness , headache feels like continual pressure forehead" +5588,Hypertension,"I have been feeling lightheaded and unsteady on my feet, and have also noticed a decline in my ability to focus and concentrate.","feeling lightheaded unsteady feet , also noticed decline ability focus concentrate" +5589,Hypertension,"I've been experiencing dizziness and shakiness, as well as a loss in my attention span and ability to concentrate.","experiencing dizziness shakiness , well loss attention span ability concentrate" +5590,Hypertension,"I've been experiencing dizziness and anxiousness, as well as a loss in my attention and concentration and ability to concentrate.","experiencing dizziness anxiousness , well loss attention concentration ability concentrate" +5591,Hypertension,"I've had intense aches in my chest, a headache that won't go away, and I've been feeling dizzy and unsteady.","intense aches chest , headache go away , feeling dizzy unsteady" +5592,Hypertension,"I've had intense aches in my chest, a head  pain that refuses to go away, and I've been feeling dizzy and unsteady.","intense aches chest , head pain refuses go away , feeling dizzy unsteady" +5593,Hypertension,"Along with chest pain, dizziness, and a headache that feels like a narrow zone around my head, I have been having a lot of trouble.","along chest pain , dizziness , headache feels like narrow zone around head , lot trouble" +5594,Hypertension,"I have been struggling with a headache that feels like a tight band around my head, along with chest pain and dizziness.","struggling headache feels like tight band around head , along chest pain dizziness" +5595,Hypertension,I've been experiencing balance issues in addition to feeling disoriented and dizzy. My headache has also been present nonstop.,experiencing balance issues addition feeling disoriented dizzy headache also present nonstop +5596,Hypertension,"I have been feeling disoriented and dizzy, and have also had trouble keeping my balance. My headache has been a constant presence as well.","feeling disoriented dizzy , also trouble keeping balance headache constant presence well" +5597,Hypertension,"I've been experiencing balance issues along with feeling dizzy and lightheaded. Additionally, I've seen a drop in my concentration and focus.","experiencing balance issues along feeling dizzy lightheaded additionally , seen drop concentration focus" +5598,Hypertension,"In addition to feeling dizzy and lightheaded, I've been having problems keeping my equilibrium. My capacity to concentrate and focus has also been slipping, I've noticed.","addition feeling dizzy lightheaded , problems keeping equilibrium capacity concentrate focus also slipping , noticed" +5599,Hypertension,"I have been experiencing a headache that feels like a sharp pain in my temples, along with chest pain and dizziness.","experiencing headache feels like sharp pain temples , along chest pain dizziness" +5600,Hypertension,"Along with a chest pain and dizziness, I've had a headache that seems like a sharp pain in my forehead.","along chest pain dizziness , headache seems like sharp pain forehead" +5601,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a walk. It's been hard for me to focus and concentrate since then.","feeling fine day , suddenly developed headache , chest pain , dizziness walk hard focus concentrate since" +5602,Hypertension,"While taking a walk, I suddenly started experiencing headache, chest pain, and dizziness after feeling fine all day. Since then, it has been challenging for me to concentrate and focus.","taking walk , suddenly started experiencing headache , chest pain , dizziness feeling fine day since , challenging concentrate focus" +5603,Hypertension,"I woke up this morning with a headache and chest pain, and as the day has gone on, I've also been feeling dizzy and unsteady on my feet","woke morning headache chest pain , day gone , also feeling dizzy unsteady feet" +5604,Hypertension,"I had a headache and chest pain this morning, and as the day wore on, I also started to feel unsteady and unstable on my feet.","headache chest pain morning , day wore , also started feel unsteady unstable feet" +5605,Hypertension,"I have been dealing with a headache and chest pain for a few days now, but today the dizziness and loss of balance became much worse.","dealing headache chest pain days , today dizziness loss balance became much worse" +5606,Hypertension,"For a few days now, I've been suffering from a headache and chest pain, but today the dizziness and lack of balance got considerably worse.","days , suffering headache chest pain , today dizziness lack balance got considerably worse" +5607,Hypertension,"I was at work when I started feeling a headache, chest pain, and dizziness. It's been hard for me to concentrate and focus on my tasks since then.","work started feeling headache , chest pain , dizziness hard concentrate focus tasks since" +5608,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was at work. Since then, it has been challenging for me to focus and concentrate on my work.","first experienced headache , chest pain , lightheadedness , work since , challenging focus concentrate work" +5609,Hypertension,"I was in the middle of a workout when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to maintain my balance since then","middle workout suddenly developed headache , chest pain , dizziness hard maintain balance since" +5610,Hypertension,"I instantly experienced a headache, chest pain, and dizziness while working out. Since then, it has been challenging for me to keep my balance.","instantly experienced headache , chest pain , dizziness working since , challenging keep balance" +5611,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while driving home from work. It's been hard for me to focus and concentrate on the road since then.","feeling fine day , suddenly developed headache , chest pain , dizziness driving home work hard focus concentrate road since" +5612,Hypertension,"I felt fine all day, but when I was driving home from work, I suddenly started to have headache, chest discomfort, and dizziness. Since then, it has been challenging for me to concentrate and focus while driving.","felt fine day , driving home work , suddenly started headache , chest discomfort , dizziness since , challenging concentrate focus driving" +5613,Hypertension,"I was out shopping when I started feeling a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my tasks since then.","shopping started feeling headache , chest pain , dizziness hard focus concentrate tasks since" +5614,Hypertension,"When I first experienced a headache, chest pain, and lightheadedness, I was out shopping. Since then, it has been difficult for me to concentrate on my work.","first experienced headache , chest pain , lightheadedness , shopping since , difficult concentrate work" +5615,Hypertension,"I woke up this morning feeling fine, but as the day went on, I started experiencing a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on my work since then.","woke morning feeling fine , day went , started experiencing headache , chest pain , dizziness hard focus concentrate work since" +5616,Hypertension,"I felt good when I woke up this morning, but as the day wore on, I began to feel headachey, sick to my stomach, and dizzy. Since then, it has been challenging for me to concentrate and focus on my work.","felt good woke morning , day wore , began feel headachey , sick stomach , dizzy since , challenging concentrate focus work" +5617,Hypertension,"I was in the middle of a meeting when I suddenly developed a headache, chest pain, and dizziness. It's been hard for me to focus and concentrate on the discussion since then.","middle meeting suddenly developed headache , chest pain , dizziness hard focus concentrate discussion since" +5618,Hypertension,"I suddenly experienced a headache, chest pain, and dizziness in the middle of a conference. Since then, it has been challenging for me to concentrate and focus on the topic.","suddenly experienced headache , chest pain , dizziness middle conference since , challenging concentrate focus topic" +5619,Hypertension,"I have been feeling fine all day, but suddenly developed a headache, chest pain, and dizziness while out for a run. It's been hard for me to maintain my balance since then","feeling fine day , suddenly developed headache , chest pain , dizziness run hard maintain balance since" +5620,Migraine,"I have been experiencing acidity and indigestion after meals, as well as frequent headaches and blurred vision.","experiencing acidity indigestion meals , well frequent headaches blurred vision" +5621,Migraine,"I've been getting frequent headaches and hazy vision, as well as acid reflux and indigestion after meals.","getting frequent headaches hazy vision , well acid reflux indigestion meals" +5622,Migraine,"I have been having trouble with my vision, seeing things as distorted and experiencing visual disturbances.","trouble vision , seeing things distorted experiencing visual disturbances" +5623,Migraine,"I've been suffering visual disruptions, seeing things as distorted, and eyesight problems.","suffering visual disruptions , seeing things distorted , eyesight problems" +5624,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties.","facing visual disruptions , seeing things distorted , eyesight difficulties" +5625,Migraine,"I have been feeling excessively hungry, even after eating, and have had a stiff neck.","feeling excessively hungry , even eating , stiff neck" +5626,Migraine,"I've been facing visual disruptions, seeing things as distorted, and eyesight difficulties.","facing visual disruptions , seeing things distorted , eyesight difficulties" +5627,Migraine,"I've been grumpy and gloomy lately, and I've also noticed a change in my vision.","grumpy gloomy lately , also noticed change vision" +5628,Migraine,"I have been feeling depressed and irritable, and have noticed a change in my vision.","feeling depressed irritable , noticed change vision" +5629,Migraine,"I've been irritated and depressed lately, and I've also noticed a change in my vision.","irritated depressed lately , also noticed change vision" +5630,Migraine,"Along with recurrent headaches and blurred vision, I suffer acid reflux and trouble digesting my food.","along recurrent headaches blurred vision , suffer acid reflux trouble digesting food" +5631,Migraine,"I have been experiencing acid reflux and difficulty digesting my food, along with regular headaches and impaired vision","experiencing acid reflux difficulty digesting food , along regular headaches impaired vision" +5632,Migraine,"I have been feeling hungry all the time and have had a sore neck, as well as problems with my vision.","feeling hungry time sore neck , well problems vision" +5633,Migraine,"In addition to having a stiff neck and eye issues, I have been always hungry.","addition stiff neck eye issues , always hungry" +5634,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance" +5635,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux" +5636,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been suffering indigestion, headaches, blurred vision, and stomach problems.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also suffering indigestion , headaches , blurred vision , stomach problems" +5637,Migraine,"I have been suffering from acid reflux, indigestion, frequent headaches, and impaired vision, as well as excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , frequent headaches , impaired vision , well excessive hunger , sore neck , depression , irritability , visual disturbance" +5638,Migraine,"Along with increased hunger, a sore neck, melancholy, impatience, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and blurred eyesight.","along increased hunger , sore neck , melancholy , impatience , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , blurred eyesight" +5639,Migraine,"Together with increased hunger, a sore neck, anxiety, irritation, and visual distortion, I've also been experiencing acid reflux, indigestion, frequent headaches, and impaired eyesight.","together increased hunger , sore neck , anxiety , irritation , visual distortion , also experiencing acid reflux , indigestion , frequent headaches , impaired eyesight" +5640,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as regular headaches and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing digestive issues , including acidity indigestion , well regular headaches distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5641,Migraine,"In addition to recurrent headaches and blurred vision, increased appetite, a stiff neck, sadness, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity.","addition recurrent headaches blurred vision , increased appetite , stiff neck , sadness , irritability , visual disturbance , stomach problems , including indigestion acidity" +5642,Migraine,"In add to frequent headaches and blurred vision, increased appetite, a stiff neck, anxiety, irritability, and visual disturbance, I have been having stomach problems, including indigestion and acidity.","add frequent headaches blurred vision , increased appetite , stiff neck , anxiety , irritability , visual disturbance , stomach problems , including indigestion acidity" +5643,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5644,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been experiencing blurred and distorted vision.","along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also experiencing blurred distorted vision" +5645,Migraine,"Along with headaches, indigestion, acid reflux, excessive appetite, a sore neck, sadness, impatience, and visual disturbance, I have also been feeling blurred and distorted vision.","along headaches , indigestion , acid reflux , excessive appetite , sore neck , sadness , impatience , visual disturbance , also feeling blurred distorted vision" +5646,Migraine,"I have been experiencing digestive issues, including acidity and indigestion, as well as frequent headaches and impaired vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance","experiencing digestive issues , including acidity indigestion , well frequent headaches impaired vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5647,Migraine,"Acidity and indigestion are among the digestive problems I've been having, along with regular headaches, blurred vision, increased hunger, stiff neck, sadness, impatience, and visual disruption.","acidity indigestion among digestive problems , along regular headaches , blurred vision , increased hunger , stiff neck , sadness , impatience , visual disruption" +5648,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , regular headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5649,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and regular headaches.","along distorted eyesight , excessive appetite , painful neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , regular headaches" +5650,Migraine,"Along with distorted eyesight, excessive appetite, a painful neck, anxiety, irritability, and regular headaches, I have also been battling acid reflux, indigestion, and regular headaches.","along distorted eyesight , excessive appetite , painful neck , anxiety , irritability , regular headaches , also battling acid reflux , indigestion , regular headaches" +5651,Migraine,"I have been experiencing acidity, indigestion, and frequent headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance.","experiencing acidity , indigestion , frequent headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5652,Migraine,"Stomach acid, indigestion, frequent headaches, hazy and distorted vision, increased appetite, stiff neck, depression, irritation, and visual distortion have all been bothering me.","stomach acid , indigestion , frequent headaches , hazy distorted vision , increased appetite , stiff neck , depression , irritation , visual distortion bothering" +5653,Migraine,"I have been struggling with digestive issues, including acid reflux and indigestion, as well as regular headaches and impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance","struggling digestive issues , including acid reflux indigestion , well regular headaches impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5654,Migraine,"I have been experiencing frequent headaches, blurred vision, excessive appetite, a sore neck, sadness, irritability, and digestive problems including indigestion and acid reflux.","experiencing frequent headaches , blurred vision , excessive appetite , sore neck , sadness , irritability , digestive problems including indigestion acid reflux" +5655,Migraine,"I have been enduring frequent headaches, blurred vision, excessive appetite, a sore neck, anxiety, irritability, and digestive difficulties including indigestion and acid reflux.","enduring frequent headaches , blurred vision , excessive appetite , sore neck , anxiety , irritability , digestive difficulties including indigestion acid reflux" +5656,Migraine,"I have been experiencing acidity, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a stiff neck, depression, irritability, and visual disturbance","experiencing acidity , indigestion , headaches , well blurred distorted vision , excessive hunger , stiff neck , depression , irritability , visual disturbance" +5657,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion.","along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion" +5658,Migraine,"Along with excessive appetite, a stiff neck, headaches, indigestion, and acid reflux, I've also been experiencing sadness, impatience, and visual distortion.","along excessive appetite , stiff neck , headaches , indigestion , acid reflux , also experiencing sadness , impatience , visual distortion" +5659,Migraine,"I have been suffering from acid reflux, indigestion, and frequent headaches, as well as distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance.","suffering acid reflux , indigestion , frequent headaches , well distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance" +5660,Migraine,"Along with impaired eyesight, increased appetite, a sore neck, melancholy, impatience, and regular headaches, I've also been experiencing heartburn, acid reflux, and indigestion.","along impaired eyesight , increased appetite , sore neck , melancholy , impatience , regular headaches , also experiencing heartburn , acid reflux , indigestion" +5661,Migraine,"Along with impaired seeing, excessive eating, a sore neck, melancholy, impatience, and constant headaches, I've also been fighting heartburn, acid reflux, and indigestion.","along impaired seeing , excessive eating , sore neck , melancholy , impatience , constant headaches , also fighting heartburn , acid reflux , indigestion" +5662,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort" +5663,Migraine,"Along with excessive appetite, a stiff neck, depression, impatience, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been bothering me and interfering with my usual activities.","along excessive appetite , stiff neck , depression , impatience , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms bothering interfering usual activities" +5664,Migraine,"As well as with excessive appetite, a tense neck, depression, irritability, and visual disturbance, I've also been having indigestion, headaches, blurred vision, and acid reflux. These symptoms have been disturbing me and interfering with my usual activities.","well excessive appetite , tense neck , depression , irritability , visual disturbance , also indigestion , headaches , blurred vision , acid reflux symptoms disturbing interfering usual activities" +5665,Migraine,"I have been suffering from acid reflux, indigestion, and regular headaches, as well as impaired vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of distress and making it difficult to go about my daily activities.","suffering acid reflux , indigestion , regular headaches , well impaired vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot distress making difficult go daily activities" +5666,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent migraines. My regular activities have been made more challenging by these symptoms, which have been causing me a great deal of distress.","along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent migraines regular activities made challenging symptoms , causing great deal distress" +5667,Migraine,"Along with eyesight problems, increased appetite, a sore neck, melancholy, irritability, and regular headaches, I have also been experiencing acid reflux, indigestion, and frequent dizziness. My regular activities have been made more tough by these symptoms, which have been causing me a great deal of distress.","along eyesight problems , increased appetite , sore neck , melancholy , irritability , regular headaches , also experiencing acid reflux , indigestion , frequent dizziness regular activities made tough symptoms , causing great deal distress" +5668,Migraine,"I have been experiencing acidity, indigestion, headaches, and blurred and distorted vision, as well as excessive hunger, a stiff neck, depression, irritability, and visual disturbance. These symptoms have been affecting my daily life and causing me discomfort.","experiencing acidity , indigestion , headaches , blurred distorted vision , well excessive hunger , stiff neck , depression , irritability , visual disturbance symptoms affecting daily life causing discomfort" +5669,Migraine,"I have been struggling with acid reflux, indigestion, and headaches, as well as blurred and distorted vision, excessive hunger, a sore neck, depression, irritability, and visual disturbance. These symptoms have been causing me a lot of problems and making it difficult to concentrate and function normally.","struggling acid reflux , indigestion , headaches , well blurred distorted vision , excessive hunger , sore neck , depression , irritability , visual disturbance symptoms causing lot problems making difficult concentrate function normally" +5670,Cervical spondylosis,"I have been experiencing severe back pain, a persistent cough, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance.","experiencing severe back pain , persistent cough , weakness limbs neck also hurts feeling dizzy balance" +5671,Cervical spondylosis,"Along with a chronic cough and limb weakness, I've been dealing with excruciating back discomfort. I've been experiencing neck pain as well as vertigo and instability.","along chronic cough limb weakness , dealing excruciating back discomfort experiencing neck pain well vertigo instability" +5672,Cervical spondylosis,"I have been suffering from back pain, a hacking cough, and weakness in my arms and legs. Additionally, my neck hurts and I have had issues with dizziness and maintaining my balance.","suffering back pain , hacking cough , weakness arms legs additionally , neck hurts issues dizziness maintaining balance" +5673,Cervical spondylosis,"Back pain, a hacking cough, and numbness in my arms and legs have been bothering me. In addition, my neck hurts, and I've having trouble staying balanced and without getting lightheaded.","back pain , hacking cough , numbness arms legs bothering addition , neck hurts , trouble staying balanced without getting lightheaded" +5674,Cervical spondylosis,"Back pain, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy.","back pain , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy" +5675,Cervical spondylosis,"Pain typically, a coughing cough, and numbness in my arms and legs have been plaguing me. In addition, my neck hurts, and I've having trouble staying balanced and without getting woozy.","pain typically , coughing cough , numbness arms legs plaguing addition , neck hurts , trouble staying balanced without getting woozy" +5676,Cervical spondylosis,"I have been struggling with back pain, a cough that won't go away, and weakness in my extremities. My neck hurts and I have had problems with dizziness and losing my balance.","struggling back pain , cough go away , weakness extremities neck hurts problems dizziness losing balance" +5677,Cervical spondylosis,"Back discomfort, a persistent cough, and weakness in my limbs have been bothering me. I have issues with vertigo and losing my equilibrium, and my neck hurts.","back discomfort , persistent cough , weakness limbs bothering issues vertigo losing equilibrium , neck hurts" +5678,Cervical spondylosis,"Back discomfort, a breathing difficulty, and weakness in my limbs have been hurting me. I have issues with vertigo and losing my balance, and my neck hurts.","back discomfort , breathing difficulty , weakness limbs hurting issues vertigo losing balance , neck hurts" +5679,Cervical spondylosis,"I have been experiencing intense back pain, a dry cough, and a lack of strength in my limbs. My neck hurts and I have been feeling dizzy and unsteady on my feet.","experiencing intense back pain , dry cough , lack strength limbs neck hurts feeling dizzy unsteady feet" +5680,Cervical spondylosis,"I've been struggling with severe back pain, a dry cough, and limb weakness. I've been feeling lightheaded and wobbly on my feet, and my neck hurts.","struggling severe back pain , dry cough , limb weakness feeling lightheaded wobbly feet , neck hurts" +5681,Cervical spondylosis,"I've been battling with back pain, a dry cough, and limb weakness. I've been feeling dizzy and unstable on my feet, and my neck hurts.","battling back pain , dry cough , limb weakness feeling dizzy unstable feet , neck hurts" +5682,Cervical spondylosis,"I've been struggling with back pain, a chronic cough, and limb weakness. I've been feeling disoriented and weak on my feet, and my neck hurts.","struggling back pain , chronic cough , limb weakness feeling disoriented weak feet , neck hurts" +5683,Cervical spondylosis,"I have been suffering from back pain, a productive cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and balance.","suffering back pain , productive cough , weakness limbs neck sore issues dizziness balance" +5684,Cervical spondylosis,"Back pain, a productive cough, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck hurts.","back pain , productive cough , limb weakness bothering balance dizzy concerns , neck hurts" +5685,Cervical spondylosis,"Backache, a difficulty breathing, and limb weakness have been bothering me. I have balance and dizzy concerns, and my neck suffers.","backache , difficulty breathing , limb weakness bothering balance dizzy concerns , neck suffers" +5686,Cervical spondylosis,"I have been struggling with back pain, a persistent cough, and weakness in my muscles. My neck hurts and I have had problems with dizziness and loss of balance.","struggling back pain , persistent cough , weakness muscles neck hurts problems dizziness loss balance" +5687,Cervical spondylosis,"Back pain, a lingering cough, and muscle weakness have been bothering me. I have issues with dizziness and losing my equilibrium, and my neck hurts.","back pain , lingering cough , muscle weakness bothering issues dizziness losing equilibrium , neck hurts" +5688,Cervical spondylosis,"Back pain, a chronic cough, and muscle weakness have been bothering me. I have concerns with dizziness and losing my position, and my neck hurts.","back pain , chronic cough , muscle weakness bothering concerns dizziness losing position , neck hurts" +5689,Cervical spondylosis,"I have been experiencing severe back pain, a cough that comes and goes, and weakness in my limbs. My neck also hurts and I have been feeling dizzy and off balance.","experiencing severe back pain , cough comes goes , weakness limbs neck also hurts feeling dizzy balance" +5690,Cervical spondylosis,"I've been having intermittent coughing fits, significant back pain, and limb weakness. I've been experiencing neck pain as well as a dizzy and unsteady sensation.","intermittent coughing fits , significant back pain , limb weakness experiencing neck pain well dizzy unsteady sensation" +5691,Cervical spondylosis,"I've been having periodic coughing fits, terrible back pain, and limb weakness. I've been feeling neck pain as well as a dizzy and unstable sensation.","periodic coughing fits , terrible back pain , limb weakness feeling neck pain well dizzy unstable sensation" +5692,Cervical spondylosis,"I have been dealing with back pain, a cough that won't go away, and weakness in my arms and legs. My neck hurts and I have had problems with dizziness and maintaining my balance.","dealing back pain , cough go away , weakness arms legs neck hurts problems dizziness maintaining balance" +5693,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts.","back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts" +5694,Cervical spondylosis,"Back pain, a dry cough, and stiffness in my arms and legs have been bothering me. I've had problems staying balanced and experience dizziness, and my neck hurts.","back pain , dry cough , stiffness arms legs bothering problems staying balanced experience dizziness , neck hurts" +5695,Cervical spondylosis,"I've been experiencing back pain, a persistent cough, and numbness in my arms and legs. I've been having trouble staying balanced and managing my vertigo, and my neck hurts.","experiencing back pain , persistent cough , numbness arms legs trouble staying balanced managing vertigo , neck hurts" +5696,Cervical spondylosis,"My arms and legs have been weak, and I have been suffering from back pain and a persistent cough. In addition to experiencing neck pain and balance issues, I also suffer dizziness.","arms legs weak , suffering back pain persistent cough addition experiencing neck pain balance issues , also suffer dizziness" +5697,Cervical spondylosis,"Back pain, a persistent cough, and arm and leg weakness have been bothering me. I've been experiencing neck pain, balance issues, and dizziness.","back pain , persistent cough , arm leg weakness bothering experiencing neck pain , balance issues , dizziness" +5698,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. I've had trouble staying balanced and experiencing dizziness, and my neck hurts.","back pain , persistent cough , numbness arms legs bothering trouble staying balanced experiencing dizziness , neck hurts" +5699,Cervical spondylosis,"I have been suffering from back pain, a dry cough, and a lack of strength in my muscles. My neck is sore and I have been feeling dizzy and unsteady on my feet","suffering back pain , dry cough , lack strength muscles neck sore feeling dizzy unsteady feet" +5700,Cervical spondylosis,"Back pain, a dry cough, and a lack of muscle strength have been bothering me. My neck hurts, and I've been feeling lightheaded and shaky.","back pain , dry cough , lack muscle strength bothering neck hurts , feeling lightheaded shaky" +5701,Cervical spondylosis,"My muscles lack strength, and I have been experiencing back pain and a dry cough. I've been experiencing neck pain and feeling lightheaded and unstable on my feet.","muscles lack strength , experiencing back pain dry cough experiencing neck pain feeling lightheaded unstable feet" +5702,Cervical spondylosis,"My muscles haven't been very strong, and I've been experiencing back ache. I've been feeling lightheaded and wobbly on my feet, and my neck hurts.","muscles strong , experiencing back ache feeling lightheaded wobbly feet , neck hurts" +5703,Cervical spondylosis,"I've been experiencing back pain, a dry cough, and muscle weakness. I've been experiencing neck pain, feeling lightheaded, and having trouble standing still.","experiencing back pain , dry cough , muscle weakness experiencing neck pain , feeling lightheaded , trouble standing still" +5704,Cervical spondylosis,"I have been struggling with intense back pain, a chronic cough, and weakness in my arms and legs. My neck is sore and I have had problems with dizziness and loss of balance.","struggling intense back pain , chronic cough , weakness arms legs neck sore problems dizziness loss balance" +5705,Cervical spondylosis,"I've had terrible back pain, a persistent cough, and weakness in my arms and legs. I have issues with dizziness and balance loss, and my neck hurts.","terrible back pain , persistent cough , weakness arms legs issues dizziness balance loss , neck hurts" +5706,Cervical spondylosis,"I've been suffering from severe back pain, a persistent cough, and numbness in my arms and legs. I've been experiencing issues with vertigo and balance issues, and my neck hurts.","suffering severe back pain , persistent cough , numbness arms legs experiencing issues vertigo balance issues , neck hurts" +5707,Cervical spondylosis,"Along with a persistent cough, weakness in my arms and legs, and severe back pain, I've been having a lot of trouble. I've experienced issues with vertigo and balance loss, and my neck is hurting.","along persistent cough , weakness arms legs , severe back pain , lot trouble experienced issues vertigo balance loss , neck hurting" +5708,Cervical spondylosis,"I have been experiencing severe back pain, a cough that produces phlegm, and weakness in my muscles. My neck also hurts and I have been feeling dizzy and unsteady on my feet.","experiencing severe back pain , cough produces phlegm , weakness muscles neck also hurts feeling dizzy unsteady feet" +5709,Cervical spondylosis,"In addition to having excruciating back pain, I've also been coughing up mucus and feeling weak all over. I've been feeling lightheaded and unstable on my feet, and my neck hurts as well.","addition excruciating back pain , also coughing mucus feeling weak feeling lightheaded unstable feet , neck hurts well" +5710,Cervical spondylosis,"My muscles have been quite weak, and I've been coughing up phlegm along with significant back discomfort. In addition to feeling weak and disoriented, my neck has been hurting.","muscles quite weak , coughing phlegm along significant back discomfort addition feeling weak disoriented , neck hurting" +5711,Cervical spondylosis,"Along with a phlegmy cough and muscle weakness, I've been dealing with excruciating back pain. In addition to feeling woozy and shaky on my feet, my neck has been hurting.","along phlegmy cough muscle weakness , dealing excruciating back pain addition feeling woozy shaky feet , neck hurting" +5712,Cervical spondylosis,"I have been dealing with back pain, a persistent cough, and weakness in my limbs. My neck is sore and I have had issues with dizziness and loss of balance.","dealing back pain , persistent cough , weakness limbs neck sore issues dizziness loss balance" +5713,Cervical spondylosis,"Back ache, a chronic cough, and limb weakness have been bothering me. I have troubles with disorientation and balance loss, and my neck hurts.","back ache , chronic cough , limb weakness bothering troubles disorientation balance loss , neck hurts" +5714,Cervical spondylosis,"I've had back pain, a cough that won't go away, and limb weakness. I've been experiencing neck pain, instability, and balance concerns.","back pain , cough go away , limb weakness experiencing neck pain , instability , balance concerns" +5715,Cervical spondylosis,"I have been suffering from back pain, a chronic cough, and weakness in my arms and legs. My neck hurts and I have been feeling dizzy and off balance","suffering back pain , chronic cough , weakness arms legs neck hurts feeling dizzy balance" +5716,Cervical spondylosis,"Back pain, a persistent cough, and numbness in my arms and legs have been bothering me. My neck hurts, and I've been feeling lightheaded and unsteady.","back pain , persistent cough , numbness arms legs bothering neck hurts , feeling lightheaded unsteady" +5717,Cervical spondylosis,"I've had back pain, a persistent cough, and weakness in my arms and legs. My neck hurts, and I've been feeling off-balance and woozy.","back pain , persistent cough , weakness arms legs neck hurts , feeling balance woozy" +5718,Cervical spondylosis,"I have been struggling with back pain, a productive cough, and weakness in my muscles. My neck is sore and I have had problems with dizziness and unsteady balance.","struggling back pain , productive cough , weakness muscles neck sore problems dizziness unsteady balance" +5719,Cervical spondylosis,"Back pain, a productive cough, and muscle weakness have been bothering me. I have issues with dizziness and uneven balance, and my neck hurts.","back pain , productive cough , muscle weakness bothering issues dizziness uneven balance , neck hurts" +5720,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5721,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5722,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach has been hurting.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow additionally , stomach hurting" +5723,Jaundice,"Extreme itchiness, sickness, and exhaustion have all been plaguing me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","extreme itchiness , sickness , exhaustion plaguing addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5724,Jaundice,I have been having severe itching and vomiting. I am also very tired and have lost weight. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain,severe itching vomiting also tired lost weight fever high skin turned yellow urine dark experiencing abdominal pain +5725,Jaundice,"I've been experiencing intense itching and nausea. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","experiencing intense itching nausea lost weight also really exhausted skin become yellow , severe fever dark urine , stomach pain" +5726,Jaundice,"I've been throwing up and experiencing intense itching. Along with losing weight, I'm also really exhausted. My skin has become yellow, and my fever is really high. I've been having stomach pain and my pee is black.","throwing experiencing intense itching along losing weight , also really exhausted skin become yellow , fever really high stomach pain pee black" +5727,Jaundice,"Strong itchiness and nausea have been bothering me. I have also lost weight and am really exhausted. I have a high fever, and my skin is becoming yellow. In addition to feeling stomach ache, my pee is black.","strong itchiness nausea bothering also lost weight really exhausted high fever , skin becoming yellow addition feeling stomach ache , pee black" +5728,Jaundice,I've been experiencing terrible itching and nausea. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. I have dark urine and stomach ache.,experiencing terrible itching nausea lost weight also really exhausted skin become yellow severe temperature dark urine stomach ache +5729,Jaundice,I have been feeling itchy and have been vomiting. I am also very fatigued and have lost weight. My fever is high and my skin has become yellow. My urine is dark and I have abdominal pain,feeling itchy vomiting also fatigued lost weight fever high skin become yellow urine dark abdominal pain +5730,Jaundice,"I've been feeling scratchy and throwing up. I have lost weight and am also really exhausted. My skin has become yellow, and I have a severe fever. I have stomach ache and black urine.","feeling scratchy throwing lost weight also really exhausted skin become yellow , severe fever stomach ache black urine" +5731,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. Additionally, I get stomach ache and dark urine.","itchy throwing along losing weight , also really exhausted skin turned yellow , fever high additionally , get stomach ache dark urine" +5732,Jaundice,"I've had a scratchy stomach and been throwing up. Aside from losing weight, I am also really exhausted. I have a high fever and yellow skin. Besides having stomach ache, my pee is black.","scratchy stomach throwing aside losing weight , also really exhausted high fever yellow skin besides stomach ache , pee black" +5733,Jaundice,"I've been itchy and throwing up. In addition, I have lost weight and feel really exhausted. My skin has become yellow and I have a severe temperature. I have abdominal ache and black urine.","itchy throwing addition , lost weight feel really exhausted skin become yellow severe temperature abdominal ache black urine" +5734,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5735,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain","suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5736,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having","feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain" +5737,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5738,Jaundice,"I've had nausea, vomiting, and exhaustion. Additionally, I've lost weight and have a temperature. My urine is black and my skin has turned yellow. I've also been having stomach pain.","nausea , vomiting , exhaustion additionally , lost weight temperature urine black skin turned yellow also stomach pain" +5739,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well" +5740,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5741,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5742,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5743,Jaundice,"I've been constantly feeling scratchy, sick, and tired out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Furthermore, I have been experiencing stomach pain.","constantly feeling scratchy , sick , tired addition , lost weight temperature urine dark , skin turned yellow furthermore , experiencing stomach pain" +5744,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain" +5745,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain.","severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5746,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain.","feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain" +5747,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts.","experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts" +5748,Jaundice,"Extreme itchiness, nausea, and exhaustion have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present.","extreme itchiness , nausea , exhaustion bothering addition , developed fever lost weight pee black , developed yellow rash ache stomach also present" +5749,Jaundice,"Extreme itchiness, nausea, and fatigue have been troubling me. In moreover, I experienced a fever and lost weight. My pee is black, and I've developed a yellow rash. The ache in my stomach is also present.","extreme itchiness , nausea , fatigue troubling moreover , experienced fever lost weight pee black , developed yellow rash ache stomach also present" +5750,Jaundice,I have been feeling itchy and have been vomiting. I am also very tired and have lost weight. My fever is high and my skin has become yellow. I have been experiencing abdominal pain as well.,feeling itchy vomiting also tired lost weight fever high skin become yellow experiencing abdominal pain well +5751,Jaundice,"I've been itchy and have been throwing up. Along with losing weight, I'm also really exhausted. My skin has turned yellow, and my fever is high. My stomach has also been hurting recently.","itchy throwing along losing weight , also really exhausted skin turned yellow , fever high stomach also hurting recently" +5752,Jaundice,"I've had a scratchy stomach and been throwing up. I have also lost weight and am really exhausted. I have a high fever and yellow skin. As well as you, I have been having stomach pain.","scratchy stomach throwing also lost weight really exhausted high fever yellow skin well , stomach pain" +5753,Jaundice,I've been itchy and throwing up. I've lost weight and am also really exhausted. My skin has become yellow and I have a severe temperature. My stomach has also been hurting.,itchy throwing lost weight also really exhausted skin become yellow severe temperature stomach also hurting +5754,Jaundice,"I've been exhausted and experiencing nausea and itching. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I've been having stomach pain.","exhausted experiencing nausea itching addition , lost weight temperature urine dark , skin turned yellow additionally , stomach pain" +5755,Jaundice,"I have been suffering from itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have also been experiencing abdominal pain","suffering itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5756,Jaundice,"I've been feeling scratchy, sick, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additional stomach pain that I've been having","feeling scratchy , sick , worn also high fever lost weight skin urine become yellow additional stomach pain" +5757,Jaundice,"The itch, the nausea, and the weariness have been bothering me. In addition, I developed a fever and lost weight. My pee is black, and I've developed a yellow rash. Additionally, I've had stomach ache.","itch , nausea , weariness bothering addition , developed fever lost weight pee black , developed yellow rash additionally , stomach ache" +5758,Jaundice,"I have been experiencing intense itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I have been having abdominal pain as well.","experiencing intense itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark abdominal pain well" +5759,Jaundice,"I've been feeling extremely scratchy, sick, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I have been experiencing stomach pain.","feeling extremely scratchy , sick , worn addition , lost weight temperature urine dark , skin turned yellow additionally , experiencing stomach pain" +5760,Jaundice,"I've felt really scratchy, nauseated, and worn out. I also had a high fever and lost weight. Both my skin and my urine have become yellow. I've also been experiencing stomach pain.","felt really scratchy , nauseated , worn also high fever lost weight skin urine become yellow also experiencing stomach pain" +5761,Jaundice,"I have been having severe itching, vomiting, and fatigue. I have also lost weight and have a high fever. My skin has turned yellow and my urine is dark. I am also experiencing abdominal pain.","severe itching , vomiting , fatigue also lost weight high fever skin turned yellow urine dark also experiencing abdominal pain" +5762,Jaundice,"I've been feeling really scratchy, dizzy, and worn out. In addition, I've lost weight and have a temperature. My urine is dark, and my skin has turned yellow. Additionally, I get stomach pain.","feeling really scratchy , dizzy , worn addition , lost weight temperature urine dark , skin turned yellow additionally , get stomach pain" +5763,Jaundice,"I've been experiencing intense itchiness, nausea, and exhaustion. I also had a high fever and lost weight. Both my skin and my urine have become yellow. Additionally, my stomach hurts.","experiencing intense itchiness , nausea , exhaustion also high fever lost weight skin urine become yellow additionally , stomach hurts" +5764,Jaundice,"I have been experiencing itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain.","experiencing itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5765,Jaundice,"I've been losing weight and experiencing nausea, itching, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight experiencing nausea , itching , exhaustion skin become yellow , severe fever dark urine , stomach pain" +5766,Jaundice,"I have been suffering from intense itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain","suffering intense itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5767,Jaundice,"I've been losing weight and experiencing severe itching, nausea, and exhaustion. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight experiencing severe itching , nausea , exhaustion skin become yellow , severe fever dark urine , stomach pain" +5768,Jaundice,"I have been experiencing severe itching, vomiting, fatigue, and weight loss. My fever is high and my skin has turned yellow. My urine is dark and I have been experiencing abdominal pain","experiencing severe itching , vomiting , fatigue , weight loss fever high skin turned yellow urine dark experiencing abdominal pain" +5769,Jaundice,"I've been losing weight, feeling really fatigued, and throwing up a lot. My skin has become yellow, and I have a severe fever. I have dark urine, and I've been having stomach pain.","losing weight , feeling really fatigued , throwing lot skin become yellow , severe fever dark urine , stomach pain" +5770,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. I feel nauseous and my muscles are really sore","experiencing severe itching , chills , vomiting , high fever also sweating lot headache feel nauseous muscles really sore" +5771,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot.","high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot" +5772,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I'm queasy, and my muscles hurt a lot.","high temperature , vomiting , chills , intense itching also headache perspiring lot queasy , muscles hurt lot" +5773,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. My muscles are quite sore, and I feel sick.","strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot muscles quite sore , feel sick" +5774,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, My muscles hurt a lot, and I feel queasy.","along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , muscles hurt lot , feel queasy" +5775,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. My muscles hurt a lot, and I feel sick.","high fever , chills , intense itching addition , headache perspiring lot muscles hurt lot , feel sick" +5776,Malaria,"I've had intense itching all over my body, accompanied by chills and vomiting. My fever is really high and I've been sweating excessively. I also have a headache and feel nauseous. My muscles are really painful.","intense itching body , accompanied chills vomiting fever really high sweating excessively also headache feel nauseous muscles really painful" +5777,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort.","experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort" +5778,Malaria,"Along with severe body itchiness, chills, and nausea, I've been experiencing. I've been severely perspiring and have a very high fever. I'm feeling queasy and also have a headache. Really hurting muscles are me.","along severe body itchiness , chills , nausea , experiencing severely perspiring high fever feeling queasy also headache really hurting muscles" +5779,Malaria,"I've been experiencing severe body itchiness, chills, and vomiting. I have a really high fever, and I've been perspiring a lot. I also feel queasy and have a headache. My muscles are in excruciating discomfort.","experiencing severe body itchiness , chills , vomiting really high fever , perspiring lot also feel queasy headache muscles excruciating discomfort" +5780,Malaria,"I've been experiencing severe body itchiness, along with chills and nausea. I've been perspiring a lot and have an extremely high fever. I feel sick to my stomach and have a headache. My muscles are hurting a lot.","experiencing severe body itchiness , along chills nausea perspiring lot extremely high fever feel sick stomach headache muscles hurting lot" +5781,Malaria,"I'm suffering from intense itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been bothering me.","suffering intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also bothering" +5782,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness" +5783,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache" +5784,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been bothered by nausea as well as muscle ache.","strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot bothered nausea well muscle ache" +5785,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and have been perspiring a lot. I've also been bothered by nausea and muscular ache.","high fever , chills , severe itching addition , headache perspiring lot also bothered nausea muscular ache" +5786,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","high fever , severe itching , chills , vomiting also headache perspiring lot additionally hurting nausea muscle soreness" +5787,Malaria,"I have a high temperature, vomiting, chills, and severe itching. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high temperature , vomiting , chills , severe itching addition , perspiring lot headache also bothered nausea muscle ache" +5788,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me discomfort.","experiencing severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing discomfort" +5789,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache" +5790,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache.","strong itchiness , chills , nausea , high temperature plaguing along headache , also perspiring lot also bothered nausea muscle ache" +5791,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. I have a headache and am also perspiring a lot. I've been uncomfortable from nausea and muscle ache, too.","along intense scratching , chills , nausea , high fever , also feeling really unwell headache also perspiring lot uncomfortable nausea muscle ache ," +5792,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been suffering from nausea as well as muscle ache.","high fever , chills , intense itching addition , headache perspiring lot suffering nausea well muscle ache" +5793,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot discomfort also brought nausea muscle ache" +5794,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable.","intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable" +5795,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles.","experiencing lot scratching , chills , vomiting , fever also headache perspiring lot terrible nausea soreness muscles" +5796,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache.","experienced severe itching , chills , nausea , high fever besides headache , also perspiring lot terrible nausea muscle ache" +5797,Malaria,"I have a high fever, chills, and severe itching. Along with my headache and excessive sweating, I've been terrible with nausea and muscle ache.","high fever , chills , severe itching along headache excessive sweating , terrible nausea muscle ache" +5798,Malaria,"I have a high fever, chills, and severe itching. In addition, I have a headache and am perspiring a lot. I've been feeling awful with nausea and muscle ache.","high fever , chills , severe itching addition , headache perspiring lot feeling awful nausea muscle ache" +5799,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been causing me a lot of discomfort.","experiencing severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain causing lot discomfort" +5800,Malaria,"I've had a high temperature, vomiting, chills, and intense itching. I also have a headache and am perspiring a lot. I've been really uncomfortable lately from nausea and muscle ache.","high temperature , vomiting , chills , intense itching also headache perspiring lot really uncomfortable lately nausea muscle ache" +5801,Malaria,"Strong itchiness, chills, nausea, and a high temperature have been plaguing me. Besides having a headache, I'm also perspiring a lot. I've been suffering from severe muscle pain and nausea.","strong itchiness , chills , nausea , high temperature plaguing besides headache , also perspiring lot suffering severe muscle pain nausea" +5802,Malaria,"Along with my intense scratching, chills, nausea, and high fever, I've also been feeling really unwell. Along with my headache and excessive sweating, I've been suffering from severe muscle pain and nausea.","along intense scratching , chills , nausea , high fever , also feeling really unwell along headache excessive sweating , suffering severe muscle pain nausea" +5803,Malaria,"I've had a high fever, chills, and intense itching. In addition, I have a headache and am perspiring a lot. I've been in a lot of agony from muscle ache and nausea.","high fever , chills , intense itching addition , headache perspiring lot lot agony muscle ache nausea" +5804,Malaria,"I've had intense itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been bothering me.","intense itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also bothering" +5805,Malaria,"I've been experiencing a lot of scratching, chills, vomiting, and a fever. I also have a headache and am perspiring a lot. Additionally hurting me have been nausea and muscle soreness.","experiencing lot scratching , chills , vomiting , fever also headache perspiring lot additionally hurting nausea muscle soreness" +5806,Malaria,"I've experienced severe itching, chills, nausea, and a high fever. Along with having a headache, I'm also perspiring a lot. I've also been bothered by nausea and muscle ache.","experienced severe itching , chills , nausea , high fever along headache , also perspiring lot also bothered nausea muscle ache" +5807,Malaria,"I have a high fever, chills, and severe itching. I have a headache and am also perspiring a lot. I've been bothered by nausea as well as muscle ache.","high fever , chills , severe itching headache also perspiring lot bothered nausea well muscle ache" +5808,Malaria,"I've been experiencing severe itching, chills, vomiting, and a high fever. In addition, I have a headache and am perspiring a lot. I've also been bothered by nausea and muscular ache.","experiencing severe itching , chills , vomiting , high fever addition , headache perspiring lot also bothered nausea muscular ache" +5809,Malaria,"I'm suffering from severe itching, chills, vomiting, and a high fever. I've also been sweating a lot and have a headache. Nausea and muscle pain have also been causing me discomfort.","suffering severe itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain also causing discomfort" +5810,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache" +5811,Malaria,"I have a high fever, severe itching, chills, and vomiting. In addition, I've been perspiring a lot and have a headache. I've also been bothered by nausea and muscle ache.","high fever , severe itching , chills , vomiting addition , perspiring lot headache also bothered nausea muscle ache" +5812,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. Besides having a headache, I've been perspiring a lot. I've been uncomfortable from nausea and muscle ache, too.","strong itchiness , chills , nausea , high fever part current condition besides headache , perspiring lot uncomfortable nausea muscle ache ," +5813,Malaria,"Strong itchiness, chills, nausea, and a high fever are all part of my current condition. In addition, I have a headache and have been perspiring a lot. I've been suffering from nausea as well as muscle ache.","strong itchiness , chills , nausea , high fever part current condition addition , headache perspiring lot suffering nausea well muscle ache" +5814,Malaria,"I have a high fever, severe itching, chills, and vomiting. I also have a headache and have been perspiring a lot. My discomfort has also been brought on by nausea and muscle ache.","high fever , severe itching , chills , vomiting also headache perspiring lot discomfort also brought nausea muscle ache" +5815,Malaria,"I've been experiencing intense itching, chills, vomiting, and a high fever. I'm also sweating a lot and have a headache. Nausea and muscle pain have been making me feel miserable.","experiencing intense itching , chills , vomiting , high fever also sweating lot headache nausea muscle pain making feel miserable" +5816,Malaria,"Intense scratching, chills, nausea, and a high temperature have been plaguing me. I also have a headache and am perspiring a lot. I've been terrible with nausea and soreness in my muscles.","intense scratching , chills , nausea , high temperature plaguing also headache perspiring lot terrible nausea soreness muscles" +5817,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Besides having a headache, I'm also perspiring a lot. I've been terrible with nausea and muscle ache.","along high fever , chills , vomiting , severe itching besides headache , also perspiring lot terrible nausea muscle ache" +5818,Malaria,"Along with a high fever, I've had chills, vomiting, and severe itching. Along with my headache and excessive sweating, I've been feeling awful with nausea and muscle ache.","along high fever , chills , vomiting , severe itching along headache excessive sweating , feeling awful nausea muscle ache" +5819,Malaria,"I've had severe itching, chills, vomiting, and a high fever. I'm also sweating excessively and have a headache. Nausea and muscle pain have also been causing me a lot of discomfort.","severe itching , chills , vomiting , high fever also sweating excessively headache nausea muscle pain also causing lot discomfort" +5820,urinary tract infection,"Frequent urges to urinate with little output, pain during urination, cloudy or bloody urine, strong or foul-smelling urine, pelvic pain, low fever, nausea and vomiting","frequent urges urinate little output , pain urination , cloudy bloody urine , strong foul smelling urine , pelvic pain , low fever , nausea vomiting" +5821,urinary tract infection,"I get frequent urges to urinate at night with little output, and a lot of pain during urination. The urine is coludy and bloody and sometime foul smelling, and I get nauseous","get frequent urges urinate night little output , lot pain urination urine coludy bloody sometime foul smelling , get nauseous" +5822,urinary tract infection,I get a burning sensation when I pee. Sometimes a lot of pain and foul smelling urine. I have been getting more urges to urinate at night,get burning sensation pee sometimes lot pain foul smelling urine getting urges urinate night +5823,urinary tract infection,I have been getting blood in my pee. Sometimes I get nauseous while peeing. This often almost coincides with me having a high temperature,getting blood pee sometimes get nauseous peeing often almost coincides high temperature +5824,urinary tract infection,"My pee looks cloudy and has storng and foul smell. I frequently get an urge to urinate at night, and have been getting high temperatures since these symptoms strted showing","pee looks cloudy storng foul smell frequently get urge urinate night , getting high temperatures since symptoms strted showing" +5825,urinary tract infection,"I have pain in my abdomen, and often get feverish. I have sudden and strong urges to pee. The pain is almost constant, and often increases at night time. My pee almost always has a foul smell","pain abdomen , often get feverish sudden strong urges pee pain almost constant , often increases night time pee almost always foul smell" +5826,urinary tract infection,"I have been frequently getting sudden strong urges to pee. There is blood in my pee sometimes and it is very foul smelling. I think I have an infection, what do I do?","frequently getting sudden strong urges pee blood pee sometimes foul smelling think infection ," +5827,urinary tract infection,"I get blood in my pee sometimes and sometimes get nauseous whie peeing. I also have a bad smell in my pee and sometimes get high temperatures at nights, help me","get blood pee sometimes sometimes get nauseous whie peeing also bad smell pee sometimes get high temperatures nights , help" +5828,urinary tract infection,"I have pain in my lower abdomen, and get a buring sensation in my pee. I also have been getting low temperatures since I started to get these other symptoms. I have been weak because of this","pain lower abdomen , get buring sensation pee also getting low temperatures since started get symptoms weak" +5829,urinary tract infection,There is blood in my urine and I have a low fever. My head hurts almost all the time and I get very strong uncontrollable urges to pee. I have been having pain in lower back also ,blood urine low fever head hurts almost time get strong uncontrollable urges pee pain lower back also +5830,urinary tract infection,I have been having low temperatures and bloody pee since some days now. My head hurts like crazy and pee also smells very foul. I have almost no control on my peeing and get very sudden urges,low temperatures bloody pee since days head hurts like crazy pee also smells foul almost control peeing get sudden urges +5831,urinary tract infection,I have pain near my pelvic region and vomit a lot. Sometimes there is blood in my pee and there is almost a very foul smell in my urine.I sometimes get headches and have trouble sleeping due to this,pain near pelvic region vomit lot sometimes blood pee almost foul smell urine sometimes get headches trouble sleeping due +5832,urinary tract infection,"I have to constantly to go the bathroom to relieve myself, but cant seem to empty my bladder. I get these very strong and uncontrollable urges to pee and sometimes get dark or bloody pee","constantly go bathroom relieve , cant seem empty bladder get strong uncontrollable urges pee sometimes get dark bloody pee" +5833,urinary tract infection,I been having very low temperatues and a very foul smelling pee. The area near my kidneys hurt a lot and I cant seem to hold my pee. I often get these uncontrollable urges,low temperatues foul smelling pee area near kidneys hurt lot cant seem hold pee often get uncontrollable urges +5834,urinary tract infection,"I have to go the bathroom all the time, but the urine output is very low often just a few drops. My stomach hurts a lot and and cant seem to be able to control my urges to pee","go bathroom time , urine output low often drops stomach hurts lot cant seem able control urges pee" +5835,urinary tract infection,My is pee is dark and often bloody and often has a very unfathomable smell. I have been having temperature fluctuations pretty frequently and often am not able to sleep at night because of this,pee dark often bloody often unfathomable smell temperature fluctuations pretty frequently often able sleep night +5836,urinary tract infection,I have been having pain in my bladder and have been getting ,pain bladder getting +5837,urinary tract infection,I have been urinating with blood in it. I occasionally feel queasy when urinating. I frequently almost have a fever at the same time.,urinating blood occasionally feel queasy urinating frequently almost fever time +5838,urinary tract infection,"My pee has a strong, unpleasant scent and a hazy appearance. Since these symptoms started appearing, I regularly feel the desire to urinate at night and have been experiencing high temperatures","pee strong , unpleasant scent hazy appearance since symptoms started appearing , regularly feel desire urinate night experiencing high temperatures" +5839,urinary tract infection,"My stomach hurts, and I frequently acquire a temperature. I experience sudden, intense cravings to urinate. The discomfort is virtually always there and frequently gets worse at night. My pee nearly always smells bad.","stomach hurts , frequently acquire temperature experience sudden , intense cravings urinate discomfort virtually always frequently gets worse night pee nearly always smells bad" +5840,urinary tract infection,"I've been experiencing frequent, intense, abrupt cravings to urinate. Sometimes I get blood in my pee, and it smells awful. What should I do if I believe I have an infection?","experiencing frequent , intense , abrupt cravings urinate sometimes get blood pee , smells awful believe infection" +5841,urinary tract infection,I occasionally urinate with blood in it and occasionally feel queasy while doing so. Help! I also occasionally get high temps at night and have a terrible odour coming from my pee.,occasionally urinate blood occasionally feel queasy help also occasionally get high temps night terrible odour coming pee +5842,urinary tract infection,"I have lower abdominal ache and a bursting sensation when I urinate. Since I began to experience these additional symptoms, I have also been experiencing low body temperatures. I've been weak as a result of this.","lower abdominal ache bursting sensation urinate since began experience additional symptoms , also experiencing low body temperatures weak result" +5843,urinary tract infection,"I have a mild temperature and blood in my pee. My head hurts almost constantly, and I frequently experience severe, involuntary desires to urinate. Additionally, I've been experiencing lower back ache","mild temperature blood pee head hurts almost constantly , frequently experience severe , involuntary desires urinate additionally , experiencing lower back ache" +5844,urinary tract infection,"Since a few days ago, I've been experiencing low temperatures and bloody urination. My head is in excruciating pain, and my urine smells awful. I can hardly control when I urinate, and the impulses come on suddenly.","since days ago , experiencing low temperatures bloody urination head excruciating pain , urine smells awful hardly control urinate , impulses come suddenly" +5845,urinary tract infection,"I frequently vomit and get discomfort at my pelvic area. My urine occasionally smells almost unbearably bad, and there is occasionally blood in it. Because of my headaches at times, I have problems falling asleep.","frequently vomit get discomfort pelvic area urine occasionally smells almost unbearably bad , occasionally blood headaches times , problems falling asleep" +5846,urinary tract infection,"I have to use the restroom frequently to relieve myself, but I can't seem to get my bladder empty. I occasionally get severe, uncontrolled desires to urinate, as well as black or crimson urine.","use restroom frequently relieve , seem get bladder empty occasionally get severe , uncontrolled desires urinate , well black crimson urine" +5847,urinary tract infection,"I've been experiencing really low moods and very bad urine odour. I can't seem to keep my urine back, and the area near my kidneys hurts a lot. I frequently experience these irrational cravings.","experiencing really low moods bad urine odour seem keep urine back , area near kidneys hurts lot frequently experience irrational cravings" +5848,urinary tract infection,"I have to use the restroom frequently, yet only a few drops of pee are usually produced. My stomach aches a lot, and I can't seem to control the desire to urinate.","use restroom frequently , yet drops pee usually produced stomach aches lot , seem control desire urinate" +5849,urinary tract infection,"My urine is frequently black, red, and has a really strange odour. I have been experiencing temperature changes very regularly, which usually prevents me from sleeping at night.","urine frequently black , red , really strange odour experiencing temperature changes regularly , usually prevents sleeping night" +5850,urinary tract infection,Blood has been found in my urination. I sometimes have nausea when urinating. I regularly feel like I'm almost feverish.,blood found urination sometimes nausea urinating regularly feel like almost feverish +5851,urinary tract infection,My pee smells strongly and is cloudy in appearance. I've had high temperatures and a regular urge to urinate at night since these symptoms first materialised.,pee smells strongly cloudy appearance high temperatures regular urge urinate night since symptoms first materialised +5852,urinary tract infection,"I've been having frequent, strong, sudden urges to urinate. I occasionally urinate with blood in it, and the stench is horrible. What ought I to do if I think I'm infected?","frequent , strong , sudden urges urinate occasionally urinate blood , stench horrible ought think infected" +5853,urinary tract infection,"On rare occasions, I pee with blood in it and have mild nausea. Help! I also occasionally experience high nighttime temperatures and a dreadful urine odour.","rare occasions , pee blood mild nausea help also occasionally experience high nighttime temperatures dreadful urine odour" +5854,urinary tract infection,"My lower abdomen hurts, and when I urinate, it feels like it's exploding. I've been having low body temps ever since I started having these new symptoms. Because of this, I've been weak.","lower abdomen hurts , urinate , feels like exploding low body temps ever since started new symptoms , weak" +5855,urinary tract infection,"Blood is in my pee, and I have a low body temperature. I have practically continual headaches and often strong, uncontrollable need to urinate. In addition, I've started having lower back pain.","blood pee , low body temperature practically continual headaches often strong , uncontrollable need urinate addition , started lower back pain" +5856,urinary tract infection,"I've had low temps and bloody urine for the past four days. My pee smells terrible, and my head hurts like hell. I scarcely have any control over when I urinate, and the urges strike without warning.","low temps bloody urine past four days pee smells terrible , head hurts like hell scarcely control urinate , urges strike without warning" +5857,urinary tract infection,"I regularly vomit and get pelvic pain. There is occasionally blood in my pee, and it occasionally has an absolutely intolerable odour. I occasionally have trouble falling asleep because of my migraines.","regularly vomit get pelvic pain occasionally blood pee , occasionally absolutely intolerable odour occasionally trouble falling asleep migraines" +5858,urinary tract infection,"I need to relieve myself regularly, but I can't seem to get my bladder to empty. On sometimes, I get intense, uncontrollable urges to urinate, along with dark or red urine.","need relieve regularly , seem get bladder empty sometimes , get intense , uncontrollable urges urinate , along dark red urine" +5859,urinary tract infection,"My spirits have been incredibly low, and my pee smells awful. My kidney region hurts a lot, and I can't seem to hold my urine in. I get these unreasonable urges all the time.","spirits incredibly low , pee smells awful kidney region hurts lot , seem hold urine get unreasonable urges time" +5860,urinary tract infection,"I have to go to the bathroom a lot, but generally only a few drops of urine come out. I have severe stomach pains and an overwhelming want to urinate.","go bathroom lot , generally drops urine come severe stomach pains overwhelming want urinate" +5861,urinary tract infection,"My urine often has a weird odour, is crimson or black in colour, and both. My body's temperature has been fluctuating often, which typically keeps me up at night.","urine often weird odour , crimson black colour , body temperature fluctuating often , typically keeps night" +5862,urinary tract infection,I noticed blood in my urinating. I occasionally feel sick after urinating. I frequently feel as though I have a fever.,noticed blood urinating occasionally feel sick urinating frequently feel though fever +5863,urinary tract infection,"My pee has a strong odour and a hazy look. Since these symptoms started, I've had high temperatures and frequent nighttime urges to urinate.","pee strong odour hazy look since symptoms started , high temperatures frequent nighttime urges urinate" +5864,urinary tract infection,I occasionally urinate with blood in it and feel a little queasy. Help! I also occasionally get horrible pee odours and excessive overnight temps.,occasionally urinate blood feel little queasy help also occasionally get horrible pee odours excessive overnight temps +5865,urinary tract infection,"My lower abdomen aches, and it feels like it may explode when I urinate. Since I began experiencing these new symptoms, my body temperature has been consistently low. That's why I've been weak.","lower abdomen aches , feels like may explode urinate since began experiencing new symptoms , body temperature consistently low weak" +5866,urinary tract infection,"In the last four days, I've experienced low temperatures and blood in my pee. My head hurts so much and my urine smells awful. The desires to urinate seldom come on cue, and I hardly ever have any control over when they do.","last four days , experienced low temperatures blood pee head hurts much urine smells awful desires urinate seldom come cue , hardly ever control" +5867,urinary tract infection,"My pee frequently has an odd smell and is either red or black, or both. The frequent changes in my body temperature usually keep me awake at night.","pee frequently odd smell either red black , frequent changes body temperature usually keep awake night" +5868,urinary tract infection,My pee smells strongly and seems cloudy. I've had fevers and frequent overnight urination needs ever since these symptoms began.,pee smells strongly seems cloudy fevers frequent overnight urination needs ever since symptoms began +5869,urinary tract infection,"I've had low temps and blood in my urine for the past three days. My pee smells terrible, and my head hurts so much. Urinary urges seldom occur on cue, and I almost never have any control over when they do.","low temps blood urine past three days pee smells terrible , head hurts much urinary urges seldom occur cue , almost never control" +5870,allergy,"I have a runny nose and I am sneezing all the time. My eyes are itchy and often watery, and I am coughing all the time. My head hurts and all the time","runny nose sneezing time eyes itchy often watery , coughing time head hurts time" +5871,allergy,I have sore throat and I am sneezing all the time. Sometimes I have swelling on my face like my lips and near my eyes. I just cant stop sneezing once I start sneezing,sore throat sneezing time sometimes swelling face like lips near eyes cant stop sneezing start sneezing +5872,allergy,I hace difficulty in breething and shortness of breath. I cough uncontrollably and get itchy eyes and swelling on my face and other body parts,hace difficulty breething shortness breath cough uncontrollably get itchy eyes swelling face body parts +5873,allergy,I have a nasal congestion and blocked nose. Sometimes at night I have chest pain and tightness. I have also lost my sense of smell and taste,nasal congestion blocked nose sometimes night chest pain tightness also lost sense smell taste +5874,allergy,I have asthma like symptoms like wheezing and difficulty breathing. I often get fever and have headaches. I feel tired all the time,asthma like symptoms like wheezing difficulty breathing often get fever headaches feel tired time +5875,allergy,"I feel tired all the time, I have lost my taste and have a really sore throat. I also get feverish and often have muscle aches. Sometimes my whole body just cramps up","feel tired time , lost taste really sore throat also get feverish often muscle aches sometimes whole body cramps" +5876,allergy,I have been experiencing a loss of appetite and have difficulty swallowing food. I have been suffering from sore throat and runnny nose also.,experiencing loss appetite difficulty swallowing food suffering sore throat runnny nose also +5877,allergy,"I feel fatigued all the time, and have a tingling sensation in my throat. I have also developed flaky skin. Sometimes I get puffy eyes and sometimes puffs up too.","feel fatigued time , tingling sensation throat also developed flaky skin sometimes get puffy eyes sometimes puffs" +5878,allergy,"I have stomach cramps, nausea and diarrhea. My throat is swollen, and I have difficulty breathing. Sometimes at night night I get chest pain and nauseous.","stomach cramps , nausea diarrhea throat swollen , difficulty breathing sometimes night night get chest pain nauseous" +5879,allergy,I have itchy and red skin. Sometimes these result in flaking. My face and lips puff up and causes a lot of inconvinience. I get watery eyes sometimes and headches when the puffing gets severe,itchy red skin sometimes result flaking face lips puff causes lot inconvinience get watery eyes sometimes headches puffing gets severe +5880,allergy,"I often sneeze and have a runny nose. My eyes are scratchy and frequently runny, and I frequently cough. My head hurts constantly.","often sneeze runny nose eyes scratchy frequently runny , frequently cough head hurts constantly" +5881,allergy,"I often sneeze and have a sore throat. My lips and the area around my eyes occasionally swell. Once I start sneezing, I just can't stop.","often sneeze sore throat lips area around eyes occasionally swell start sneezing , stop" +5882,allergy,"I have trouble breathing and get short of breath. I have a dry, hacking cough, itchy eyes, and swelling all over my face and body.","trouble breathing get short breath dry , hacking cough , itchy eyes , swelling face body" +5883,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort at night. I've also lost my ability to taste and smell.,plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability taste smell +5884,allergy,"I get symptoms of asthma, such as wheezing and breathing problems. I frequently have headaches and fever. All the time, I feel exhausted.","get symptoms asthma , wheezing breathing problems frequently headaches fever time , feel exhausted" +5885,allergy,"I always feel exhausted, have bad taste, and have an extremely scratchy throat. I also have muscular pain and heat. My entire body simply cramps up occasionally.","always feel exhausted , bad taste , extremely scratchy throat also muscular pain heat entire body simply cramps occasionally" +5886,allergy,"I've been losing my appetite, and I also have trouble swallowing. My nose has been running, and I have a sore throat.","losing appetite , also trouble swallowing nose running , sore throat" +5887,allergy,I'm always worn out and experiencing a tingle in my throat. I've also started to have dry skin. My eyes occasionally swell up,always worn experiencing tingle throat also started dry skin eyes occasionally swell +5888,allergy,"I feel queasy, nauseous, and dizzy. I have a swelling throat and am having breathing issues. I occasionally have chest discomfort and nausea at night.","feel queasy , nauseous , dizzy swelling throat breathing issues occasionally chest discomfort nausea night" +5889,allergy,"My skin is red and scratchy. These can occasionally flake. My cheeks and lips swell, which is really annoying. I occasionally have headaches and runny eyes because to the puffing.","skin red scratchy occasionally flake cheeks lips swell , really annoying occasionally headaches runny eyes puffing" +5890,allergy,"I frequently sneeze, and my nose runs. I constantly cough, and my eyes are sore and watery. My head hurts all the time.","frequently sneeze , nose runs constantly cough , eyes sore watery head hurts time" +5891,allergy,I have a sore throat and frequently sneeze. Sometimes the skin around my eyes and my lips swells. I just can't stop sneezing once I get going.,sore throat frequently sneeze sometimes skin around eyes lips swells stop sneezing get going +5892,allergy,"I have respiratory issues and experience breathlessness. My face and torso are swollen, my eyes are itching, and I have a dry, hacking cough.","respiratory issues experience breathlessness face torso swollen , eyes itching , dry , hacking cough" +5893,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. Additionally, I've lost my senses of taste and smell.","nasal congestion blocked nose occasion , night , stiffness chest pain additionally , lost senses taste smell" +5894,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I constantly feel worn out.","get breathing issues wheezing , asthma symptoms regularly fevers headaches constantly feel worn" +5895,allergy,"I always feel worn out, have unpleasant taste in my mouth, and have a really itchy throat. My muscles are also hot and hurting. Sometimes my whole body just cramps up.","always feel worn , unpleasant taste mouth , really itchy throat muscles also hot hurting sometimes whole body cramps" +5896,allergy,"Along with losing my appetite, I've been having swallowing issues. I have a sore throat, and my nose has been running.","along losing appetite , swallowing issues sore throat , nose running" +5897,allergy,I always feel exhausted and have a tickle in my throat. My skin has also started to feel dry. I occasionally get ocular swelling.,always feel exhausted tickle throat skin also started feel dry occasionally get ocular swelling +5898,allergy,"I'm dizzy, nauseated, and shaky. I'm having trouble breathing since my throat is swollen. On occasion, throughout the night, my chest hurts and I feel sick.","dizzy , nauseated , shaky trouble breathing since throat swollen occasion , throughout night , chest hurts feel sick" +5899,allergy,"My skin is irritated and inflamed. Sometimes, they can flake. My lips and cheeks expand, and it is really unpleasant. Because of the puffing, I occasionally have headaches and wet eyes.","skin irritated inflamed sometimes , flake lips cheeks expand , really unpleasant puffing , occasionally headaches wet eyes" +5900,allergy,"My nose runs and I sneeze a lot. My eyes are wet and hurt, and I cough all the time. My head aches constantly.","nose runs sneeze lot eyes wet hurt , cough time head aches constantly" +5901,allergy,"I sneeze a lot and have a sore throat. My lips and the skin surrounding my eyes will occasionally swell. Once I start, I just can't stop sneezing.","sneeze lot sore throat lips skin surrounding eyes occasionally swell start , stop sneezing" +5902,allergy,"I have breathing problems and become out of breath easily. My eyes ache, I have a dry, hacking cough, and my face and body are bloated.","breathing problems become breath easily eyes ache , dry , hacking cough , face body bloated" +5903,allergy,I have a plugged nose and nasal congestion. I occasionally have stiffness and chest discomfort during the night. I've also lost my ability to smell and taste.,plugged nose nasal congestion occasionally stiffness chest discomfort night also lost ability smell taste +5904,allergy,"I get wheezing and breathing difficulties, which are asthma symptoms. I frequently have headaches and fever. I'm continuously exhausted.","get wheezing breathing difficulties , asthma symptoms frequently headaches fever continuously exhausted" +5905,allergy,"I always feel exhausted, have a bad taste in my mouth, and my throat itches a lot. Also heated and painful are my muscles. My entire body can cramp up at times.","always feel exhausted , bad taste mouth , throat itches lot also heated painful muscles entire body cramp times" +5906,allergy,"I've been losing my appetite and having trouble swallowing. My nose has been running, and I have a sore throat.","losing appetite trouble swallowing nose running , sore throat" +5907,allergy,I always get a tickle in my throat and feel fatigued. My skin has begun to feel dry as well. I have ocular edema on occasion.,always get tickle throat feel fatigued skin begun feel dry well ocular edema occasion +5908,allergy,"I feel queasy, sick, and wobbly. My throat is enlarged and making it difficult for me to breathe. My chest occasionally pains all through the night, and I occasionally feel ill.","feel queasy , sick , wobbly throat enlarged making difficult breathe chest occasionally pains night , occasionally feel ill" +5909,allergy,My skin is swollen and itchy. They may occasionally flake. It hurts a lot when my cheeks and lips swell. I occasionally get headaches and watery eyes from the puffing.,skin swollen itchy may occasionally flake hurts lot cheeks lips swell occasionally get headaches watery eyes puffing +5910,allergy,"I sneeze a lot and my nose is running. My eyes ache and are damp, and I frequently croak. My head hurts all the time.","sneeze lot nose running eyes ache damp , frequently croak head hurts time" +5911,allergy,"I have a sore throat and a lot of sneezing. There are times when the skin around my eyes and my lips swell. I find that once I start, I just cannot stop.","sore throat lot sneezing times skin around eyes lips swell find start , stop" +5912,allergy,"I have trouble breathing and easily get out of breath. My face and torso are swollen, my eyes hurt, and I have a dry, hacking cough.","trouble breathing easily get breath face torso swollen , eyes hurt , dry , hacking cough" +5913,allergy,"I have nasal congestion and a blocked nose. On occasion, during the night, I have stiffness and chest pain. I've also lost my senses of taste and smell.","nasal congestion blocked nose occasion , night , stiffness chest pain also lost senses taste smell" +5914,allergy,"I get breathing issues and wheezing, which are asthma symptoms. I regularly have fevers and headaches. I'm always worn out.","get breathing issues wheezing , asthma symptoms regularly fevers headaches always worn" +5915,allergy,"I frequently have exhaustion, a terrible taste in my mouth, and throat itchiness. My muscles are also burning and uncomfortable. Sometimes I have cramps all throughout my body.","frequently exhaustion , terrible taste mouth , throat itchiness muscles also burning uncomfortable sometimes cramps throughout body" +5916,allergy,"My appetite has decreased, and I've been having swallowing issues. I have a sore throat, and my nose has been running.","appetite decreased , swallowing issues sore throat , nose running" +5917,allergy,"My throat always tickles, and I'm worn out. Additionally, my skin has started to feel dry. Ocular inflammation occasionally affects me.","throat always tickles , worn additionally , skin started feel dry ocular inflammation occasionally affects" +5918,allergy,"I'm nauseous, ill, and shaky. I have a huge throat, which makes it tough for me to breathe. I occasionally have nighttime chest aches and occasional sickness.","nauseous , ill , shaky huge throat , makes tough breathe occasionally nighttime chest aches occasional sickness" +5919,allergy,"My skin is itching and swollen. Sometimes, they could flake. My lips and cheeks swelling aches a lot. The puffing occasionally gives me headaches and runny eyes.","skin itching swollen sometimes , could flake lips cheeks swelling aches lot puffing occasionally gives headaches runny eyes" +5920,gastroesophageal reflux disease,I often get aburning sensation in my throat while and especially after eating. Sometimes this also leaves a sour or bitter taste in my mouth and I get nauseos beacuse of this,often get aburning sensation throat especially eating sometimes also leaves sour bitter taste mouth get nauseos beacuse +5921,gastroesophageal reflux disease,"I have heartburn and indigestion. I often vomit whatever I eat and have difficultly swallowing food, beacuse the food gets stuck in my throat. I have a nagging pain in my upper abdomen","heartburn indigestion often vomit whatever eat difficultly swallowing food , beacuse food gets stuck throat nagging pain upper abdomen" +5922,gastroesophageal reflux disease,"I have frequent belching and burping. I have chest pain that often radiates to the back of my neck, jaw and arm. I get a feeling of tightness and pressure on my chest","frequent belching burping chest pain often radiates back neck , jaw arm get feeling tightness pressure chest" +5923,gastroesophageal reflux disease,"I have a persistent sour taste in my mouth, even when I haven't eaten anything acidic. I get frequent hiccups and a feeling of lump in my throat.","persistent sour taste mouth , even eaten anything acidic get frequent hiccups feeling lump throat" +5924,gastroesophageal reflux disease,"I have a chronic bad breath and a sour taste in my mouth, It sometimes gets difficult to swallow food because of this tingling sensation in my throat","chronic bad breath sour taste mouth , sometimes gets difficult swallow food tingling sensation throat" +5925,gastroesophageal reflux disease,"I get frequent heartburn and indigestion, especially eating spicy foods or fatty foods. I get chest pain that gets worse when I lie down or bend over. I also often have chest pain","get frequent heartburn indigestion , especially eating spicy foods fatty foods get chest pain gets worse lie bend also often chest pain" +5926,gastroesophageal reflux disease,"I have a loss of appetite and difficulty swallowing. I often have this persistent feeling of fullness, even after eating small meals. I usually throw up and get heartburn and a tingling sensation in my throat","loss appetite difficulty swallowing often persistent feeling fullness , even eating small meals usually throw get heartburn tingling sensation throat" +5927,gastroesophageal reflux disease,"I have a sore throat or hoarseness, especially in the morning. I have a chronic nagging pain in my throat and bad breath. I also have frequent belching","sore throat hoarseness , especially morning chronic nagging pain throat bad breath also frequent belching" +5928,gastroesophageal reflux disease,"I have a feeling of food or acid backing up into my throat. I chest pain which gets worse if I lie down. I get frequent heartburn or indigestion, after eating food and vomit it out","feeling food acid backing throat chest pain gets worse lie get frequent heartburn indigestion , eating food vomit" +5929,gastroesophageal reflux disease,I feel uneasiness after eating and usually vomit whatever I've eaten. I always have this pain in my abdomen and have really bad acid reflux,feel uneasiness eating usually vomit whatever eaten always pain abdomen really bad acid reflux +5930,gastroesophageal reflux disease,"My throat frequently feels like it is burning, especially after eating. Additionally, I occasionally get a sour or bitter aftertaste, which causes me to feel queasy.","throat frequently feels like burning , especially eating additionally , occasionally get sour bitter aftertaste , causes feel queasy" +5931,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and I have trouble swallowing food because it gets caught in my throat. My upper abdomen is bothering me.","indigestion heartburn frequently vomit everything eat , trouble swallowing food gets caught throat upper abdomen bothering" +5932,gastroesophageal reflux disease,"My burping and belching are frequent. I frequently get chest discomfort that spreads to the back of my neck, jaw, and arm. I have pressure and tension in my chest.","burping belching frequent frequently get chest discomfort spreads back neck , jaw , arm pressure tension chest" +5933,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have hiccups and a lump in my throat.","even anything acidic stomach , constantly sour taste mouth frequently hiccups lump throat" +5934,gastroesophageal reflux disease,"I always have foul breath and a sour taste in my mouth, and occasionally, the tingling in my throat makes it difficult to swallow meals.","always foul breath sour taste mouth , occasionally , tingling throat makes difficult swallow meals" +5935,gastroesophageal reflux disease,"I frequently have heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lie down or stoop over, my chest discomfort worsens. My chest hurts quite a bit too.","frequently heartburn indigestion , particularly consuming spicy fatty foods lie stoop , chest discomfort worsens chest hurts quite bit" +5936,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after eating little meals, I frequently get this lingering sense of fullness. Typically, I have heartburn, nausea, and tingling in my throat.","feel like eating , swallowing challenging even eating little meals , frequently get lingering sense fullness typically , heartburn , nausea , tingling throat" +5937,gastroesophageal reflux disease,"I often wake up with a sore throat or a scratchy voice. My throat hurts constantly, and I also have poor breath. I also frequently burp.","often wake sore throat scratchy voice throat hurts constantly , also poor breath also frequently burp" +5938,gastroesophageal reflux disease,"I feel as though acid or food is backing up into my throat. My chest hurts, and lying down makes it worse. After eating, I frequently have heartburn or indigestion and throw up.","feel though acid food backing throat chest hurts , lying makes worse eating , frequently heartburn indigestion throw" +5939,gastroesophageal reflux disease,"After eating, I get queasy and frequently throw up everything I've eaten. I always get severe abdominal ache and have terrible acid reflux.","eating , get queasy frequently throw everything eaten always get severe abdominal ache terrible acid reflux" +5940,gastroesophageal reflux disease,"Especially after eating, my throat regularly feels like it is burning. I also occasionally get a bitter or sour aftertaste, which makes me feel sick.","especially eating , throat regularly feels like burning also occasionally get bitter sour aftertaste , makes feel sick" +5941,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly vomit everything I eat, and food gets stuck in my throat, making it difficult for me to swallow. I have a pain in my upper abdomen.","heartburn indigestion regularly vomit everything eat , food gets stuck throat , making difficult swallow pain upper abdomen" +5942,gastroesophageal reflux disease,"Belching and burping are common in me. I often get chest pain that radiates to the back of my neck, my jaw, and my arm. In my chest, there is pressure and stress.","belching burping common often get chest pain radiates back neck , jaw , arm chest , pressure stress" +5943,gastroesophageal reflux disease,"I get a sour taste in my mouth all the time, even when there is nothing acidic in my stomach. I often get the hiccups and have a lump in my throat.","get sour taste mouth time , even nothing acidic stomach often get hiccups lump throat" +5944,gastroesophageal reflux disease,"I periodically find it challenging to swallow food due to the tingling in my throat, bad breath, and bad taste in my mouth.","periodically find challenging swallow food due tingling throat , bad breath , bad taste mouth" +5945,gastroesophageal reflux disease," regularly have indigestion and heartburn, especially after eating spicy or fatty foods. My chest pain is worse when I hunch over or lie down. Additionally, my chest hurts a lot.","regularly indigestion heartburn , especially eating spicy fatty foods chest pain worse hunch lie additionally , chest hurts lot" +5946,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling.","mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling" +5947,gastroesophageal reflux disease,I frequently get a scratchy voice or a painful throat when I wake up. I have bad breath and a continual sore throat. I also vomit a lot.,frequently get scratchy voice painful throat wake bad breath continual sore throat also vomit lot +5948,gastroesophageal reflux disease,My throat feels as though food or acid is backing up. Lying down only makes my chest pain more. I regularly have heartburn or indigestion after eating and puke up.,throat feels though food acid backing lying makes chest pain regularly heartburn indigestion eating puke +5949,gastroesophageal reflux disease,I often feel sick after eating and puke up the entire meal. I constantly get excruciating acid reflux and severe stomach pain.,often feel sick eating puke entire meal constantly get excruciating acid reflux severe stomach pain +5950,gastroesophageal reflux disease,"My throat often feels like it is burning, especially after eating. A bitter or sour aftertaste that I occasionally experience also makes me feel unwell.","throat often feels like burning , especially eating bitter sour aftertaste occasionally experience also makes feel unwell" +5951,gastroesophageal reflux disease,"I have indigestion and heartburn. I frequently vomit everything I eat, and it is hard for me to swallow since food gets caught in my throat. My upper abdomen is in discomfort.","indigestion heartburn frequently vomit everything eat , hard swallow since food gets caught throat upper abdomen discomfort" +5952,gastroesophageal reflux disease,"My tendency is to belch and burp frequently. I frequently get chest pain that spreads to my arm, jaw, and the back of my neck. There is pressure and stress in my chest.","tendency belch burp frequently frequently get chest pain spreads arm , jaw , back neck pressure stress chest" +5953,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups.","even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups" +5954,gastroesophageal reflux disease,"Periodically, the tingling in my throat, poor breath, and bad taste in my mouth make it difficult for me to swallow meals.","periodically , tingling throat , poor breath , bad taste mouth make difficult swallow meals" +5955,gastroesophageal reflux disease,"I routinely experience heartburn and indigestion, particularly after consuming spicy or fatty foods. When I lean forward or lie down, my chest discomfort becomes worse. My chest hurts a lot as well.","routinely experience heartburn indigestion , particularly consuming spicy fatty foods lean forward lie , chest discomfort becomes worse chest hurts lot well" +5956,gastroesophageal reflux disease,"I don't feel like eating, and swallowing is challenging. Even after little meals, I frequently get this lingering sensation of fullness. My normal symptoms include nausea, heartburn, and tingling in my throat.","feel like eating , swallowing challenging even little meals , frequently get lingering sensation fullness normal symptoms include nausea , heartburn , tingling throat" +5957,gastroesophageal reflux disease,"I regularly wake up with a scratchy voice or a sore throat. My throat is constantly irritated, and I have horrible breath. I frequently throw up.","regularly wake scratchy voice sore throat throat constantly irritated , horrible breath frequently throw" +5958,gastroesophageal reflux disease,"It feels like food or acid is backing up in my throat. My chest discomfort only becomes worse while I'm lying down. After eating, I frequently have heartburn or indigestion and throw up.","feels like food acid backing throat chest discomfort becomes worse lying eating , frequently heartburn indigestion throw" +5959,gastroesophageal reflux disease,"After eating, I frequently feel unwell and throw up the entire meal. I suffer from painful acid reflux and excruciating stomach discomfort all the time.","eating , frequently feel unwell throw entire meal suffer painful acid reflux excruciating stomach discomfort time" +5960,gastroesophageal reflux disease,"Especially after eating, my throat frequently feels scorching. I occasionally get a bitter or sour aftertaste that makes me feel sick.","especially eating , throat frequently feels scorching occasionally get bitter sour aftertaste makes feel sick" +5961,gastroesophageal reflux disease,"I have heartburn and indigestion. I regularly throw up everything I eat, and swallowing is difficult for me since food gets stuck in my throat. I'm experiencing pain in my upper abdomen.","heartburn indigestion regularly throw everything eat , swallowing difficult since food gets stuck throat experiencing pain upper abdomen" +5962,gastroesophageal reflux disease,"I have a tendency to burp and belch regularly. I often get chest discomfort that radiates to my arm, jaw, and neck. My chest feels tight and stressed.","tendency burp belch regularly often get chest discomfort radiates arm , jaw , neck chest feels tight stressed" +5963,gastroesophageal reflux disease,"I always get a sour taste in my mouth, even when I don't have anything acidic in my stomach. I regularly have the hiccups and a knot in my throat.","always get sour taste mouth , even anything acidic stomach regularly hiccups knot throat" +5964,gastroesophageal reflux disease,"I occasionally have trouble swallowing food because of the tingling in my throat, terrible breath, and bad taste in my mouth.","occasionally trouble swallowing food tingling throat , terrible breath , bad taste mouth" +5965,gastroesophageal reflux disease,"I frequently have indigestion and heartburn, especially after eating spicy or fatty foods. My chest hurts when I lean forward or while I'm lying down. Additionally, my chest hurts a lot.","frequently indigestion heartburn , especially eating spicy fatty foods chest hurts lean forward lying additionally , chest hurts lot" +5966,gastroesophageal reflux disease,I regularly feel sick after eating and puke up the entire meal. I constantly get horrible acid reflux agony and stomach discomfort.,regularly feel sick eating puke entire meal constantly get horrible acid reflux agony stomach discomfort +5967,gastroesophageal reflux disease,"My throat often feels like it's on fire, especially after eating. I occasionally get an aftertaste that is sour or bitter and makes me feel nauseous.","throat often feels like fire , especially eating occasionally get aftertaste sour bitter makes feel nauseous" +5968,gastroesophageal reflux disease,"Even when I don't have anything acidic in my stomach, I constantly have a sour taste in my mouth. I frequently have a lump in my throat and the hiccups.","even anything acidic stomach , constantly sour taste mouth frequently lump throat hiccups" +5969,gastroesophageal reflux disease,"I'm not in the mood to eat, and swallowing is difficult. I often have this lingering feeling of fullness even after little meals. My typical symptoms include heartburn, nausea, and throat tingling.","mood eat , swallowing difficult often lingering feeling fullness even little meals typical symptoms include heartburn , nausea , throat tingling" +5970,drug reaction,"I have a metallic taste in my mouth, and also have a sense of change of taste and smell. Sometimes get very unbearable joint pain and muscle pain","metallic taste mouth , also sense change taste smell sometimes get unbearable joint pain muscle pain" +5971,drug reaction,"I have headaches and migraines, have been having difficulty sleeping. I have been having muscle twitching and tremors. Sometimes I get lightheaded","headaches migraines , difficulty sleeping muscle twitching tremors sometimes get lightheaded" +5972,drug reaction,I have fever and feel very dizzy and lightheaded. My heart is beating very fast and I feel very confused. I am not able to think very clearing and everything feels very foggy,fever feel dizzy lightheaded heart beating fast feel confused able think clearing everything feels foggy +5973,drug reaction,I have rashes on my skin and these flake off from time to time. This leaves me prone to infection. My fingers start twitching and sometimes I experience tremors.,rashes skin flake time time leaves prone infection fingers start twitching sometimes experience tremors +5974,drug reaction,I feel very nauseous and have chest pain. Recently I have been experiencing chest pain. I feel very uneasy and often sweat profusely,feel nauseous chest pain recently experiencing chest pain feel uneasy often sweat profusely +5975,drug reaction,"I have itching all over my body, and rashes in my chest and back. I get flaky skin from time to time and often this leaves marks on my body.","itching body , rashes chest back get flaky skin time time often leaves marks body" +5976,drug reaction,I have hair loss and there is a significant change in the texture of my hair. I have dry and itchy sclap and increased dandruff. My skin is also getting very dry,hair loss significant change texture hair dry itchy sclap increased dandruff skin also getting dry +5977,drug reaction,I am experiencing a decrease in my sex drive and difficulty to fucntion sexually. I feel very light headed and confused and often experince brain fog,experiencing decrease sex drive difficulty fucntion sexually feel light headed confused often experince brain fog +5978,drug reaction,I am experiencing changes in my menstrual cycle and unexpected vaginal discharge. I often get mood swings and feel agitated from time to time,experiencing changes menstrual cycle unexpected vaginal discharge often get mood swings feel agitated time time +5979,drug reaction,I have experinenced significant weight gain and become very obese. I have changes in my appetite and cravings for different foods,experinenced significant weight gain become obese changes appetite cravings different foods +5980,drug reaction,I have difficulty in maintianing concentration and very low mental clarity. I often forget things and in general have difficulty remembering things,difficulty maintianing concentration low mental clarity often forget things general difficulty remembering things +5981,drug reaction,"In addition to experiencing a change in taste and fragrance, I also have a metallic aftertaste in my tongue. occasionally get excruciating joint and muscular pain","addition experiencing change taste fragrance , also metallic aftertaste tongue occasionally get excruciating joint muscular pain" +5982,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My muscles have been trembling and twitching. I sometimes feel dizzy.","suffer migraines headaches , trouble falling asleep muscles trembling twitching sometimes feel dizzy" +5983,drug reaction,"I'm feeling really lightheaded and dizzy when I have a temperature. My mind is completely muddled, and my heart is racing. I find it difficult to think clearly, and everything seems quite hazy.","feeling really lightheaded dizzy temperature mind completely muddled , heart racing find difficult think clearly , everything seems quite hazy" +5984,drug reaction,"My skin occasionally peels off the rashes that I have. This makes me more vulnerable to infections. My hands begin to shake, and occasionally I have tremors.","skin occasionally peels rashes makes vulnerable infections hands begin shake , occasionally tremors" +5985,drug reaction,I have severe nausea and chest discomfort. I have been having chest discomfort lately. I often shiver a lot and feel really nervous.,severe nausea chest discomfort chest discomfort lately often shiver lot feel really nervous +5986,drug reaction,"I have rashes in my chest and back and itch all over my body. I occasionally have flaky skin, which frequently creates markings on my body.","rashes chest back itch body occasionally flaky skin , frequently creates markings body" +5987,drug reaction,"My hair's texture has significantly changed, and I'm experiencing hair loss. My scalp is dry and itching, and my dandruff is becoming worse. My skin is also becoming really dry.","hair texture significantly changed , experiencing hair loss scalp dry itching , dandruff becoming worse skin also becoming really dry" +5988,drug reaction,"My sex desire has decreased, and I'm finding it harder to function sexually. I regularly have brain fog and feel quite dizzy and disoriented.","sex desire decreased , finding harder function sexually regularly brain fog feel quite dizzy disoriented" +5989,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I frequently experience mood swings and experience occasional agitation.","monthly cycle changed , unexpected vaginal discharge frequently experience mood swings experience occasional agitation" +5990,drug reaction,"I've gained a lot of weight and am now quite fat. My appetite varies, and I have desires for various things.","gained lot weight quite fat appetite varies , desires various things" +5991,drug reaction,"I struggle to maintain focus, and my mental clarity is really poor. I have trouble remembering things and frequently forget stuff.","struggle maintain focus , mental clarity really poor trouble remembering things frequently forget stuff" +5992,drug reaction,My tongue also has a metallic aftertaste in addition to a change in taste and scent. occasionally get acute muscle and joint ache,tongue also metallic aftertaste addition change taste scent occasionally get acute muscle joint ache +5993,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. My entire body has been shaking and twitching. Sometimes I become lightheaded.","headaches migraines , difficulties sleeping entire body shaking twitching sometimes become lightheaded" +5994,drug reaction,"When I have a fever, I feel quite woozy and lightheaded. My heart is pounding, and my head is absolutely foggy. My ability to think properly is impaired, and everything appears to be somewhat blurry.","fever , feel quite woozy lightheaded heart pounding , head absolutely foggy ability think properly impaired , everything appears somewhat blurry" +5995,drug reaction,"My rashes occasionally cause my skin to peel off. I'm more susceptible to illnesses as a result. I start to tremble sometimes, and my hands start to shake.","rashes occasionally cause skin peel susceptible illnesses result start tremble sometimes , hands start shake" +5996,drug reaction,"Both chest pain and extreme nausea are present. Recently, my chest has been hurting. I frequently shiver a lot and am really anxious.","chest pain extreme nausea present recently , chest hurting frequently shiver lot really anxious" +5997,drug reaction,"My body itches all over, and I have rashes on my back and chest. My skin can be flaky on sometimes, which commonly results in body marks.","body itches , rashes back chest skin flaky sometimes , commonly results body marks" +5998,drug reaction,"I'm losing hair, and my hair's texture has considerably altered. My dandruff is becoming worse, and my dry, itchy scalp. My skin is getting quite dry as well.","losing hair , hair texture considerably altered dandruff becoming worse , dry , itchy scalp skin getting quite dry well" +5999,drug reaction,"My desire for sex has dropped, and I'm having trouble having sex. I frequently get brain fog, as well as feeling somewhat bewildered.","desire sex dropped , trouble sex frequently get brain fog , well feeling somewhat bewildered" +6000,drug reaction,"I've noticed a difference in my monthly cycle and an unexpected vaginal discharge. I become irritable every now and again, and my moods swing a lot.","noticed difference monthly cycle unexpected vaginal discharge become irritable every , moods swing lot" +6001,drug reaction,I have put on a lot of weight and am now very obese. I have different urges and different appetites.,put lot weight obese different urges different appetites +6002,drug reaction,I have terrible mental clarity and find it difficult to stay focused. I regularly forget things and have problems remembering things.,terrible mental clarity find difficult stay focused regularly forget things problems remembering things +6003,drug reaction,"Along with a change in taste and smell, my tongue also has a metallic aftertaste. occasionally get severe joint and muscular pain","along change taste smell , tongue also metallic aftertaste occasionally get severe joint muscular pain" +6004,drug reaction,"I suffer migraines and headaches, and I've been having trouble falling asleep. My whole body has been trembling and shivering. At times, I have dizziness.","suffer migraines headaches , trouble falling asleep whole body trembling shivering times , dizziness" +6005,drug reaction,"I am quite queasy and dizzy when I have a temperature. My brain is completely cloudy, and my heart is racing. I'm having trouble thinking straight, and everything seems a little fuzzy.","quite queasy dizzy temperature brain completely cloudy , heart racing trouble thinking straight , everything seems little fuzzy" +6006,drug reaction,"Sometimes my skin starts to flake off from my rashes. I'm more prone to becoming sick as a result. On occasion, my hands begin to quiver and I begin to tremble.","sometimes skin starts flake rashes prone becoming sick result occasion , hands begin quiver begin tremble" +6007,drug reaction,There is severe nausea and chest discomfort. My chest has been aching lately. I'm really nervous and shiver a lot of the time.,severe nausea chest discomfort chest aching lately really nervous shiver lot time +6008,drug reaction,"I have rashes on my back and chest, and my entire body itches. My skin may be dry and flaky at times, which frequently leaves body marks.","rashes back chest , entire body itches skin may dry flaky times , frequently leaves body marks" +6009,drug reaction,"I'm shedding hair, and the texture of my hair has changed significantly. My dry, itchy scalp and dandruff are becoming worse. My skin is also becoming pretty dry.","shedding hair , texture hair changed significantly dry , itchy scalp dandruff becoming worse skin also becoming pretty dry" +6010,drug reaction,"I no longer want to have sex, and it's difficult for me to do so. I regularly have brain fog and a sense of confusion.","longer want sex , difficult regularly brain fog sense confusion" +6011,drug reaction,"My monthly cycle has changed, and I've had an unexpected vaginal discharge. I occasionally lose my temper, and my moods change a lot.","monthly cycle changed , unexpected vaginal discharge occasionally lose temper , moods change lot" +6012,drug reaction,I've gained a lot of weight and am currently quite fat. I have many inclinations and cravings.,gained lot weight currently quite fat many inclinations cravings +6013,drug reaction,I have awful mental clarity and have trouble focusing. I frequently forget things and struggle with memory.,awful mental clarity trouble focusing frequently forget things struggle memory +6014,drug reaction,"My tongue also changes in taste and scent, leaving a metallic aftertaste. can have excruciating joint and muscle pain","tongue also changes taste scent , leaving metallic aftertaste excruciating joint muscle pain" +6015,drug reaction,"I have headaches and migraines, and I have been having difficulties sleeping. I've been shaking and shivering all over. Sometimes I become lightheaded.","headaches migraines , difficulties sleeping shaking shivering sometimes become lightheaded" +6016,drug reaction,"When I have a temperature, I feel pretty nauseous and lightheaded. My heart is pounding, and my mind is absolutely foggy. Everything feels a little hazy to me, and I'm having difficulties thinking clearly.","temperature , feel pretty nauseous lightheaded heart pounding , mind absolutely foggy everything feels little hazy , difficulties thinking clearly" +6017,drug reaction,"My rashes occasionally cause my skin to start to fall off. I'm more likely to get ill as a result. My hands occasionally start to tremble, and I start to shake.","rashes occasionally cause skin start fall likely get ill result hands occasionally start tremble , start shake" +6018,drug reaction,"Chest pain and severe nausea are present. Recently, my chest has been hurting. I tremble a lot and am quite anxious.","chest pain severe nausea present recently , chest hurting tremble lot quite anxious" +6019,drug reaction,"My entire body itches, and I have rashes on my back and chest. Sometimes my skin might be dry and flaky, which often results in body stains.","entire body itches , rashes back chest sometimes skin might dry flaky , often results body stains" +6020,peptic ulcer disease,"I have a burning sensation in my upper abdomen, ofetn between or at night. I have heartburn and indigestion and often feel very nauseous","burning sensation upper abdomen , ofetn night heartburn indigestion often feel nauseous" +6021,peptic ulcer disease,I have bloating and a feeling of uneasiness. I have been experiencing weight loss and a loss of appetite. Sometimes I have dark and tarry stools and blood in my vomit,bloating feeling uneasiness experiencing weight loss loss appetite sometimes dark tarry stools blood vomit +6022,peptic ulcer disease,I have difficulty swallowing food and often get a sensation of the food getting stuck in my throat. I have constant belching and bloating. There is a persitent sour taste in my mouth,difficulty swallowing food often get sensation food getting stuck throat constant belching bloating persitent sour taste mouth +6023,peptic ulcer disease,I have been having bloody stools which has resulted in bloos loss and loss of iron. Thiis has caused me anemia and I feel very weak in general,bloody stools resulted bloos loss loss iron thiis caused anemia feel weak general +6024,peptic ulcer disease,"I have persistant, gnawing hunger and apetite. Sometimes I get abdominal cramps and spasms. There is bloating and gas after eating which causes me a great deal of uneasiness","persistant , gnawing hunger apetite sometimes get abdominal cramps spasms bloating gas eating causes great deal uneasiness" +6025,peptic ulcer disease,"I have changes in my bowel movements, such as constipation and diarrhea. I have a loss of appetite and energy and often feel very fatigued","changes bowel movements , constipation diarrhea loss appetite energy often feel fatigued" +6026,peptic ulcer disease,I have abdominal pain and it gets only worse if I bend over or lie down. I feel discomfort when I eat certain foods such as spicy or acidic food. Sometimes I get loose stools because of this,abdominal pain gets worse bend lie feel discomfort eat certain foods spicy acidic food sometimes get loose stools +6027,peptic ulcer disease,I have difficulty sleeping due to abdominal pain or discomfort. I have a loss of appetite and feel fatigued after going to the bathroom. I feel very tited all the time,difficulty sleeping due abdominal pain discomfort loss appetite feel fatigued going bathroom feel tited time +6028,peptic ulcer disease,I have a sour acidic taste in my mouth. I have frequent belching and burping. I have a feeling of pressure or fullness in my upper abdomen that last for a few hours,sour acidic taste mouth frequent belching burping feeling pressure fullness upper abdomen last hours +6029,peptic ulcer disease,I have unintended weight loss and difficulty gaining weight. I have pain and discomfort that is relieved by taking antacids. My mouth tastes very bad,unintended weight loss difficulty gaining weight pain discomfort relieved taking antacids mouth tastes bad +6030,peptic ulcer disease,"Occasionally throughout the day or at night, I have burning in my upper abdomen. I get indigestion, heartburn, and frequent bouts of extreme nausea.","occasionally throughout day night , burning upper abdomen get indigestion , heartburn , frequent bouts extreme nausea" +6031,peptic ulcer disease,"Bloating and unease are both present in me. I've been losing weight and losing interest in food. I occasionally get tarry, black stools and vomit that contains blood.","bloating unease present losing weight losing interest food occasionally get tarry , black stools vomit contains blood" +6032,peptic ulcer disease,"I have trouble swallowing, and I frequently feel like food is getting stuck in my throat. I feel bloated and belch constantly. I always get a sour taste in my mouth.","trouble swallowing , frequently feel like food getting stuck throat feel bloated belch constantly always get sour taste mouth" +6033,peptic ulcer disease,"My bloody stools have caused me to lose iron and bloos, among other things. I now have anaemia from this, and I generally feel quite weak.","bloody stools caused lose iron bloos , among things anaemia , generally feel quite weak" +6034,peptic ulcer disease,"My hunger and appetite are persistent and ravenous. Periodically, my stomach may cramp and spasm. After eating, I have bloating and gas, which makes me quite uncomfortable.","hunger appetite persistent ravenous periodically , stomach may cramp spasm eating , bloating gas , makes quite uncomfortable" +6035,peptic ulcer disease,"My bowel motions have changed; they've been constipated and diarrhoeal. I lack energy, appetite, and frequently feel really exhausted.","bowel motions changed constipated diarrhoeal lack energy , appetite , frequently feel really exhausted" +6036,peptic ulcer disease,"I have stomach ache, and bending over or lying down just makes it worse. When I consume certain meals, such as spicy or acidic cuisine, I have discomfort. This sometimes causes me to have loose stools.","stomach ache , bending lying makes worse consume certain meals , spicy acidic cuisine , discomfort sometimes causes loose stools" +6037,peptic ulcer disease,"I have trouble falling or staying asleep because of stomach ache. After using the restroom, I feel drained and lose my appetite. I constantly feel really anxious.","trouble falling staying asleep stomach ache using restroom , feel drained lose appetite constantly feel really anxious" +6038,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. My burping and belching are frequent. For a few hours, I get pressure or fullness in my upper belly.","mouth filled sour , acidic flavour burping belching frequent hours , get pressure fullness upper belly" +6039,peptic ulcer disease,I lose weight unintentionally and find it challenging to acquire weight. I use antacids to ease the pain and discomfort I experience. My mouth feels horrible.,lose weight unintentionally find challenging acquire weight use antacids ease pain discomfort experience mouth feels horrible +6040,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I get heartburn, indigestion, and regular episodes of severe nausea.","occasionally burning upper abdomen throughout day night get heartburn , indigestion , regular episodes severe nausea" +6041,peptic ulcer disease,"I feel bloated and uneasy at the same time. I've been losing weight, and I no longer like eating. I occasionally get bloody vomit and dark, tarry stools.","feel bloated uneasy time losing weight , longer like eating occasionally get bloody vomit dark , tarry stools" +6042,peptic ulcer disease,I often feel like food is getting caught in my throat and have problems swallowing. I feel bloated and frequently belch. I constantly have a bitter aftertaste.,often feel like food getting caught throat problems swallowing feel bloated frequently belch constantly bitter aftertaste +6043,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. Because of this, I now have anaemia and usually feel fairly weak.","lost lot stuff bloody stools , including iron bloos , anaemia usually feel fairly weak" +6044,peptic ulcer disease,"My appetite and chronic hunger are both ferocious. My stomach may occasionally ache and spasm. I have gas and bloating after eating, which is really painful.","appetite chronic hunger ferocious stomach may occasionally ache spasm gas bloating eating , really painful" +6045,peptic ulcer disease,My bowel movements have become constipated and diarrheal. I often feel quite tired and lack both energy and appetite.,bowel movements become constipated diarrheal often feel quite tired lack energy appetite +6046,peptic ulcer disease,"Bending down or reclining down only makes my stomach feel more. I have pain after eating some foods, such as hot or acidic food. I occasionally get loose stools as a result of this.","bending reclining makes stomach feel pain eating foods , hot acidic food occasionally get loose stools result" +6047,peptic ulcer disease,"Due to a stomach discomfort, I have problems sleeping or staying asleep. I am exhausted after using the bathroom and lose my appetite. I'm quite nervous all the time.","due stomach discomfort , problems sleeping staying asleep exhausted using bathroom lose appetite quite nervous time" +6048,peptic ulcer disease,"A sour, acidic taste is all over my mouth. Belching and burping are common in me. I have pressure or fullness in my upper abdomen for a few hours.","sour , acidic taste mouth belching burping common pressure fullness upper abdomen hours" +6049,peptic ulcer disease,"I unknowingly lose weight and find it difficult to gain weight. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so much.","unknowingly lose weight find difficult gain weight relieve pain discomfort feel , take antacids mouth hurts much" +6050,peptic ulcer disease,"On occasion, throughout the day or at night, I have burning in my upper abdomen. I frequently get extreme nauseous episodes, heartburn, and indigestion.","occasion , throughout day night , burning upper abdomen frequently get extreme nauseous episodes , heartburn , indigestion" +6051,peptic ulcer disease,"I have both bloating and unease. I no longer like eating because I've been losing weight. I sometimes vomit blood and have tarry, black stools.","bloating unease longer like eating losing weight sometimes vomit blood tarry , black stools" +6052,peptic ulcer disease,I frequently get swallowing issues and the sensation that food is getting stuck in my throat. I regularly belch and feel bloated. My aftertaste is unpleasant all the time.,frequently get swallowing issues sensation food getting stuck throat regularly belch feel bloated aftertaste unpleasant time +6053,peptic ulcer disease,"My bloody stools have caused me to lose a lot of things, including iron and bloos. I now have anaemia as a result, and I typically feel rather weak.","bloody stools caused lose lot things , including iron bloos anaemia result , typically feel rather weak" +6054,peptic ulcer disease,"Both my appetite and ongoing hunger are fierce. There are times when my stomach hurts and cramps. Following a meal, I have very painful gas and bloating.","appetite ongoing hunger fierce times stomach hurts cramps following meal , painful gas bloating" +6055,peptic ulcer disease,Constipated and diarrheal bowel motions have been happening to me. I frequently have a lack of energy and appetite.,constipated diarrheal bowel motions happening frequently lack energy appetite +6056,peptic ulcer disease,"My stomach only feels worse when I stoop or recline. After eating particular meals, such as spicy or acidic cuisine, I have discomfort. This occasionally causes me to have loose stools.","stomach feels worse stoop recline eating particular meals , spicy acidic cuisine , discomfort occasionally causes loose stools" +6057,peptic ulcer disease,"I have a stomach ache that keeps me from falling or staying asleep. After using the restroom, I feel worn out and lose interest in food. I'm constantly pretty anxious.","stomach ache keeps falling staying asleep using restroom , feel worn lose interest food constantly pretty anxious" +6058,peptic ulcer disease,"My mouth is filled with an acidic, sour flavour. Burping and belching are frequent in me. For a few hours, my upper abdomen has felt pressured or full.","mouth filled acidic , sour flavour burping belching frequent hours , upper abdomen felt pressured full" +6059,peptic ulcer disease,I inadvertently lose weight and have a hard time gaining it back. I use antacids to get rid of the pain and discomfort I experience. It aches so much in my mouth.,inadvertently lose weight hard time gaining back use antacids get rid pain discomfort experience aches much mouth +6060,peptic ulcer disease,"I occasionally have burning in my upper abdomen throughout the day or at night. I regularly get severe heartburn, indigestion, and nausea.","occasionally burning upper abdomen throughout day night regularly get severe heartburn , indigestion , nausea" +6061,peptic ulcer disease,"I'm feeling both bloated and uneasy. Because I've been losing weight, I no longer like eating. I occasionally get tarry, black stools and blood in my vomit.","feeling bloated uneasy losing weight , longer like eating occasionally get tarry , black stools blood vomit" +6062,peptic ulcer disease,"I regularly have trouble swallowing, and I sometimes feel like food is becoming trapped in my throat. I frequently feel bloated and belch. Every time, I have a bad aftertaste.","regularly trouble swallowing , sometimes feel like food becoming trapped throat frequently feel bloated belch every time , bad aftertaste" +6063,peptic ulcer disease,"I've lost a lot of stuff because of my bloody stools, including iron and bloos. As a result, I now have anaemia and generally feel rather weak.","lost lot stuff bloody stools , including iron bloos result , anaemia generally feel rather weak" +6064,peptic ulcer disease,I have a strong appetite and am constantly hungry. My stomach occasionally aches and cramps. I have really painful gas and bloating after eating.,strong appetite constantly hungry stomach occasionally aches cramps really painful gas bloating eating +6065,peptic ulcer disease,I've been experiencing bowel movements that are both constipated and diarrhoeic. I often lack the will to eat and energy.,experiencing bowel movements constipated diarrhoeic often lack eat energy +6066,peptic ulcer disease,"Only when I hunch down or lie down does my stomach hurt more. I have pain after eating certain foods, such as hot or acidic food. I occasionally get loose stools as a result of this.","hunch lie stomach hurt pain eating certain foods , hot acidic food occasionally get loose stools result" +6067,peptic ulcer disease,I can't get to sleep or remain asleep because I have a stomach pain. I get exhausted after using the bathroom and stop being hungry. I worry a lot of the time.,get sleep remain asleep stomach pain get exhausted using bathroom stop hungry worry lot time +6068,peptic ulcer disease,"My mouth is filled with a sour, acidic flavour. I have frequent belching and burping. My upper abdomen has felt pressed in or full for the past few hours.","mouth filled sour , acidic flavour frequent belching burping upper abdomen felt pressed full past hours" +6069,peptic ulcer disease,"I unintentionally lose weight and find it challenging to gain it back. To relieve the pain and discomfort I feel, I take antacids. My mouth hurts so severely right now.","unintentionally lose weight find challenging gain back relieve pain discomfort feel , take antacids mouth hurts severely right" +6070,diabetes,I have increased thirst and frequent urination. I often have a dry mouth and throat. Recently I have been having increased hunger and appetite,increased thirst frequent urination often dry mouth throat recently increased hunger appetite +6071,diabetes,I have blurred vision and it only seems to be getting worse. I feel fatigued and tired all the time. I also feel very dizzy and light headed at times,blurred vision seems getting worse feel fatigued tired time also feel dizzy light headed times +6072,diabetes,I have a dry mouth and throat. I also have been experiencing an increased appetite and hunger. However I do feel very tired at times,dry mouth throat also experiencing increased appetite hunger however feel tired times +6073,diabetes,I have slow healing of wounds and cuts. I have this tingling sensation in my hand and numbness in both my hands and feet,slow healing wounds cuts tingling sensation hand numbness hands feet +6074,diabetes,I have mood changes and have difficulty concentrating. My mind feels hazy and foggy at times and it gets difficult to do even regular chores,mood changes difficulty concentrating mind feels hazy foggy times gets difficult even regular chores +6075,diabetes,I have a feeling of tremors and muscle twitching. I have decreased sense of smell or taste and I feel fatigued. Sometimes I have a feeling of rapid hearbeat or palipatations,feeling tremors muscle twitching decreased sense smell taste feel fatigued sometimes feeling rapid hearbeat palipatations +6076,diabetes,I have rashes and skin irritations especially in the folds of the skin. There is also very slow healing of any cuts and bruises I have on my skin,rashes skin irritations especially folds skin also slow healing cuts bruises skin +6077,diabetes,I have a frequent need to urinate and often have these uncontrollable urges. I feel dizzy and often confused. I have also been loss of visuals,frequent need urinate often uncontrollable urges feel dizzy often confused also loss visuals +6078,diabetes,I have difficulty breathing especially during physical activity. I have unusual sweating and flushing. I frequently get yeast infections,difficulty breathing especially physical activity unusual sweating flushing frequently get yeast infections +6079,diabetes,I have persistent dry cough. My infections dont seem to be healing and I have palpitations. I also have this problem of sore throat that does seem to go away,persistent dry cough infections dont seem healing palpitations also problem sore throat seem go away +6080,diabetes,"I'm drinking more water and urinating more frequently. My throat and mouth are frequently dry. Recently, my appetite and hunger have both grown.","drinking water urinating frequently throat mouth frequently dry recently , appetite hunger grown" +6081,diabetes,"My vision is foggy, and it seems to be growing worse. I'm constantly feeling worn out and exhausted. Additionally, I occasionally have severe lightheadedness and dizziness.","vision foggy , seems growing worse constantly feeling worn exhausted additionally , occasionally severe lightheadedness dizziness" +6082,diabetes,My throat and mouth are dry. I've also been feeling more hungry and more hungry. But sometimes I do feel quite exhausted.,throat mouth dry also feeling hungry hungry sometimes feel quite exhausted +6083,diabetes,I have a sluggish wound and reduced healing rate. My hands and feet are both numb and have this tingling sensation.,sluggish wound reduced healing rate hands feet numb tingling sensation +6084,diabetes,"I struggle to focus and have emotional swings. At times, my head seems cloudy and foggy, making it challenging for me to do even simple tasks.","struggle focus emotional swings times , head seems cloudy foggy , making challenging even simple tasks" +6085,diabetes,I feel my muscles trembling and shaking. I feel worn out and my senses of taste and smell have diminished. Sometimes I have palpitations or a quick heartbeat.,feel muscles trembling shaking feel worn senses taste smell diminished sometimes palpitations quick heartbeat +6086,diabetes,"I experience skin irritations and rashes, especially in my skin's creases. Any wounds and bruises I have on my skin also heal quite slowly.","experience skin irritations rashes , especially skin creases wounds bruises skin also heal quite slowly" +6087,diabetes,I frequently feel the want to urinate and frequently have these strong cravings. I frequently feel woozy and bewildered. I've also had sight loss.,frequently feel want urinate frequently strong cravings frequently feel woozy bewildered also sight loss +6088,diabetes,"I have trouble breathing, especially when exercising. I'm flushed and sweating in an unexpected way. I have yeast infections a lot.","trouble breathing , especially exercising flushed sweating unexpected way yeast infections lot" +6089,diabetes,"I have a chronic dry cough. I have palpitations and my infections don't appear to be getting better. I also have a painful throat issue, although it does seem to go away.","chronic dry cough palpitations infections appear getting better also painful throat issue , although seem go away" +6090,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat regularly feel dry. My appetite and hunger have both increased recently.,water intake frequency urination increased mouth throat regularly feel dry appetite hunger increased recently +6091,diabetes,"I have blurry vision, and it seems to be getting worse. I'm continuously fatigued and worn out. I also occasionally have acute lightheadedness and vertigo.","blurry vision , seems getting worse continuously fatigued worn also occasionally acute lightheadedness vertigo" +6092,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. But on occasion, I do feel rather worn out.","mouth throat dry additionally , growing increasingly hungry occasion , feel rather worn" +6093,diabetes,My wound is healing slowly and at a slower rate. My hands and feet are numb and tingling at the same time.,wound healing slowly slower rate hands feet numb tingling time +6094,diabetes,"I have trouble focusing, and my emotions fluctuate. My brain might seem murky and foggy at times, making it difficult for me to complete even straightforward chores.","trouble focusing , emotions fluctuate brain might seem murky foggy times , making difficult complete even straightforward chores" +6095,diabetes,"My body is shaking and trembling. My senses of taste and smell have gotten weaker, and I feel exhausted. I occasionally have palpitations or a rapid pulse.","body shaking trembling senses taste smell gotten weaker , feel exhausted occasionally palpitations rapid pulse" +6096,diabetes,"I have rashes and skin irritations, especially in the crevices of my skin. My skin bruises and cuts also take a long time to heal.","rashes skin irritations , especially crevices skin skin bruises cuts also take long time heal" +6097,diabetes,I often feel the want to urinate and experience these intense desires. I often feel dizzy and confused. I also lost my sight.,often feel want urinate experience intense desires often feel dizzy confused also lost sight +6098,diabetes,"I have respiratory issues, especially when doing out. Unexpectedly, I'm sweating and flushed. I frequently have yeast infections and urinary tract infections","respiratory issues , especially unexpectedly , sweating flushed frequently yeast infections urinary tract infections" +6099,diabetes,"I constantly have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat hurts occasionally, but it does appear to get better.","constantly dry cough infections seem healing , palpitations throat hurts occasionally , appear get better" +6100,diabetes,"I've been drinking more water and urinating more frequently. My throat and mouth frequently feel dry. Recently, both my hunger and appetite have grown.","drinking water urinating frequently throat mouth frequently feel dry recently , hunger appetite grown" +6101,diabetes,"My vision is foggy, and it appears to be growing worse. I feel exhausted and worn out all the time. I also have severe dizziness and lightheadedness on occasion.","vision foggy , appears growing worse feel exhausted worn time also severe dizziness lightheadedness occasion" +6102,diabetes,"My throat and mouth are dry. I've also been getting hungry more and more. I do, however, occasionally feel rather exhausted.","throat mouth dry also getting hungry , however , occasionally feel rather exhausted" +6103,diabetes,My wound is recovering more slowly now. Both my hands and feet are tingling and going numb. I feel very weak,wound recovering slowly hands feet tingling going numb feel weak +6104,diabetes,"My emotions change, and I have difficulties focusing. At times, my mind might be cloudy and hazy, making it challenging for me to do even simple tasks.","emotions change , difficulties focusing times , mind might cloudy hazy , making challenging even simple tasks" +6105,diabetes,"My entire body is trembling and shaky. I've lost my ability to taste and smell, and I'm worn out. I sometimes get a racing heart or palpitations.","entire body trembling shaky lost ability taste smell , worn sometimes get racing heart palpitations" +6106,diabetes,"I get skin irritations and rashes, especially in my skin's crevices. Cuts and bruises on my skin also take a while to heal.","get skin irritations rashes , especially skin crevices cuts bruises skin also take heal" +6107,diabetes,"I frequently feel the want to urinate and have these strong cravings. I get woozy and disoriented a lot. Moreover, I have lost my vision considerably","frequently feel want urinate strong cravings get woozy disoriented lot moreover , lost vision considerably" +6108,diabetes,"I have breathing problems, especially when I'm outside. I'm suddenly flushed and perspiring. I experience yeast infections and urinary tract infections rather regularly.","breathing problems , especially outside suddenly flushed perspiring experience yeast infections urinary tract infections rather regularly" +6109,diabetes,"I have a dry cough that never stops. I have palpitations and my infections don't appear to be getting better. Sometimes my throat hurts, but it seems to get better.","dry cough never stops palpitations infections appear getting better sometimes throat hurts , seems get better" +6110,diabetes,Both my water intake and frequency of urination have increased. My mouth and throat feel dry a lot. My hunger and appetite have both increased recently.,water intake frequency urination increased mouth throat feel dry lot hunger appetite increased recently +6111,diabetes,"My vision is blurry, and it feels like it's getting worse. All the time, I feel worn out and fatigued. I occasionally have extreme lightheadedness and vertigo as well.","vision blurry , feels like getting worse time , feel worn fatigued occasionally extreme lightheadedness vertigo well" +6112,diabetes,"My mouth and throat are dry. Additionally, I've been growing increasingly hungry. However, I do get periodic bouts of exhaustion.","mouth throat dry additionally , growing increasingly hungry however , get periodic bouts exhaustion" +6113,diabetes,My wound is healing more slowly these days. My feet and hands are tingling and becoming numb. I feel really fragile.,wound healing slowly days feet hands tingling becoming numb feel really fragile +6114,diabetes,"My emotions fluctuate, and it's hard for me to concentrate. My mind can be foggy and foggy at times, making it difficult for me to perform even simple chores.","emotions fluctuate , hard concentrate mind foggy foggy times , making difficult perform even simple chores" +6115,diabetes,"I'm shaking and trembling all over. I've lost my sense of taste and smell, and I'm exhausted. I occasionally get palpitations or a speeding heart.","shaking trembling lost sense taste smell , exhausted occasionally get palpitations speeding heart" +6116,diabetes,"Particularly in the crevices of my skin, I have skin rashes and irritations. My skin bruises and cuts take a while to heal as well.","particularly crevices skin , skin rashes irritations skin bruises cuts take heal well" +6117,diabetes,I regularly experience these intense urges and the want to urinate. I frequently feel drowsy and lost. I've also significantly lost my vision.,regularly experience intense urges want urinate frequently feel drowsy lost also significantly lost vision +6118,diabetes,"I have trouble breathing, especially outside. I start to feel hot and start to sweat. I frequently have urinary tract infections and yeast infections.","trouble breathing , especially outside start feel hot start sweat frequently urinary tract infections yeast infections" +6119,diabetes,"I constantly sneeze and have a dry cough. My infections don't seem to be healing, and I have palpitations. My throat does ache occasionally, but it usually gets better.","constantly sneeze dry cough infections seem healing , palpitations throat ache occasionally , usually gets better" diff --git a/frontend/Symptoms_Detection/requirements.txt b/frontend/Symptoms_Detection/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..4489866223583adf1b03a66f505a56ee43adecce --- /dev/null +++ b/frontend/Symptoms_Detection/requirements.txt @@ -0,0 +1,10 @@ +pandas +regex +nltk +sckit-learn +numpy +streamlit +tensorflow +opencv-python +opencv-python-headless +opencv-contrib-python diff --git a/frontend/Symptoms_Detection/training_data.csv b/frontend/Symptoms_Detection/training_data.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd73f9f53d7757b10a5b9e0a8457d0e5f8dade92 --- /dev/null +++ b/frontend/Symptoms_Detection/training_data.csv @@ -0,0 +1,4921 @@ +itching,skin_rash,nodal_skin_eruptions,continuous_sneezing,shivering,chills,joint_pain,stomach_pain,acidity,ulcers_on_tongue,muscle_wasting,vomiting,burning_micturition,spotting_ urination,fatigue,weight_gain,anxiety,cold_hands_and_feets,mood_swings,weight_loss,restlessness,lethargy,patches_in_throat,irregular_sugar_level,cough,high_fever,sunken_eyes,breathlessness,sweating,dehydration,indigestion,headache,yellowish_skin,dark_urine,nausea,loss_of_appetite,pain_behind_the_eyes,back_pain,constipation,abdominal_pain,diarrhoea,mild_fever,yellow_urine,yellowing_of_eyes,acute_liver_failure,fluid_overload,swelling_of_stomach,swelled_lymph_nodes,malaise,blurred_and_distorted_vision,phlegm,throat_irritation,redness_of_eyes,sinus_pressure,runny_nose,congestion,chest_pain,weakness_in_limbs,fast_heart_rate,pain_during_bowel_movements,pain_in_anal_region,bloody_stool,irritation_in_anus,neck_pain,dizziness,cramps,bruising,obesity,swollen_legs,swollen_blood_vessels,puffy_face_and_eyes,enlarged_thyroid,brittle_nails,swollen_extremeties,excessive_hunger,extra_marital_contacts,drying_and_tingling_lips,slurred_speech,knee_pain,hip_joint_pain,muscle_weakness,stiff_neck,swelling_joints,movement_stiffness,spinning_movements,loss_of_balance,unsteadiness,weakness_of_one_body_side,loss_of_smell,bladder_discomfort,foul_smell_of urine,continuous_feel_of_urine,passage_of_gases,internal_itching,toxic_look_(typhos),depression,irritability,muscle_pain,altered_sensorium,red_spots_over_body,belly_pain,abnormal_menstruation,dischromic _patches,watering_from_eyes,increased_appetite,polyuria,family_history,mucoid_sputum,rusty_sputum,lack_of_concentration,visual_disturbances,receiving_blood_transfusion,receiving_unsterile_injections,coma,stomach_bleeding,distention_of_abdomen,history_of_alcohol_consumption,fluid_overload,blood_in_sputum,prominent_veins_on_calf,palpitations,painful_walking,pus_filled_pimples,blackheads,scurring,skin_peeling,silver_like_dusting,small_dents_in_nails,inflammatory_nails,blister,red_sore_around_nose,yellow_crust_ooze,prognosis, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,Acne, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection, +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy, +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GERD, +1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chronic cholestasis, +1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer diseae, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes , +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension , +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage), +1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Jaundice, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox, +0,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,hepatitis A, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis B, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis C, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis D, +0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hepatitis E, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis, +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Tuberculosis, +0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold, +0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemmorhoids(piles), +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Osteoarthristis, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Arthritis, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(vertigo) Paroymsal Positional Vertigo, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,Acne, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection, +0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,Psoriasis, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Impetigo, diff --git a/frontend/ai-healthcare-frontend/.gitignore b/frontend/ai-healthcare-frontend/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..2a7eca354a100ba00df1db483852ce479f28f465 --- /dev/null +++ b/frontend/ai-healthcare-frontend/.gitignore @@ -0,0 +1,42 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# React specific +/node_modules +/build +/src/__tests__ +/src/__mocks__ +/src/setupTests.js +/src/serviceWorker.js +/src/reportWebVitals.js + +# VS Code specific +.vscode/ + +# OS specific +.DS_Store +Thumbs.db + +# Others +.env diff --git a/frontend/ai-healthcare-frontend/README.md b/frontend/ai-healthcare-frontend/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1ae0beaaf1c385aaad4856a7eb12c40312ba1a11 --- /dev/null +++ b/frontend/ai-healthcare-frontend/README.md @@ -0,0 +1,68 @@ +# AI Health Care Frontend using React + +This React frontend provides a basic structure for our AI-driven remote healthcare solution. + +![Demo Image](screenshot.jpeg) + +Here's a breakdown of the components: + +1. **App**: The main component that sets up routing and the overall layout. +2. **Sidebar**: Navigation menu for different sections of the application. +3. **Header**: Top bar with the application title and user menu. +4. **Placeholder components for each main feature**: + - **Dashboard** + - **Chatbot Diagnosis** + - **Drug Identification** + - **Remote Consultation** + - **Outbreak Alert** + +### Key features: +- Responsive design with a collapsible sidebar for mobile views. +- React Router for navigation between different sections. +- Tailwind CSS for styling. +- Lucide React icons for visual elements. + +## To use this frontend: + +1. Navigate to the `ai-healthcare-frontend` directory +``` +cd frontend/ai-healthcare-frontend +``` +2. Set up the development environment: + - Ensure you have Node.js installed. If not, download and install it from https://nodejs.org/ + +3. Install necessary dependencies: + ```powershell + npm install react-router-dom lucide-react + ``` + +4. Set up Tailwind CSS: + ```powershell + npm install -D tailwindcss@latest postcss@latest autoprefixer@latest + npx tailwindcss init -p + ``` +5. Run the development server: + + ```powershell + npm start + ``` + +Your default web browser should automatically open to `http://localhost:3000`, where you'll see your React app running. + +## Troubleshooting: +- If you encounter any issues with missing dependencies, install them using `npm install [package-name]`. +- Make sure your PowerShell execution policy allows running scripts. You might need to run `Set-ExecutionPolicy RemoteSigned` in an administrator PowerShell. + + +## Next steps: +1. Implement the content for each placeholder component. +2. Connect the frontend to your Django backend API. +3. Implement state management (e.g., using Redux or React Context) for handling application-wide data. +4. Add more detailed styling and responsiveness to each component. +5. Implement user authentication and authorization. + +## Development Workflow: +1. Keep the terminal in VS Code open with the development server running. +2. Edit your React components in `src/App.js` or create new component files in the `src` directory. +3. The page will automatically reload when you make changes. +4. Check the terminal for any error messages if the page doesn't update as expected. \ No newline at end of file diff --git a/frontend/ai-healthcare-frontend/package-lock.json b/frontend/ai-healthcare-frontend/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..33a71fcca3b339dcd5297ec4d8c95d9b0c6c0b04 --- /dev/null +++ b/frontend/ai-healthcare-frontend/package-lock.json @@ -0,0 +1,31165 @@ +{ + "name": "ai-healthcare-frontend", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "ai-healthcare-frontend", + "version": "0.1.0", + "dependencies": { + "@testing-library/jest-dom": "^5.17.0", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "lucide-react": "^0.417.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-router-dom": "^6.25.1", + "react-scripts": "5.0.1", + "web-vitals": "^2.1.4" + }, + "devDependencies": { + "autoprefixer": "^10.4.19", + "postcss": "^8.4.40", + "tailwindcss": "^3.4.7" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz", + "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==" + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.0.tgz", + "integrity": "sha512-P4fwKI2mjEb3ZU5cnMJzvRsRKGBUcs8jvxIoRmr6ufAY9Xk2Bz7JubRTTivkw55c7WQJfTECeqYVa+HZ0FzREg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.9.tgz", + "integrity": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.9", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-module-transforms": "^7.24.9", + "@babel/helpers": "^7.24.8", + "@babel/parser": "^7.24.8", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.0.tgz", + "integrity": "sha512-mlcTKuQAjczDRwWLIxv+Q925jaMUO8Jl5dxmWJSSGVYfZ4rKMp8daQvVC3rM1G2v8V+/fO0yIVTSLS+2zcB8rg==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "dependencies": { + "@babel/types": "^7.25.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz", + "integrity": "sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==", + "dependencies": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", + "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.0.tgz", + "integrity": "sha512-q0T+dknZS+L5LDazIP+02gEZITG5unzvb6yIjcmj5i0eFrs5ToBV2m2JGH4EsE/gtP8ygEGLGApBgRIZkTm7zg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "dependencies": { + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.0.tgz", + "integrity": "sha512-bIkOa2ZJYn7FHnepzr5iX9Kmz8FjIz4UKzJ9zhX3dnYuVW0xul9RuR3skBfoLu+FPTQw90EHW9rJsSZhyLQ3fQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.0.tgz", + "integrity": "sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.0.tgz", + "integrity": "sha512-dG0aApncVQwAUJa8tP1VHTnmU67BeIQvKafd3raEx315H54FfkZSz3B/TT+33ZQAjatGJA79gZqTtqL5QZUKXw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-decorators": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", + "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz", + "integrity": "sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz", + "integrity": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz", + "integrity": "sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-flow": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.0.tgz", + "integrity": "sha512-CQmfSnK14eYu82fu6GlCwRciHB7mp7oLN+DeyGDDwUr9cMwuSVviJKPXw/YcRYZdB1TdlLJWHHwXwnwD1WnCmQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.7.tgz", + "integrity": "sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", + "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", + "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.0.tgz", + "integrity": "sha512-LZicxFzHIw+Sa3pzgMgSz6gdpsdkfiMObHUzhSIrwKF0+/rP/nuR49u79pSS+zIFJ1FeGeqQD2Dq4QGFbOVvSw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.0.tgz", + "integrity": "sha512-vYAA8PrCOeZfG4D87hmw1KJ1BPubghXP1e2MacRFwECGNKL76dkA38JEwYllbvQCpf/kLxsTtir0b8MtxKoVCw==", + "dependencies": { + "@babel/compat-data": "^7.25.0", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.0", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.0", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.0", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.0", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.37.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", + "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.0.tgz", + "integrity": "sha512-ubALThHQy4GCf6mbb+5ZRNmLLCI7bJ3f8Q6LHBSRlSKSWj5a7dSUzJBLv3VuIhFrFPgjF4IzPF567YG/HSCdZA==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.0.tgz", + "integrity": "sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==", + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz", + "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@remix-run/router": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.18.0.tgz", + "integrity": "sha512-L3jkqmqoSVBVKHfpGZmLrex0lxR5SucGA0sUfFzGctehw+S/ggL9L/0NnC5mw6P8HUWpFZ3nQw3cRApjjWx9Sw==", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz", + "integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@testing-library/dom": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", + "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "peer": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "peer": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "peer": true + }, + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", + "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@testing-library/jest-dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/react/node_modules/@testing-library/dom": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@testing-library/react/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/react/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/react/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/react/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@testing-library/react/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.11", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.11.tgz", + "integrity": "sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.19.5", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", + "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.12", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", + "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/@types/jest/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@types/jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@types/jest/node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/jest/node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + }, + "node_modules/@types/jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + }, + "node_modules/@types/node": { + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.0.tgz", + "integrity": "sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==", + "dependencies": { + "undici-types": "~6.11.1" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.12", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==" + }, + "node_modules/@types/qs": { + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + }, + "node_modules/@types/react": { + "version": "18.3.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", + "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", + "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.9", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", + "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" + }, + "node_modules/@types/ws": { + "version": "8.5.11", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.11.tgz", + "integrity": "sha512-4+q7P5h3SpJxaBft0Dzpbr6lmMaqh0Jr2tbhJZ/luAwvD7ohSCniYkwz/pLxuT2h0EOa6QADgJj1Ko+TzRfZ+w==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz", + "integrity": "sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/bonjour-service": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", + "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserslist": { + "version": "4.23.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz", + "integrity": "sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001643", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz", + "integrity": "sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", + "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==" + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-js": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.37.1.tgz", + "integrity": "sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "dependencies": { + "browserslist": "^4.23.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.37.1.tgz", + "integrity": "sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssdb": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz", + "integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ] + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.2.tgz", + "integrity": "sha512-kc4r3U3V3WLaaZqThjYz/Y6z8tJe+7K0bbjUVo3i+LWIypVdMx5nXCkwRe6SWbY6ILqLdc1rKcKmr3HoH7wjSQ==" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz", + "integrity": "sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==", + "dependencies": { + "aria-query": "~5.1.3", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.9.1", + "axobject-query": "~3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.19", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.35.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", + "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.19", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", + "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ipaddr.js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jake": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", + "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "dependencies": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/launch-editor": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz", + "integrity": "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.417.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.417.0.tgz", + "integrity": "sha512-F/MDUHDter8YMZ7JKQpW/5/+v38tdaoShKX3e+opYsqfCnaHwn+5zz3+lBrMDFMNtSsvxtNpchLIaMpEfsi/4w==", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", + "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.12", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz", + "integrity": "sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz", + "integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "gopd": "^1.0.1", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.40", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz", + "integrity": "sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "6.25.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.25.1.tgz", + "integrity": "sha512-u8ELFr5Z6g02nUtpPAggP73Jigj1mRePSwhS/2nkTrlPU5yEkH1vYzWNyvSnSzeeE2DNqWdH+P8OhIh9wuXhTw==", + "dependencies": { + "@remix-run/router": "1.18.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.25.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.25.1.tgz", + "integrity": "sha512-0tUDpbFvk35iv+N89dWNrJp+afLgd+y4VtorJZuOCXK0kkCWjEvb3vTJM++SYvMEpbVwXKf3FjeVveVEb6JpDQ==", + "dependencies": { + "@remix-run/router": "1.18.0", + "react-router": "6.25.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz", + "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "dependencies": { + "escodegen": "^1.8.1" + } + }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-eval/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-eval/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.includes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz", + "integrity": "sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/tailwindcss": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.7.tgz", + "integrity": "sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.0", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.31.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz", + "integrity": "sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, + "node_modules/undici-types": { + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.11.1.tgz", + "integrity": "sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.93.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz", + "integrity": "sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.4", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "deprecated": "workbox-background-sync@6.6.0", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" + }, + "node_modules/workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "node_modules/workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@adobe/css-tools": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz", + "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==" + }, + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==" + }, + "@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "requires": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + } + }, + "@babel/compat-data": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.0.tgz", + "integrity": "sha512-P4fwKI2mjEb3ZU5cnMJzvRsRKGBUcs8jvxIoRmr6ufAY9Xk2Bz7JubRTTivkw55c7WQJfTECeqYVa+HZ0FzREg==" + }, + "@babel/core": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.9.tgz", + "integrity": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==", + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.9", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-module-transforms": "^7.24.9", + "@babel/helpers": "^7.24.8", + "@babel/parser": "^7.24.8", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/eslint-parser": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.0.tgz", + "integrity": "sha512-mlcTKuQAjczDRwWLIxv+Q925jaMUO8Jl5dxmWJSSGVYfZ4rKMp8daQvVC3rM1G2v8V+/fO0yIVTSLS+2zcB8rg==", + "requires": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "requires": { + "@babel/types": "^7.25.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz", + "integrity": "sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==", + "requires": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", + "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.0", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.0.tgz", + "integrity": "sha512-q0T+dknZS+L5LDazIP+02gEZITG5unzvb6yIjcmj5i0eFrs5ToBV2m2JGH4EsE/gtP8ygEGLGApBgRIZkTm7zg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "requires": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "requires": { + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" + } + }, + "@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-module-transforms": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.0.tgz", + "integrity": "sha512-bIkOa2ZJYn7FHnepzr5iX9Kmz8FjIz4UKzJ9zhX3dnYuVW0xul9RuR3skBfoLu+FPTQw90EHW9rJsSZhyLQ3fQ==", + "requires": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/helper-replace-supers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==" + }, + "@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" + }, + "@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==" + }, + "@babel/helper-wrap-function": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", + "requires": { + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" + } + }, + "@babel/helpers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "requires": { + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" + } + }, + "@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "requires": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + } + }, + "@babel/parser": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.0.tgz", + "integrity": "sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==" + }, + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.0.tgz", + "integrity": "sha512-dG0aApncVQwAUJa8tP1VHTnmU67BeIQvKafd3raEx315H54FfkZSz3B/TT+33ZQAjatGJA79gZqTtqL5QZUKXw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" + } + }, + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-decorators": "^7.24.7" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "requires": {} + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", + "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz", + "integrity": "sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "requires": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz", + "integrity": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.0", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz", + "integrity": "sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-flow": "^7.24.7" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.0.tgz", + "integrity": "sha512-CQmfSnK14eYu82fu6GlCwRciHB7mp7oLN+DeyGDDwUr9cMwuSVviJKPXw/YcRYZdB1TdlLJWHHwXwnwD1WnCmQ==", + "requires": { + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "requires": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "requires": { + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", + "requires": { + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "requires": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "requires": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.7.tgz", + "integrity": "sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", + "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.24.7" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", + "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", + "requires": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.0.tgz", + "integrity": "sha512-LZicxFzHIw+Sa3pzgMgSz6gdpsdkfiMObHUzhSIrwKF0+/rP/nuR49u79pSS+zIFJ1FeGeqQD2Dq4QGFbOVvSw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/preset-env": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.0.tgz", + "integrity": "sha512-vYAA8PrCOeZfG4D87hmw1KJ1BPubghXP1e2MacRFwECGNKL76dkA38JEwYllbvQCpf/kLxsTtir0b8MtxKoVCw==", + "requires": { + "@babel/compat-data": "^7.25.0", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.0", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.0", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.0", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.0", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.37.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" + } + }, + "@babel/preset-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "@babel/runtime": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", + "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "requires": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + } + }, + "@babel/traverse": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.0.tgz", + "integrity": "sha512-ubALThHQy4GCf6mbb+5ZRNmLLCI7bJ3f8Q6LHBSRlSKSWj5a7dSUzJBLv3VuIhFrFPgjF4IzPF567YG/HSCdZA==", + "requires": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0", + "debug": "^4.3.1", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.0.tgz", + "integrity": "sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==", + "requires": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "@csstools/normalize.css": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz", + "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==" + }, + "@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "requires": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + } + }, + "@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "requires": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + } + }, + "@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "requires": {} + }, + "@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "requires": {} + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==" + }, + "@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + } + }, + "@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==" + }, + "@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "requires": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, + "@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==" + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + }, + "@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "requires": { + "jest-get-type": "^29.6.3" + }, + "dependencies": { + "jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + } + }, + "@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "requires": { + "@sinclair/typebox": "^0.24.1" + } + }, + "@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "requires": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + } + }, + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "requires": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" + }, + "@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" + }, + "@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" + }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "requires": { + "eslint-scope": "5.1.1" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", + "requires": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + } + }, + "@remix-run/router": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.18.0.tgz", + "integrity": "sha512-L3jkqmqoSVBVKHfpGZmLrex0lxR5SucGA0sUfFzGctehw+S/ggL9L/0NnC5mw6P8HUWpFZ3nQw3cRApjjWx9Sw==" + }, + "@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + } + }, + "@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + } + }, + "@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + } + } + }, + "@rushstack/eslint-patch": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz", + "integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==" + }, + "@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "requires": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + } + }, + "@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + } + }, + "@testing-library/dom": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", + "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", + "peer": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "peer": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "peer": true, + "requires": { + "dequal": "^2.0.3" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "peer": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "peer": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "peer": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "peer": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "peer": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/jest-dom": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", + "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", + "requires": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "requires": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + }, + "dependencies": { + "@testing-library/dom": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "requires": { + "@babel/runtime": "^7.12.5" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + }, + "@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==" + }, + "@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "requires": { + "@babel/types": "^7.20.7" + } + }, + "@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/eslint": { + "version": "8.56.11", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.11.tgz", + "integrity": "sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.19.5", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", + "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + }, + "@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + }, + "@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "29.5.12", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", + "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", + "requires": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + }, + "dependencies": { + "@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "requires": { + "@sinclair/typebox": "^0.27.8" + } + }, + "@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "requires": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + } + }, + "@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + }, + "expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "requires": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + } + }, + "jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + }, + "jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + } + }, + "jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "requires": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + }, + "@types/node": { + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.0.tgz", + "integrity": "sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==", + "requires": { + "undici-types": "~6.11.1" + } + }, + "@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "@types/prop-types": { + "version": "15.7.12", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" + }, + "@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==" + }, + "@types/qs": { + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==" + }, + "@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + }, + "@types/react": { + "version": "18.3.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", + "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", + "requires": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", + "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", + "requires": { + "@types/react": "*" + } + }, + "@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "requires": { + "@types/node": "*" + } + }, + "@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" + }, + "@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "requires": { + "@types/express": "*" + } + }, + "@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "requires": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "requires": { + "@types/node": "*" + } + }, + "@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + }, + "@types/testing-library__jest-dom": { + "version": "5.14.9", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", + "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", + "requires": { + "@types/jest": "*" + } + }, + "@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" + }, + "@types/ws": { + "version": "8.5.11", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.11.tgz", + "integrity": "sha512-4+q7P5h3SpJxaBft0Dzpbr6lmMaqh0Jr2tbhJZ/luAwvD7ohSCniYkwz/pLxuT2h0EOa6QADgJj1Ko+TzRfZ+w==", + "requires": { + "@types/node": "*" + } + }, + "@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "requires": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "requires": { + "@typescript-eslint/utils": "5.62.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "requires": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "requires": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + } + }, + "@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" + }, + "@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "requires": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==" + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + } + }, + "acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "requires": { + "debug": "4" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==" + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "requires": { + "deep-equal": "^2.0.5" + } + }, + "array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "requires": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.reduce": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz", + "integrity": "sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "requires": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + } + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + }, + "async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "requires": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "requires": { + "possible-typed-array-names": "^1.0.0" + } + }, + "axe-core": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==" + }, + "axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "requires": { + "deep-equal": "^2.0.5" + } + }, + "babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "requires": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "requires": {} + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "requires": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + } + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "requires": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "requires": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "requires": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==" + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "bonjour-service": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", + "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "requires": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "requires": { + "fill-range": "^7.1.1" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "browserslist": { + "version": "4.23.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz", + "integrity": "sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==", + "requires": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + }, + "call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001643", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz", + "integrity": "sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==" + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + }, + "check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" + }, + "ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + }, + "cjs-module-lexer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", + "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==" + }, + "clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "core-js": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.37.1.tgz", + "integrity": "sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==" + }, + "core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "requires": { + "browserslist": "^4.23.0" + } + }, + "core-js-pure": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.37.1.tgz", + "integrity": "sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + }, + "css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "requires": {} + }, + "css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + } + }, + "css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "requires": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "requires": {} + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "cssdb": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz", + "integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "requires": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "requires": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + } + }, + "cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "requires": {} + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + } + }, + "csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "requires": { + "ms": "2.1.2" + } + }, + "decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "requires": { + "execa": "^5.0.0" + } + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "peer": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + } + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "requires": { + "jake": "^10.8.5" + } + }, + "electron-to-chromium": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.2.tgz", + "integrity": "sha512-kc4r3U3V3WLaaZqThjYz/Y6z8tJe+7K0bbjUVo3i+LWIypVdMx5nXCkwRe6SWbY6ILqLdc1rKcKmr3HoH7wjSQ==" + }, + "emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "requires": { + "stackframe": "^1.3.4" + } + }, + "es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "requires": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "requires": { + "get-intrinsic": "^1.2.4" + } + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + } + }, + "es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" + } + }, + "es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" + }, + "es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "requires": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + } + }, + "es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "requires": { + "hasown": "^2.0.0" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + } + } + }, + "eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + } + }, + "eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "requires": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "requires": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + } + }, + "eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "requires": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "requires": { + "@typescript-eslint/experimental-utils": "^5.0.0" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz", + "integrity": "sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==", + "requires": { + "aria-query": "~5.1.3", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.9.1", + "axobject-query": "~3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.19", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.0" + } + }, + "eslint-plugin-react": { + "version": "7.35.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", + "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", + "requires": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.19", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "requires": {} + }, + "eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "requires": { + "@typescript-eslint/utils": "^5.58.0" + } + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + }, + "eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "requires": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + } + }, + "express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + }, + "fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "requires": { + "bser": "2.1.1" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "requires": { + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "requires": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" + }, + "follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, + "fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "requires": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "requires": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "requires": { + "duplexer": "^0.1.2" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "requires": { + "has-symbols": "^1.0.3" + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==" + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + } + }, + "html-webpack-plugin": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", + "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==", + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "requires": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "requires": {} + }, + "idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==" + }, + "immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + } + }, + "import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "requires": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + } + }, + "ipaddr.js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==" + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "requires": { + "hasown": "^2.0.2" + } + }, + "is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "requires": { + "is-typed-array": "^1.1.13" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + }, + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + }, + "is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" + }, + "is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "requires": { + "call-bind": "^1.0.7" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "requires": { + "which-typed-array": "^1.1.14" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "requires": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + } + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "requires": { + "semver": "^7.5.3" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "requires": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "jake": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", + "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", + "requires": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "requires": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + } + }, + "jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "requires": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + } + }, + "jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "requires": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "requires": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + } + }, + "jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "requires": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + } + }, + "jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "requires": {} + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==" + }, + "jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "requires": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + } + }, + "jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "requires": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "requires": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "requires": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "dependencies": { + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + } + }, + "@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "requires": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "requires": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + } + }, + "jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==" + }, + "jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "requires": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "requires": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "dependencies": { + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "requires": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + }, + "string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "requires": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" + } + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "requires": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "requires": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + }, + "dependencies": { + "esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==" + } + } + }, + "jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==" + }, + "jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + } + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "requires": { + "json-buffer": "3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + }, + "klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + }, + "language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" + }, + "language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "requires": { + "language-subtag-registry": "^0.3.20" + } + }, + "launch-editor": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz", + "integrity": "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==", + "requires": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + }, + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "lucide-react": { + "version": "0.417.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.417.0.tgz", + "integrity": "sha512-F/MDUHDter8YMZ7JKQpW/5/+v38tdaoShKX3e+opYsqfCnaHwn+5zz3+lBrMDFMNtSsvxtNpchLIaMpEfsi/4w==", + "requires": {} + }, + "lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==" + }, + "magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "requires": { + "tmpl": "1.0.5" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "requires": { + "fs-monkey": "^1.0.4" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + }, + "mini-css-extract-plugin": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", + "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", + "requires": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "requires": { + "minimist": "^1.2.6" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "requires": { + "boolbase": "^1.0.0" + } + }, + "nwsapi": { + "version": "2.2.12", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz", + "integrity": "sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" + }, + "object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" + }, + "object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz", + "integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==", + "requires": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "gopd": "^1.0.1", + "safe-array-concat": "^1.1.2" + } + }, + "object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + } + }, + "object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "requires": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + } + }, + "possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" + }, + "postcss": { + "version": "8.4.40", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz", + "integrity": "sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==", + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + } + }, + "postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "requires": {} + }, + "postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "requires": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "requires": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "requires": {} + }, + "postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "requires": {} + }, + "postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "requires": {} + }, + "postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "requires": {} + }, + "postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "requires": {} + }, + "postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "requires": {} + }, + "postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "requires": {} + }, + "postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "requires": {} + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "requires": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "dependencies": { + "lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==" + }, + "yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==" + } + } + }, + "postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + } + }, + "postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "requires": {} + }, + "postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "requires": {} + }, + "postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "requires": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + } + }, + "postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "requires": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "requires": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "requires": { + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "requires": { + "postcss-selector-parser": "^6.1.1" + } + }, + "postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "requires": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "requires": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + } + }, + "postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "requires": {} + }, + "postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "requires": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "requires": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "requires": {} + }, + "postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "requires": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "requires": {} + }, + "postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "requires": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "requires": {} + }, + "postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "requires": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + } + } + }, + "postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "requires": { + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + }, + "pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "requires": { + "asap": "~2.0.6" + } + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + } + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "requires": { + "performance-now": "^2.1.0" + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "requires": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + } + }, + "react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "requires": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==" + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + } + }, + "react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" + }, + "react-router": { + "version": "6.25.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.25.1.tgz", + "integrity": "sha512-u8ELFr5Z6g02nUtpPAggP73Jigj1mRePSwhS/2nkTrlPU5yEkH1vYzWNyvSnSzeeE2DNqWdH+P8OhIh9wuXhTw==", + "requires": { + "@remix-run/router": "1.18.0" + } + }, + "react-router-dom": { + "version": "6.25.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.25.1.tgz", + "integrity": "sha512-0tUDpbFvk35iv+N89dWNrJp+afLgd+y4VtorJZuOCXK0kkCWjEvb3vTJM++SYvMEpbVwXKf3FjeVveVEb6JpDQ==", + "requires": { + "@remix-run/router": "1.18.0", + "react-router": "6.25.1" + } + }, + "react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "requires": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "fsevents": "^2.3.2", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + } + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "requires": { + "pify": "^2.3.0" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "requires": { + "minimatch": "^3.0.5" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz", + "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==" + }, + "regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "requires": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + } + }, + "regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "requires": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + } + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" + }, + "renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + }, + "resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "requires": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "dependencies": { + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==" + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "requires": { + "fsevents": "~2.3.2" + } + }, + "rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "requires": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "requires": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "requires": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + } + }, + "semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + } + }, + "set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + }, + "side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + }, + "source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==" + }, + "source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "requires": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + } + }, + "stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "requires": { + "escodegen": "^1.8.1" + }, + "dependencies": { + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "requires": { + "internal-slot": "^1.0.4" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, + "string.prototype.includes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz", + "integrity": "sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "string.prototype.matchall": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + } + }, + "string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + }, + "strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "requires": {} + }, + "stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "requires": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + } + }, + "sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + } + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "tailwindcss": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.7.tgz", + "integrity": "sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==", + "requires": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.0", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + }, + "tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "requires": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "5.31.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz", + "integrity": "sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==", + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "requires": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "dependencies": { + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "requires": { + "punycode": "^2.1.1" + } + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + } + }, + "tslib": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + } + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "peer": true + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, + "undici-types": { + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.11.1.tgz", + "integrity": "sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==" + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + }, + "unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "requires": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "requires": { + "makeerror": "1.0.12" + } + }, + "watchpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "web-vitals": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + }, + "webpack": { + "version": "5.93.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz", + "integrity": "sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==", + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "webpack-dev-middleware": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + } + }, + "webpack-dev-server": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", + "requires": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.4", + "ws": "^8.13.0" + }, + "dependencies": { + "ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "requires": {} + } + } + }, + "webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "requires": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "requires": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + } + } + } + }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "requires": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + } + }, + "which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "requires": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + } + }, + "which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + } + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" + }, + "workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "requires": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "requires": { + "workbox-core": "6.6.0" + } + }, + "workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "requires": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "dependencies": { + "@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "requires": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + } + }, + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "requires": { + "whatwg-url": "^7.0.0" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "requires": { + "workbox-core": "6.6.0" + } + }, + "workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" + }, + "workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "requires": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "requires": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "requires": { + "workbox-core": "6.6.0" + } + }, + "workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "requires": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "requires": { + "workbox-core": "6.6.0" + } + }, + "workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "requires": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "requires": { + "workbox-core": "6.6.0" + } + }, + "workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "requires": { + "workbox-core": "6.6.0" + } + }, + "workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "requires": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" + }, + "workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "requires": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + } + } + }, + "workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "requires": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + } + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "requires": {} + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + } +} diff --git a/frontend/ai-healthcare-frontend/package.json b/frontend/ai-healthcare-frontend/package.json new file mode 100644 index 0000000000000000000000000000000000000000..db0f44de08e0e8caaa0916f457fb4ba39e61a7b8 --- /dev/null +++ b/frontend/ai-healthcare-frontend/package.json @@ -0,0 +1,45 @@ +{ + "name": "ai-healthcare-frontend", + "version": "0.1.0", + "private": true, + "dependencies": { + "@testing-library/jest-dom": "^5.17.0", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "lucide-react": "^0.417.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-router-dom": "^6.25.1", + "react-scripts": "5.0.1", + "web-vitals": "^2.1.4" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "devDependencies": { + "autoprefixer": "^10.4.19", + "postcss": "^8.4.40", + "tailwindcss": "^3.4.7" + } +} diff --git a/frontend/ai-healthcare-frontend/postcss.config.js b/frontend/ai-healthcare-frontend/postcss.config.js new file mode 100644 index 0000000000000000000000000000000000000000..33ad091d26d8a9dc95ebdf616e217d985ec215b8 --- /dev/null +++ b/frontend/ai-healthcare-frontend/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/frontend/ai-healthcare-frontend/public/favicon.ico b/frontend/ai-healthcare-frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a11777cc471a4344702741ab1c8a588998b1311a Binary files /dev/null and b/frontend/ai-healthcare-frontend/public/favicon.ico differ diff --git a/frontend/ai-healthcare-frontend/public/index.html b/frontend/ai-healthcare-frontend/public/index.html new file mode 100644 index 0000000000000000000000000000000000000000..aa069f27cbd9d53394428171c3989fd03db73c76 --- /dev/null +++ b/frontend/ai-healthcare-frontend/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/frontend/ai-healthcare-frontend/public/logo192.png b/frontend/ai-healthcare-frontend/public/logo192.png new file mode 100644 index 0000000000000000000000000000000000000000..fc44b0a3796c0e0a64c3d858ca038bd4570465d9 Binary files /dev/null and b/frontend/ai-healthcare-frontend/public/logo192.png differ diff --git a/frontend/ai-healthcare-frontend/public/logo512.png b/frontend/ai-healthcare-frontend/public/logo512.png new file mode 100644 index 0000000000000000000000000000000000000000..a4e47a6545bc15971f8f63fba70e4013df88a664 Binary files /dev/null and b/frontend/ai-healthcare-frontend/public/logo512.png differ diff --git a/frontend/ai-healthcare-frontend/public/manifest.json b/frontend/ai-healthcare-frontend/public/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..080d6c77ac21bb2ef88a6992b2b73ad93daaca92 --- /dev/null +++ b/frontend/ai-healthcare-frontend/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/frontend/ai-healthcare-frontend/public/robots.txt b/frontend/ai-healthcare-frontend/public/robots.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9e57dc4d41b9b46e05112e9f45b7ea6ac0ba15e --- /dev/null +++ b/frontend/ai-healthcare-frontend/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/frontend/ai-healthcare-frontend/screenshot.jpeg b/frontend/ai-healthcare-frontend/screenshot.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d6e16c32dd7a064b591cb2279a4a985b92edc1ed --- /dev/null +++ b/frontend/ai-healthcare-frontend/screenshot.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ce332e6de76c8fd11a751d13b02934e1d4f20cbbf5c703aff285e092537bb9 +size 38822 diff --git a/frontend/ai-healthcare-frontend/src/App.css b/frontend/ai-healthcare-frontend/src/App.css new file mode 100644 index 0000000000000000000000000000000000000000..74b5e053450a48a6bdb4d71aad648e7af821975c --- /dev/null +++ b/frontend/ai-healthcare-frontend/src/App.css @@ -0,0 +1,38 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} diff --git a/frontend/ai-healthcare-frontend/src/App.js b/frontend/ai-healthcare-frontend/src/App.js new file mode 100644 index 0000000000000000000000000000000000000000..2d1b9f2f7af1a72c8d9eba9587227d4d3a7a5740 --- /dev/null +++ b/frontend/ai-healthcare-frontend/src/App.js @@ -0,0 +1,79 @@ +import React from 'react'; +import { BrowserRouter as Router, Route, Routes, Link } from 'react-router-dom'; +import { User } from 'lucide-react'; + +// Placeholder components +const Dashboard = () =>
Dashboard Content
; +const ChatbotDiagnosis = () =>
Chatbot Diagnosis Interface
; +const DrugIdentification = () =>
Drug Identification Interface
; +const RemoteConsultation = () =>
Remote Consultation Interface
; +const OutbreakAlert = () =>
Outbreak Alert System
; + +const Sidebar = () => ( +
+ +
+); + +const Header = () => ( +
+
+

AI Healthcare Solution

+
+ +
+
+ +
+
+
+
+
+); + +const App = () => { + return ( + +
+ +
+
+
+
+ + } /> + } /> + } /> + } /> + } /> + +
+
+
+
+
+ ); +}; + +export default App; \ No newline at end of file diff --git a/frontend/ai-healthcare-frontend/src/App.test.js b/frontend/ai-healthcare-frontend/src/App.test.js new file mode 100644 index 0000000000000000000000000000000000000000..1f03afeece5ac28064fa3c73a29215037465f789 --- /dev/null +++ b/frontend/ai-healthcare-frontend/src/App.test.js @@ -0,0 +1,8 @@ +import { render, screen } from '@testing-library/react'; +import App from './App'; + +test('renders learn react link', () => { + render(); + const linkElement = screen.getByText(/learn react/i); + expect(linkElement).toBeInTheDocument(); +}); diff --git a/frontend/ai-healthcare-frontend/src/index.css b/frontend/ai-healthcare-frontend/src/index.css new file mode 100644 index 0000000000000000000000000000000000000000..17df0e7ec76e7107ab9e336439ef2c29daa4f300 --- /dev/null +++ b/frontend/ai-healthcare-frontend/src/index.css @@ -0,0 +1,17 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/frontend/ai-healthcare-frontend/src/index.js b/frontend/ai-healthcare-frontend/src/index.js new file mode 100644 index 0000000000000000000000000000000000000000..8a8c2ca8169863a8b2d5fcd9f43dcf80578cd2e6 --- /dev/null +++ b/frontend/ai-healthcare-frontend/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import { createRoot } from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = createRoot(document.getElementById('root')); +root.render( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); \ No newline at end of file diff --git a/frontend/ai-healthcare-frontend/src/logo.svg b/frontend/ai-healthcare-frontend/src/logo.svg new file mode 100644 index 0000000000000000000000000000000000000000..9dfc1c058cebbef8b891c5062be6f31033d7d186 --- /dev/null +++ b/frontend/ai-healthcare-frontend/src/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/ai-healthcare-frontend/tailwind.config.js b/frontend/ai-healthcare-frontend/tailwind.config.js new file mode 100644 index 0000000000000000000000000000000000000000..1490793a2eb53e45314f8364272b8f7f2ee38380 --- /dev/null +++ b/frontend/ai-healthcare-frontend/tailwind.config.js @@ -0,0 +1,10 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + "./src/**/*.{js,jsx,ts,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +} diff --git a/frontend/app.py b/frontend/app.py new file mode 100644 index 0000000000000000000000000000000000000000..52670f2314a07629c633c7b76e09af1231b69e61 --- /dev/null +++ b/frontend/app.py @@ -0,0 +1,500 @@ +import streamlit as st +import requests +from utils.ai71_utils import get_ai71_response +from datetime import datetime +import cv2 +import numpy as np +from PIL import Image +import supervision as sv +import matplotlib.pyplot as plt +import io +import os +from inference_sdk import InferenceHTTPClient +from bs4 import BeautifulSoup +import tensorflow as tf +import pandas as pd +from sklearn.feature_extraction.text import CountVectorizer +from sklearn.model_selection import train_test_split +from sklearn.linear_model import LogisticRegression +from sklearn.metrics import accuracy_score, classification_report +import nltk +import re +from nltk.tokenize import word_tokenize +from nltk.corpus import stopwords + +# --- Preprocess text function (moved outside session state) --- +def preprocess_text(text): + # Convert to lowercase + text = text.lower() + + cleaned_text = re.sub(r'[^a-zA-Z0-9\s\,]', ' ', text) + # Tokenize text + tokens = word_tokenize(cleaned_text) + + # Remove stop words + stop_words = set(stopwords.words('english')) + tokens = [word for word in tokens if word not in stop_words] + + # Rejoin tokens into a single string + cleaned_text = ' '.join(tokens) + + return cleaned_text + +st.title("Medi Scape Dashboard") + +# --- Session State Initialization --- +if 'disease_model' not in st.session_state: + try: + model_path = 'FINAL_MODEL.keras' + print(f"Attempting to load disease model from: {model_path}") + print(f"Model file exists: {os.path.exists(model_path)}") + st.session_state.disease_model = tf.keras.models.load_model(model_path) + print("Disease model loaded successfully!") + except FileNotFoundError: + st.error("Disease classification model not found. Please ensure 'FINAL_MODEL.keras' is in the same directory as this app.") + st.session_state.disease_model = None + +# Load the vectorizer +if 'vectorizer' not in st.session_state: + try: + vectorizer_path = "vectorizer.pkl" + print(f"Attempting to load vectorizer from: {vectorizer_path}") + print(f"Vectorizer file exists: {os.path.exists(vectorizer_path)}") + st.session_state.vectorizer = pd.read_pickle(vectorizer_path) + print("Vectorizer loaded successfully!") + except FileNotFoundError: + st.error("Vectorizer file not found. Please ensure 'vectorizer.pkl' is in the same directory as this app.") + st.session_state.vectorizer = None + +if 'model_llm' not in st.session_state: + # --- Load pre-trained model and vectorizer --- + st.session_state.model_llm = LogisticRegression() + try: + llm_model_path = "logistic_regression_model.pkl" + print(f"Attempting to load LLM model from: {llm_model_path}") + print(f"LLM Model file exists: {os.path.exists(llm_model_path)}") + st.session_state.model_llm = pd.read_pickle(llm_model_path) + print("LLM model loaded successfully!") + except FileNotFoundError: + st.error("LLM model file not found. Please ensure 'logistic_regression_model.pkl' is in the same directory.") + st.session_state.model_llm = None + + # Load datasets (only for reference, not used for training) + dataset_1 = pd.read_csv("Symptoms_Detection/training_data.csv") + dataset_2 = pd.read_csv("Symptoms_Detection/Symptom2Disease.csv") + + # Create symptoms_text column (only for reference, not used for training) + dataset_1['symptoms_text'] = dataset_1.apply(lambda row: ','.join([col for col in dataset_1.columns if row[col] == 1]), axis=1) + final_dataset = pd.DataFrame(dataset_1[["prognosis", "symptoms_text"]]) + final_dataset.columns = ['label', 'text'] + + # Combine datasets (only for reference, not used for training) + df_combined = pd.concat([final_dataset, dataset_2[['label', 'text']]], axis=0, ignore_index=True) + + # Store in session state (only for reference, not used for training) + st.session_state.df_combined = df_combined +# --- End of Session State Initialization --- + +# Load the disease classification model +try: + disease_model = tf.keras.models.load_model('FINAL_MODEL.keras') +except FileNotFoundError: + st.error("Disease classification model not found. Please ensure 'FINAL_MODEL.keras' is in the same directory as this app.") + disease_model = None + +# Sidebar Navigation +st.sidebar.title("Navigation") +page = st.sidebar.radio("Go to", ["Home", "AI Chatbot Diagnosis", "Drug Identification", "Disease Detection", "Outbreak Alert"]) + +# Access secrets using st.secrets +if "INFERENCE_API_URL" not in st.secrets or "INFERENCE_API_KEY" not in st.secrets: + st.error("Please make sure to set your secrets in the Streamlit secrets settings.") +else: + # Initialize the Inference Client + CLIENT = InferenceHTTPClient( + api_url=st.secrets["INFERENCE_API_URL"], + api_key=st.secrets["INFERENCE_API_KEY"] + ) + + # Function to preprocess the image + def preprocess_image(image_path): + # Load the image + image = cv2.imread(image_path) + + # Convert to grayscale + gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + + # Remove noise + blurred = cv2.GaussianBlur(gray, (5, 5), 0) + + # Thresholding/Binarization + _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU) + + # Dilation and Erosion + kernel = np.ones((1, 1), np.uint8) + dilated = cv2.dilate(binary, kernel, iterations=1) + eroded = cv2.erode(dilated, kernel, iterations=1) + + # Edge detection + edges = cv2.Canny(eroded, 100, 200) + + # Deskewing + coords = np.column_stack(np.where(edges > 0)) + angle = cv2.minAreaRect(coords)[-1] + if angle < -45: + angle = -(90 + angle) + else: + angle = -angle + + (h, w) = edges.shape[:2] + center = (w // 2, h // 2) + M = cv2.getRotationMatrix2D(center, angle, 1.0) + deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE) + + # Find contours + contours, _ = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + + # Draw contours on the original image + contour_image = image.copy() + cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2) + + return contour_image + + def get_x1(detection): + return detection.xyxy[0][0] + +# Access secrets using st.secrets +if "INFERENCE_API_URL" not in st.secrets or "INFERENCE_API_KEY" not in st.secrets: + st.error("Please make sure to set your secrets in the Streamlit secrets settings.") +else: + # Initialize the Inference Client + CLIENT = InferenceHTTPClient( + api_url=st.secrets["INFERENCE_API_URL"], + api_key=st.secrets["INFERENCE_API_KEY"] + ) + + # Function to preprocess the image + def preprocess_image(image_path): + # Load the image + image = cv2.imread(image_path) + + # Convert to grayscale + gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + + # Remove noise + blurred = cv2.GaussianBlur(gray, (5, 5), 0) + + # Thresholding/Binarization + _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU) + + # Dilation and Erosion + kernel = np.ones((1, 1), np.uint8) + dilated = cv2.dilate(binary, kernel, iterations=1) + eroded = cv2.erode(dilated, kernel, iterations=1) + + # Edge detection + edges = cv2.Canny(eroded, 100, 200) + + # Deskewing + coords = np.column_stack(np.where(edges > 0)) + angle = cv2.minAreaRect(coords)[-1] + if angle < -45: + angle = -(90 + angle) + else: + angle = -angle + + (h, w) = edges.shape[:2] + center = (w // 2, h // 2) + M = cv2.getRotationMatrix2D(center, angle, 1.0) + deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE) + + # Find contours + contours, _ = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + + # Draw contours on the original image + contour_image = image.copy() + cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2) + + return contour_image + + def get_x1(detection): + return detection.xyxy[0][0] + + # --- Prediction function (using session state) --- + def predict_disease(symptoms): + if st.session_state.vectorizer is not None and st.session_state.model_llm is not None: + preprocessed_symptoms = preprocess_text(symptoms) + symptoms_vectorized = st.session_state.vectorizer.transform([preprocessed_symptoms]) + prediction = st.session_state.model_llm.predict(symptoms_vectorized) + return prediction[0] + else: + st.error("Unable to make prediction. Vectorizer or LLM model is not loaded.") + return None + + # --- New function to analyze X-ray with LLM --- + def analyze_xray_with_llm(predicted_class): + prompt = f""" + Based on a chest X-ray analysis, the predicted condition is {predicted_class}. + Please provide a concise summary of this condition, including: + - A brief description of the condition. + - Common symptoms associated with it. + - Potential causes. + - General treatment approaches. + - Any other relevant information for a patient. + """ + llm_response = get_ai71_response(prompt) + st.write("## LLM Analysis of X-ray Results:") + st.write(llm_response) + + if page == "Home": + st.markdown("## Welcome to Medi Scape") + st.write("Medi Scape is an AI-powered healthcare application designed to streamline the process of understanding and managing medical information. It leverages advanced AI models to provide features such as prescription analysis, disease detection from chest X-rays, and symptom-based diagnosis assistance.") + + st.markdown("## Features") + st.write("Medi Scape provides various AI-powered tools for remote healthcare, including:") + features = [ + "**AI Chatbot Diagnosis:** Interact with an AI chatbot for preliminary diagnosis and medical information.", + "**Drug Identification:** Upload a prescription image to identify medications and access relevant details.", + "**Doctor's Handwriting Identification:** Our system can accurately recognize and process doctor's handwriting.", + "**Disease Detection:** Upload a chest X-ray image to detect potential diseases.", + "**Outbreak Alert:** Stay informed about potential disease outbreaks in your area." + ] + for feature in features: + st.markdown(f"- {feature}") + + st.markdown("## How it Works") + steps = [ + "**Upload:** You can upload a prescription image for drug identification or a chest X-ray image for disease detection.", + "**Process:** Our AI models will analyze the image and extract relevant information.", + "**Results:** You will receive identified drug names, uses, side effects, and more, or a potential disease diagnosis." + ] + for i, step in enumerate(steps, 1): + st.markdown(f"{i}. {step}") + + st.markdown("## Key Features") + key_features = [ + "**AI-Powered:** Leverages advanced AI models for accurate analysis and diagnosis.", + "**User-Friendly:** Simple and intuitive interface for easy navigation and interaction.", + "**Secure:** Your data is protected and handled with confidentiality." + ] + for feature in key_features: + st.markdown(f"- {feature}") + + st.markdown("Please use the sidebar to navigate to different features.") + + elif page == "AI Chatbot Diagnosis": + st.write("Enter your symptoms separated by commas:") + symptoms_input = st.text_area("Symptoms:") + if st.button("Diagnose"): + if symptoms_input: + # --- Pipeline 1 Implementation --- + # 1. Symptom Input (already done with st.text_area) + # 2. Regression Prediction + regression_prediction = predict_disease(symptoms_input) + + if regression_prediction is not None: + # 3. LLM Prompt Enhancement + prompt = f"""The predicted condition based on a symptom analysis is {regression_prediction}. + Provide a detailed explanation of this condition, including possible causes, common symptoms, + and general treatment approaches. Also, suggest when a patient should consult a doctor.""" + + # 4. LLM Output + llm_response = get_ai71_response(prompt) + + # 5. Combined Output + st.write("## Logistic Regression Prediction:") + st.write(regression_prediction) + + st.write("## LLM Explanation:") + st.write(llm_response) + # --- End of Pipeline 1 Implementation --- + + else: + st.write("Please enter your symptoms.") + + elif page == "Drug Identification": + st.write("Upload a prescription image for drug identification.") + uploaded_file = st.file_uploader("Upload prescription", type=["png", "jpg", "jpeg"]) + + if uploaded_file is not None: + # Display the uploaded image + image = Image.open(uploaded_file) + st.image(image, caption="Uploaded Prescription", use_column_width=True) + + if st.button("Process Prescription"): + # Save the image to a temporary file + temp_image_path = "temp_image.jpg" + image.save(temp_image_path) + + # Preprocess the image + preprocessed_image = preprocess_image(temp_image_path) + + # Perform inference + result_doch1 = CLIENT.infer(preprocessed_image, model_id="doctor-s-handwriting/1") + + # Extract labels and detections + labels = [item["class"] for item in result_doch1["predictions"]] + detections = sv.Detections.from_inference(result_doch1) + + # Sort detections and labels + sorted_indices = sorted(range(len(detections)), key=lambda i: get_x1(detections[i])) + sorted_detections = [detections[i] for i in sorted_indices] + sorted_labels = [labels[i] for i in sorted_indices] + + # Convert list to string + resulting_string = ''.join(sorted_labels) + + # Display results + st.subheader("Processed Prescription") + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6)) + + # Plot bounding boxes + image_with_boxes = preprocessed_image.copy() + for detection in sorted_detections: + x1, y1, x2, y2 = detection.xyxy[0] + cv2.rectangle(image_with_boxes, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0), 2) + ax1.imshow(cv2.cvtColor(image_with_boxes, cv2.COLOR_BGR2RGB)) + ax1.set_title("Bounding Boxes") + ax1.axis('off') + + # Plot labels + image_with_labels = preprocessed_image.copy() + for i, detection in enumerate(sorted_detections): + x1, y1, x2, y2 = detection.xyxy[0] + label = sorted_labels[i] + cv2.putText(image_with_labels, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2) + ax2.imshow(cv2.cvtColor(image_with_labels, cv2.COLOR_BGR2RGB)) + ax2.set_title("Labels") + ax2.axis('off') + + st.pyplot(fig) + + st.write("Extracted Text from Prescription:", resulting_string) + + # Prepare prompt for LLM + prompt = f"""Analyze the following prescription text: + {resulting_string} + + Please provide: + 1. Identified drug name(s) + 2. Full name of each identified drug + 3. Primary uses of each drug + 4. Common side effects + 5. Recommended dosage (if identifiable from the text) + 6. Any warnings or precautions + 7. Potential interactions with other medications (if multiple drugs are identified) + 8. Any additional relevant information for the patient + + If any part of the prescription is unclear or seems incomplete, please mention that and provide information about possible interpretations or matches. Always emphasize the importance of consulting a healthcare professional for accurate interpretation and advice.""" + + # Get LLM response + llm_response = get_ai71_response(prompt) + + st.subheader("AI Analysis of the Prescription") + st.write(llm_response) + + # Remove the temporary image file + os.remove(temp_image_path) + + else: + st.info("Please upload a prescription image to proceed.") + + elif page == "Disease Detection": + st.write("Upload a chest X-ray image for disease detection.") + uploaded_image = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"]) + + if uploaded_image is not None and st.session_state.disease_model is not None: + # Display the image + img_opened = Image.open(uploaded_image).convert('RGB') + image_pred = np.array(img_opened) + image_pred = cv2.resize(image_pred, (150, 150)) + + # Convert the image to a numpy array + image_pred = np.array(image_pred) + + # Rescale the image (if the model was trained with rescaling) + image_pred = image_pred / 255.0 + + # Add an extra dimension to match the input shape (1, 150, 150, 3) + image_pred = np.expand_dims(image_pred, axis=0) + + # Predict using the model + prediction = st.session_state.disease_model.predict(image_pred) + + # Get the predicted class + predicted_ = np.argmax(prediction) + + # Decode the prediction + if predicted_ == 0: + predicted_class = "Covid" + elif predicted_ == 1: + predicted_class = "Normal Chest X-ray" + else: + predicted_class = "Pneumonia" + + st.image(image_pred, caption='Input image by user', use_column_width=True) + st.write("Prediction Classes for different types:") + st.write("COVID: 0") + st.write("Normal Chest X-ray: 1") + st.write("Pneumonia: 2") + st.write("\n") + st.write("DETECTED DISEASE DISPLAY") + st.write(f"Predicted Class : {predicted_}") + st.write(predicted_class) + + # Analyze X-ray results with LLM + analyze_xray_with_llm(predicted_class) + else: + st.write("Please upload an image file or ensure the disease model is loaded.") + + elif page == "Outbreak Alert": + st.markdown("## **Disease Outbreak News (from WHO)**") + + # Fetch WHO news page + url = "https://www.who.int/news-room/events" + response = requests.get(url) + response.raise_for_status() # Raise an exception for bad status codes + + soup = BeautifulSoup(response.content, 'html.parser') + + # Find news articles (adjust selectors if WHO website changes) + articles = soup.find_all('div', class_='list-view--item') + + for article in articles[:5]: # Display the top 5 news articles + title_element = article.find('a', class_='link-container') + if title_element: + title = title_element.text.strip() + link = title_element['href'] + date_element = article.find('span', class_='date') + date = date_element.text.strip() if date_element else "Date not found" + + # Format date + date_parts = date.split() + if len(date_parts) >= 3: + try: + formatted_date = datetime.strptime(date, "%d %B %Y").strftime("%Y-%m-%d") + except ValueError: + formatted_date = date # Keep the original date if formatting fails + else: + formatted_date = date + + # Display news item in a card-like container + with st.container(): + st.markdown(f"**{formatted_date}**") + st.markdown(f"[{title}]({link})") + st.markdown("---") + else: + st.write("Could not find article details.") + +# Auto-scroll to the bottom of the chat container +st.markdown( + """ + + """, + unsafe_allow_html=True, +) diff --git a/frontend/covid_from_website.png b/frontend/covid_from_website.png new file mode 100644 index 0000000000000000000000000000000000000000..cc9ada56b5e4ccd021307c15c5a8343bef32fcd3 Binary files /dev/null and b/frontend/covid_from_website.png differ diff --git a/frontend/logistic_regression_model.pkl b/frontend/logistic_regression_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..70dff0ca349c678253237465986bdba5753f9b90 --- /dev/null +++ b/frontend/logistic_regression_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd5b38cded9c2b4426bb8cc9f337cd078973f5488e2692f3ecd21db3cc41c96 +size 601655 diff --git a/frontend/normal_from_website.jpeg b/frontend/normal_from_website.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b6f4cf994b6ca1ad8958d822e50eafde3d2fc3f5 --- /dev/null +++ b/frontend/normal_from_website.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f740d39c1a90f7c1fd88127298b34ac4a16946cf3dda018c55838009869fcbf8 +size 16580 diff --git a/frontend/pneumoni_from_Website.png b/frontend/pneumoni_from_Website.png new file mode 100644 index 0000000000000000000000000000000000000000..8c1463a585025e21bbec8a4ad5ec30dc5b4ad95f Binary files /dev/null and b/frontend/pneumoni_from_Website.png differ diff --git a/frontend/react-code/.eslintrc.cjs b/frontend/react-code/.eslintrc.cjs new file mode 100644 index 0000000000000000000000000000000000000000..3e212e1d4307a332e8511f530bc48a4ad5ed6f95 --- /dev/null +++ b/frontend/react-code/.eslintrc.cjs @@ -0,0 +1,21 @@ +module.exports = { + root: true, + env: { browser: true, es2020: true }, + extends: [ + 'eslint:recommended', + 'plugin:react/recommended', + 'plugin:react/jsx-runtime', + 'plugin:react-hooks/recommended', + ], + ignorePatterns: ['dist', '.eslintrc.cjs'], + parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, + settings: { react: { version: '18.2' } }, + plugins: ['react-refresh'], + rules: { + 'react/jsx-no-target-blank': 'off', + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} diff --git a/frontend/react-code/.gitignore b/frontend/react-code/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..a547bf36d8d11a4f89c59c144f24795749086dd1 --- /dev/null +++ b/frontend/react-code/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend/react-code/README.md b/frontend/react-code/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f768e33fc946e6074d6bd3ce5d454853adb3615e --- /dev/null +++ b/frontend/react-code/README.md @@ -0,0 +1,8 @@ +# React + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh diff --git a/frontend/react-code/index.html b/frontend/react-code/index.html new file mode 100644 index 0000000000000000000000000000000000000000..0c589eccd4d48e270e161a1ab91baee5e5f4b4bc --- /dev/null +++ b/frontend/react-code/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + React + + +
+ + + diff --git a/frontend/react-code/package-lock.json b/frontend/react-code/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..f6fbfc30da3d6fe8266fcccec0ebef446d299906 --- /dev/null +++ b/frontend/react-code/package-lock.json @@ -0,0 +1,5724 @@ +{ + "name": "react-code", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "react-code", + "version": "0.0.0", + "dependencies": { + "lottie-react": "^2.4.0", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react": "^4.3.1", + "autoprefixer": "^10.4.19", + "eslint": "^8.57.0", + "eslint-plugin-react": "^7.34.3", + "eslint-plugin-react-hooks": "^4.6.2", + "eslint-plugin-react-refresh": "^0.4.7", + "postcss": "^8.4.40", + "tailwindcss": "^3.4.7", + "vite": "^5.3.4" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", + "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", + "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.2" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", + "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", + "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", + "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.2", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", + "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.19.2.tgz", + "integrity": "sha512-OHflWINKtoCFSpm/WmuQaWW4jeX+3Qt3XQDepkkiFTsoxFc5BpF3Z5aDxFZgBqRjO6ATP5+b1iilp4kGIZVWlA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.19.2.tgz", + "integrity": "sha512-k0OC/b14rNzMLDOE6QMBCjDRm3fQOHAL8Ldc9bxEWvMo4Ty9RY6rWmGetNTWhPo+/+FNd1lsQYRd0/1OSix36A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.19.2.tgz", + "integrity": "sha512-IIARRgWCNWMTeQH+kr/gFTHJccKzwEaI0YSvtqkEBPj7AshElFq89TyreKNFAGh5frLfDCbodnq+Ye3dqGKPBw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.19.2.tgz", + "integrity": "sha512-52udDMFDv54BTAdnw+KXNF45QCvcJOcYGl3vQkp4vARyrcdI/cXH8VXTEv/8QWfd6Fru8QQuw1b2uNersXOL0g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.19.2.tgz", + "integrity": "sha512-r+SI2t8srMPYZeoa1w0o/AfoVt9akI1ihgazGYPQGRilVAkuzMGiTtexNZkrPkQsyFrvqq/ni8f3zOnHw4hUbA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.19.2.tgz", + "integrity": "sha512-+tYiL4QVjtI3KliKBGtUU7yhw0GMcJJuB9mLTCEauHEsqfk49gtUBXGtGP3h1LW8MbaTY6rSFIQV1XOBps1gBA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.19.2.tgz", + "integrity": "sha512-OR5DcvZiYN75mXDNQQxlQPTv4D+uNCUsmSCSY2FolLf9W5I4DSoJyg7z9Ea3TjKfhPSGgMJiey1aWvlWuBzMtg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.19.2.tgz", + "integrity": "sha512-Hw3jSfWdUSauEYFBSFIte6I8m6jOj+3vifLg8EU3lreWulAUpch4JBjDMtlKosrBzkr0kwKgL9iCfjA8L3geoA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.19.2.tgz", + "integrity": "sha512-rhjvoPBhBwVnJRq/+hi2Q3EMiVF538/o9dBuj9TVLclo9DuONqt5xfWSaE6MYiFKpo/lFPJ/iSI72rYWw5Hc7w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.19.2.tgz", + "integrity": "sha512-EAz6vjPwHHs2qOCnpQkw4xs14XJq84I81sDRGPEjKPFVPBw7fwvtwhVjcZR6SLydCv8zNK8YGFblKWd/vRmP8g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.19.2.tgz", + "integrity": "sha512-IJSUX1xb8k/zN9j2I7B5Re6B0NNJDJ1+soezjNojhT8DEVeDNptq2jgycCOpRhyGj0+xBn7Cq+PK7Q+nd2hxLA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.19.2.tgz", + "integrity": "sha512-OgaToJ8jSxTpgGkZSkwKE+JQGihdcaqnyHEFOSAU45utQ+yLruE1dkonB2SDI8t375wOKgNn8pQvaWY9kPzxDQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.19.2.tgz", + "integrity": "sha512-5V3mPpWkB066XZZBgSd1lwozBk7tmOkKtquyCJ6T4LN3mzKENXyBwWNQn8d0Ci81hvlBw5RoFgleVpL6aScLYg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.19.2.tgz", + "integrity": "sha512-ayVstadfLeeXI9zUPiKRVT8qF55hm7hKa+0N1V6Vj+OTNFfKSoUxyZvzVvgtBxqSb5URQ8sK6fhwxr9/MLmxdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.19.2.tgz", + "integrity": "sha512-Mda7iG4fOLHNsPqjWSjANvNZYoW034yxgrndof0DwCy0D3FvTjeNo+HGE6oGWgvcLZNLlcp0hLEFcRs+UGsMLg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.19.2.tgz", + "integrity": "sha512-DPi0ubYhSow/00YqmG1jWm3qt1F8aXziHc/UNy8bo9cpCacqhuWu+iSq/fp2SyEQK7iYTZ60fBU9cat3MXTjIQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.12", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", + "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", + "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.1.tgz", + "integrity": "sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.5", + "@babel/plugin-transform-react-jsx-self": "^7.24.5", + "@babel/plugin-transform-react-jsx-source": "^7.24.1", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.14.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001646", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001646.tgz", + "integrity": "sha512-dRg00gudiBDDTmUhClSdv3hqRfpbOnU28IpI1T6PBTLWa+kOj0681C8uML3PifYfREuBrVjDGhL3adYpBT6spw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true, + "license": "MIT" + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.4.tgz", + "integrity": "sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.35.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", + "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.19", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.9", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.9.tgz", + "integrity": "sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=7" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lottie-react": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/lottie-react/-/lottie-react-2.4.0.tgz", + "integrity": "sha512-pDJGj+AQlnlyHvOHFK7vLdsDcvbuqvwPZdMlJ360wrzGFurXeKPr8SiRCjLf3LrNYKANQtSsh5dz9UYQHuqx4w==", + "license": "MIT", + "dependencies": { + "lottie-web": "^5.10.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/lottie-web": { + "version": "5.12.2", + "resolved": "https://registry.npmjs.org/lottie-web/-/lottie-web-5.12.2.tgz", + "integrity": "sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==", + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.40", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz", + "integrity": "sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-import/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.19.2.tgz", + "integrity": "sha512-6/jgnN1svF9PjNYJ4ya3l+cqutg49vOZ4rVgsDKxdl+5gpGPnByFXWGyfH9YGx9i3nfBwSu1Iyu6vGwFFA0BdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.19.2", + "@rollup/rollup-android-arm64": "4.19.2", + "@rollup/rollup-darwin-arm64": "4.19.2", + "@rollup/rollup-darwin-x64": "4.19.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.19.2", + "@rollup/rollup-linux-arm-musleabihf": "4.19.2", + "@rollup/rollup-linux-arm64-gnu": "4.19.2", + "@rollup/rollup-linux-arm64-musl": "4.19.2", + "@rollup/rollup-linux-powerpc64le-gnu": "4.19.2", + "@rollup/rollup-linux-riscv64-gnu": "4.19.2", + "@rollup/rollup-linux-s390x-gnu": "4.19.2", + "@rollup/rollup-linux-x64-gnu": "4.19.2", + "@rollup/rollup-linux-x64-musl": "4.19.2", + "@rollup/rollup-win32-arm64-msvc": "4.19.2", + "@rollup/rollup-win32-ia32-msvc": "4.19.2", + "@rollup/rollup-win32-x64-msvc": "4.19.2", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.7.tgz", + "integrity": "sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.0", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.5.tgz", + "integrity": "sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.39", + "rollup": "^4.13.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", + "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", + "dev": true, + "license": "MIT", + "dependencies": { + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend/react-code/package.json b/frontend/react-code/package.json new file mode 100644 index 0000000000000000000000000000000000000000..4008901b4f9655c66c4263088268e578be486c2b --- /dev/null +++ b/frontend/react-code/package.json @@ -0,0 +1,30 @@ +{ + "name": "react-code", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", + "preview": "vite preview" + }, + "dependencies": { + "lottie-react": "^2.4.0", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react": "^4.3.1", + "autoprefixer": "^10.4.19", + "eslint": "^8.57.0", + "eslint-plugin-react": "^7.34.3", + "eslint-plugin-react-hooks": "^4.6.2", + "eslint-plugin-react-refresh": "^0.4.7", + "postcss": "^8.4.40", + "tailwindcss": "^3.4.7", + "vite": "^5.3.4" + } +} diff --git a/frontend/react-code/postcss.config.js b/frontend/react-code/postcss.config.js new file mode 100644 index 0000000000000000000000000000000000000000..2e7af2b7f1a6f391da1631d93968a9d487ba977d --- /dev/null +++ b/frontend/react-code/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/frontend/react-code/public/vite.svg b/frontend/react-code/public/vite.svg new file mode 100644 index 0000000000000000000000000000000000000000..e7b8dfb1b2a60bd50538bec9f876511b9cac21e3 --- /dev/null +++ b/frontend/react-code/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/react-code/src/App.css b/frontend/react-code/src/App.css new file mode 100644 index 0000000000000000000000000000000000000000..b9d355df2a5956b526c004531b7b0ffe412461e0 --- /dev/null +++ b/frontend/react-code/src/App.css @@ -0,0 +1,42 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/frontend/react-code/src/App.jsx b/frontend/react-code/src/App.jsx new file mode 100644 index 0000000000000000000000000000000000000000..f2656b7da9da94a9cdd9b082afcd8c20b4704556 --- /dev/null +++ b/frontend/react-code/src/App.jsx @@ -0,0 +1,18 @@ +import { useState } from "react"; + +import "./App.css"; +import Navbar from "./components/Navbar"; +import Home from "./components/Home"; +import Footer from "./components/Footer"; + +function App() { + return ( +
+ + +
+
+ ); +} + +export default App; diff --git a/frontend/react-code/src/assets/lottie.json b/frontend/react-code/src/assets/lottie.json new file mode 100644 index 0000000000000000000000000000000000000000..1471dd9f1677e3e65b63ed3310103f3936658bd6 --- /dev/null +++ b/frontend/react-code/src/assets/lottie.json @@ -0,0 +1 @@ +{"v":"5.12.2","fr":60,"ip":0,"op":240,"w":1200,"h":1200,"nm":"doctor final","ddd":0,"assets":[{"id":"image_0","w":284,"h":300,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_1","w":391,"h":622,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_2","w":101,"h":132,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGUAAACECAYAAACJZOXoAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAEr0lEQVR4nO2d3XEiORSFz6X8bjYC4wiWDBZn4BCYDDwZ4AiWiWC9GTiDwREMjmDaGUAEdx5aUAbbSNAtcbo5XxVPdOne5kNS6wdkIMHdJwA2r89YAFiY2aJIQpeKuw/dfebuK09n5e5zdx+dO//ecYKMz+TMzn0fvSDUjmUDGfssXbXmdNx97O5Vi0I2rNx9fO77awsrFcjdhwAqANeZQqwBjM2sylR+MQYFYy2QTwhC2c9Bvojhdadeivm577cp2Zsvrzvh37nj7HHb5WasRPM1KxCDIWZrZK0pBTr3Q/xlZqszxG1M7ppyj/MI2cTuJF/WFK/noqYARgD+KZMODa8AlgCezey5dPAPUoKMOYC/SydDyhuAacmJ0J3my92nAH5CQt5zA+CnF5xn29aUIOS/UoE7yqOZzXIHMaCekwLwK3ewnnDXpClzd4+Vv2m+Oj8KLshT7gCDUEsu7emqCTfunvVxe4D6sVccR1YpVwBS1iEeUc/yXgITAA84POgdZc3A3Rd9n3U9Fk+Y1W5QdozJAPH+pPiIloDFOYOXXOQSiUgKIZJCiKQQIimESAohkkKIpBAiKYRICiGSQoikECIphEgKIZJCyFXTAsLmvc7B/CvjxlJQb97rIsV+xXYsar4IkRRCJIUQSSFEUgiRFEIkhRBJIURSCJEUQiSFEEkhRFIIkRRCJIUQSSFEUgiRFEIkhRBJIURSCJEUQiSFEEkhRFIIkRRCJIUQSSFEUgiRFEIkhRBJIURSCJEUQiSFEEkhRFIIkRRCJIUQSSFEUgiRFEIkhRBJIURSCJEUQiSFEEkhpI0/YbtroQzxjsZSmP/2r6uo+SJEUgiRFEIkhZABgNfINaMCebAxOmfwAYBV5Jp5OPT5InD3EYBZ5LLYF7kRVwAqHD4V9RrArwYns/aRKmfhA1zOQc1tkvXoXgMAd68A3OQM1CPWAEZmFmv2PyXhMOi7zdPX7JQAF8rsVCGpDADAzJ4A/J8zUE94MbPsR8G/H6c8AHjJHbDDvAK4LxFoK8XMVmY2AfBYInDH+GFm49zN1oYPI3ozmwG4BfADwFuJJEhZo27Sb83soWTg6MEuYTA1OrLc2EE33wEsjyzzK8YA/o1cc+yaT2Vm1WnpHCbl6Su6nhKSq44MHLtk2dY6TMqgtmtrPpqQJERSCJEUQiSFEEkhRFIIkRRCJIUQSSFEUgiRFEIuQgrLbpwwuRul81ISJxunmdNIZZpwTVuz57t4nEnL8ZaReKvUb2ku3H0Y8jhEBfSgpgQWkfevkXlbUAJPIY9DLLJFP0NNGSfEdHdfuPuwzdgJuQ3d/Skxv0nORIoHDx94CpW7T9uO/0VO0xAvhW1fEl0OPjGZ6JJn26uBQXRsGXqfF9SrqlWLqYzCa4x4c/We1j+THc5RU0LceeK3ko2d/q4vHf2GGTLviM/AG/YelXslJezLuke9PagLrAHc7+8n65UUYLv7ZgL+PWtrABMz+zBY7J0UAAg3OgbvNtwX1Dv3Px2991IKsLMN9xt4as0awDczm5TaArsl4WljUjQhbMcMqWOZtlmG+EkD11zjlFnkkqdc20JjhA9mjLrfyc0SwOLYWvEH9d3QSXsbnv4AAAAASUVORK5CYII=","e":1},{"id":"image_3","w":288,"h":229,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_4","w":62,"h":62,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA+CAYAAABzwahEAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAABV0lEQVRoge2bwU3DQBBF31jcSQeYDlJCSggVQAkpwXTgEkgH7gDoICWYDtLBcLAjCAeE4lkH6887WZZ2NG8PI/lrbATj7htgB6yCSrZm1gXVKoO7P3kZmuheLaqQu6+AHriNqvmDezPro4pVUYWANeWkAbaRxSLFSxM1M4BliYeS4mqkuBoprkaKq5HiaqS4Gjenh/F7ej2h1pSzf6Ee051LOZjZ8ezNmJwcC6Un/4nm5Gw+3OLrhJtcGg9m1lUMwaASLQzDLTTZWAB3IDzVU1yNFFcjxdVIcTVSXI0UVyPF1UhxIT5gEG+v3MjcvABU4/Lc83V7mY29mTXwbc/N3WuGlapLM7gaeJzY2G+8A28Tzndmdgjq5Qt338yViUegONyAFNcjxdVIcTVSXI0UVyPF1UjxAOK/dc8J/dswTHxcniuV5OyLhAiRuPvW3fug8KGPDiDk+QTiOCLGyowA2wAAAABJRU5ErkJggg==","e":1},{"id":"image_5","w":133,"h":133,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIUAAACFCAYAAAB12js8AAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAQzUlEQVR4nO2dz48cxRXHv6+71zYXb25IjtdGLCFKdr05oByyC7kEEf8ADlxiwAcINjZOFCdx7MVeJbIMGEiIEKzB9sIhibCRuSUyshMZJWCDE0VcWPsPYBehOJFIPBczO9P9cpjpme7qrurqHzNdvTtv1dZuV70fVfWZV9XV3R7CMpcjt/J4g7HWsrxJACBgnJmGdXRtBgN8FUDNI1602F5EE1ePfEG1ngZdslDZARQpM+sak5ZnTbLF48Q0DvB6AACHmxn6i/VsE4drEugKwFc95muua3/03Be0mCd2k6TSUBy5tT7u2s5mgKcAfEdrgHsASPvkZ/DoIwZ/ZLn2+Spnk8pBMbOuMUmg7SCaAvNX/fORhmgOcBCSwgABQExXPPbOW559tmqAVAKKmXU8QtTcDVhbOlOCKJH0HirTkx4BAsYFgnf2yH+GLmhGUqoYDcXMusYk2bSbGZv9c6Q1RRgKCPFnxHQWTWvO5OxhJBSHR5rbCXQALMkKbak2IHinaVsvPfe5eQtUo6DQhSFOKguIgXAYAcXMxsYkMz3LwJjl5benBQgQgqRsQAj4rSnTSqlQzIzyCJrucx7j+3HlKxCQGhP/6uh156ym155IaVAcus3dTcwHAKwNnmfZCh75ISkdEE0bFtNHDYf2lTWl9B2KmVEe8Vz3DwDGAPVArXBAagy89Mx1e07TU2HSVygO3ebuBqLZISiywVqpgDDoytISPfbif+mGppfc0hcopm/nYYvdWaC936A/z8bKCgSkBuJ9R//lnNe0nkt6DsXh0fq459mzaE8XEacDQLTvxzDjpWf+bb+kaTWz9BSKQ6ONKTD9noPThdBRA0BE/URA3qkvWb/s5XTSMyimR5vbifGqstJKBaRVpqEfDwiDri3V6aFegdETKA6Nuge5taBsiWKAQhKoNQBErCNq0TWbad+R63RVMwJtKRyKp+9ozjJju9TJAJDiACHUbM96qGgwCoXi6Tuas4wwEAlTRKmAAHJIKgMIuGZ7TqFgFAZFLBCiDABRS+YbdlyzPe+hI9dXFwJGIVBMfy28htC8YykPZBkDkuS3G0BaQLi29KXz7SIWn7mhmL6zuZ0Zs1IH+p+Srk74/AAQXUAI15Zu2rmvSqw8ygfubG5lYBYEdA5BmLqHUgI2GN0DFPjJpi+NTTdOIpB/BM97VvfIKlr9I/SBtH2MsVVr3N9lj8Z3l1F+8Y36uOXaf4TiPobqU1p6BhHKZGJ0BgFiF6oEvHP0c+cnmX1nUZq+nYd5lfsn5s6dzuQmDADJLFkAsYB9Rz/P9lxGpsTnDbnHfSAAgAnkH1Ilk6eYhPh04tSZYrJOMyn6p/PjgZ85fGt9PIu/1GEe/Lq7B4QtigEeACIBBOgnIDRMjv3q9O2s9YpkUFKFNj3GGzyLD4adQzXA6QARalUREDHWMgEhYGyo3jwQXyqXVOG47B4HsFYaTF5AFDbKBqSIK5lyAKFdM+sak2lsaYew/5vuHjAixisPSIpprqqAEFmzaaYRLbfTY7yBiA9m7QCjAWmVLXNAeH2aaUTLlcvuc+D2fkTODhgAoo61V4Aw0a7DI3pXI4nmD4w1ppiwJe0AhwPSACQ6wNUDJDpNmQUI28/oVEs06REdQ6BpWTJAKC7VYBkKiAnb7UUAQsDk4fXNLepaCVDsH2s+DEYw5YSaVnVAlJCopwhjAEl7P4aInlV7TYCCiaYVDQglzioCkuhXom8SIIA8i8QCwrz+8EhT+dyLFIr9E82HQTySogEDQCoCCIGUVyJSKJhpOkcDVh4g0f4xFxBSZ4tYKH461pgCvJGCGpAOEEUnGA2IYMN4QCz8QGYnFgrL4adaqpGLtLwNSAYk2QaAASB5+qcNxpRs3yICxb4x3sBMW6IDvHwBUUJiMiAJ8SXFyZa9O65+BAoaau5JHuBqAJJmHbMSASFgS9w9kSgUwLaOWa0BNhcQYABIAiBrbc+NbGaFoNj/rcbdYPgLzLDZfgASbUD1ABFTtPmARK5CQlA0iR5OGpyEBkgAYam1FA2oBiAKG2UDEpelGZicGeXQlWYICgLfndQwoYT0AIEYWnIHaMYwACQBkigEkTFi150KqnSg+Nld9U1EGIk1r+5cIwEpfLPMZEBaZZkB8Qhbg9Uc/xfPs7ZaQeVQ1ILhuPNiKXVLOVCPIvoS44FfWWRHHkOoJNjJpN+GblEG/SAYylcfJDakPhX6of5t/dMtlcUQ9r85WNThwGLcDZnIPiUlZJBILY0MAvQpg0QzQGUyyKHRRmcK6UDhWZjyCPBSBKB1XizVAaQ1jGLzYv0YBYjCRtmAJC1UGVbn+VsLAPbd1QhlCR+O0gCJ2BgAIvOphETdP2FAPO5kCn9NMdVxLPR7EAxLc44rdA0SsZG8BgELIchjCHUpB2IodA2isJF3DZLoV6Iv9A+BIE4fPIGYT69IaCUziGhDM4YqZpBEvxJ9v28Oj7ZukLWgINoUMBRWMRSQ6ABLABHqDQCR6zPbG4A2FIzO1rZoqP+ARG3EAtKO20xAFP1gMiCeTeMA4Pz4rvomVQM6/jjkSvyrazhwPtMaRF1Ggd84WEe+hpAtDsJ/qvdS4rWkaxDRlaQfTFuDEHMLChvWcKeS/iIq3LvCAPkyACTGVY8AaevpbFSp/A4DgAML4fsdEmWFobCmSYBANcDVACRiQz3AyVlEoe9R611hx0W3sVLnMQYCgXRVTANEmOaqCEjbRlelD4A4FvEmv+eypDAhEFF/5QGiiKEKgPx8lEccRvyXwZcNCKCApBRABBMyfc0YTAXEdpobnE6VLM4TAojTb9tIBATQzCL5AQnFUOQd3aoC4nBLjUgxOFrOEwJQ2CgbkHCpQYAA+gMclLyAdDIFBwaHhMCKvIxKsNEbQEQbJQMSbyM+ujKeCXHiKoUAEebfSgKiiqEEQNR7KRL/fQTEQZwMAMkPiFhYFUAgg0ISSl5AIgEsZ0AiNqoDiMNq52GRAAII65CC5ziF/gAQYfWU95kQoLXNnWYjRuqEA2eMAkSwUUlARBuaMWQFxBErpbiMkjoxChDFNFc2IIA4wDLjkI9RDwCJrikGgOQHJBqfdJqTTxElAeK0HrKZj6gHK7UPRvcQy3T023GSf2jptxpQ5FNPYS2JjdwPDanLuiXR/un2cags0vuxfuT6ci2xf39zbehDhy38r1NT9d0URWYQQL5ZVk4GkS5UV+IzIQ6YFv3uYiuQCDIAohGAzEbZgIQ1TQIEqgEuGhD6DAAcEH8aqNSlxgqrSCGJriE0A4i30TNAFDaMBkRYB/UWEF4AAKe5xpl3vmyqQyEwB95PryQgMfFp6q8YQBh8FQCsuYuSrysMLlQY1DkAsNU9pKK9iNKzUegiVTOGGH3pItGX4CJVuVBV+ZeXhUu0FpksHPHWWqXWAtB57wOXFeEXC4iyAXo2ygYkciWj0O8TIIW8xM3szQP+ex+Eea0XR0QnQUAYpAWIYKOKgMTYKBsQaQxpAFm9xrkKtDevGDQfmi4Fp7rvJ8oWqpkudUXbevqdvwbPhERjSFhkLr74cWsp4QCA59mXbKspdaLsOFmQJgEiLNAqCYgqhgIAIdCHnRgAYO4yLYCwGDIjSVNa04yob9IUo2nD6ClGFUPGKcZFd13ZHRqmS2m3k1MDQqg8IIVvtxsCCA/Z4UwBABwgJUsH5F2olg1IIQvVqgJC+OyVj2nB/7P73xutss/FqVQeEN0shoKvZIoERLBRNCAMvBss7nT73EW6gdZ+hbQ5lQQkIT5ZG4wCRGGjCEDI9d4Ongp1NROf0wtlAMhyAYTBtZfnV4cenwhDYQ+dVjRgAAiWIyB0RjwV6tK5i3TDs/hdjQbkA4Q0dSINCBxlA0LGAaJ1PybSJCs8dQAxX+1geda5lA2QDneWa/2yATFiuz27fipAGLj68serI0/eRbru5N+c00BgIyt9A4wEpLJ3dBUZNkE/ERC26GScLVlXvZW7AbIzKn2pRn5AgGUAiGYMOoAQcW0N7Hfj9GO7h23n9R6kwAEgBgHCoLf9G2CixHbJ3EW6wcxnGK2fHqTAagNCywEQ54SsnrwbbPdYtwHdnx40wBxADNhu7wcgRPR2cFtbFGnT5y7esgDgTLQB1QNECYmobyog2hkgoX0A4NkvqMJRN5fcY+oGlAtImku5ygOiaSOpf5OyBJAARStb0AvSUEoGRGljAEhMO7l207MPJXhNyBQAQM5rTFSL2UFTNGAZA0KoLCAe6MSc5IpDdJUou75XfxQU3ugQHleTP0QWfOxLdKd69Czej0pfWlNqQ2Fb6VdmI/jiruqxQ4k+Sc5r+0eHuWgZY3H2n0MTOiaTMwWAN95bfZotDr0GIHzCxM9SKMrYDCJqScToDCLaMPiZEMvC3oRIOqIFBQBYnrcbRLW4IJU7aJIGDABR6xd5RxeMU6/8Y0j9bk9AtKGYu3jLAoO7VyOSIMsAJGGAVzogi3XXeT7BW0Q1ley8r36emORfVymZC2Pm6PiakTmSpGUy0VxDLK81iGi7LR7j/tdTZAkgRaboKHirtgNUk1bQyCDKK5lICizwSqbIDJKcIeOlnxmE8UJaIHwzqWXXfc37Ga2HMzJ9QsQgdD7B/csgUosproT0dGT6OTNI2++Hx/8+tE1TOySpMwUAvPEX5xyYngcyfkIEMSyDSGMo435MpmdCiGtLDeeRBI9KU5ll131LJxl4NNZwvzKIULJSMgggyyJcI+Ztx69En6jSlUyZwhfyhqZBmC/sEyKIVgYRSlZKBgHiMwix9XQeIHyXueTJe3nYsxvnAYS/tbDIT4jaRv8zSNSGERmEQXtPXHYiT2enldxQAMDOzfUJsHUe4LWxFfJeyg0AUUtrC/TM6x86T2lqKKUQKIAWGAxcAGgtAAS/aSYkA0AyAaLUIzrz+qVigAAKhAKIgtFxMgBEaTHXZlnBQAAFQwHIweg47BUgChvLFxA6c6JgIIAeQAG0Fp+u07gAcfEpOh8AorSoAoSJ9p78wDktqZFLegIF0AKjObR0VnmfJBhIFQFRa8n8qPQTAWGgBtDTvQIC6CEUvvxwy9Ip8je49D9lZQMir1kuIDWPva1zH+Tbh0iSnkMBADs313ew8OTWAJDUgFz2hpxHpP8ZboHSFyiA9gKU6BTi1hl5AVHYqAogEl8tdcbzp94fSvVMRB7pGxRAe52xamkGoL1ZLsOCUhVAgBwLVcYiAXtOvD90SU+rGOkrFL48tq1xj8V8CsAGINt1elDKACTGRqGAMHACtnOsH9OFKKVAAYSzRiigASCLloU9J97rb3YISmlQ+LJzc33CI/waFL10XWGA1MB47dRf+7d2kEnpUPjyxJYvH2CyXkR7ShFlWQMCnAENTZcxVcSJMVD48vi2+g5iOgwJHED2G0oBfVMAOQNyj7Vf5jZGjIPCl8e31XeQhx1x00pQqgcI1UDeW8Tea6bB4IuxUPiy88H6hNegH4H4AdlNNl/KACTRr6/OmCfm14hWnTNlmpCJ8VD48uS9PNxYvfSATvYA8gPStpFzN5VqgPcWezj95nurP9HzWr5UBoqgPLH15kaPrHsspvsZuD+pfj8BIcYCLD7HsM69+efyLivzSCWhEOWxbY17LOAeeN53e70Gadvo1CRgAYxLAF8iz7tk6johjSwLKETZ+WB9ghu8kWFvIuIJZv5Kqn0QIAoIY4GJFyzgEzB9CtAnlut8Yvr6IIssSyhU8sTWmxtdciKXu04zrjZQ1Skgj/wfYRA7vrAHg3kAAAAASUVORK5CYII=","e":1},{"id":"image_6","w":22,"h":41,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAApCAYAAAAxmNlDAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAAzklEQVRIie2XwQ2CQBBF3xoKoAQ60A7EDuxASoAOLMESKMEOxA6wBDvACsaDHNaBXUICB5KZ007+n5e/c9p1ItKwfLUJcFwBzG4N6KrgBDh5/UPpFdAGZgvg4vUvoOzP3Z9ThpWHEonIVXkbX9/ejg1sYAMb2MAGNrCBNw9OlwK/VX+OzBaq78ZMAIhIPfLi1ICQr/Q9Tg3kDN/IAE+g8W6xV/oHyJxz0dS3kTRTVQaBHjgVkXYGtJ6EzkzexZK6kNDDM37/ioOS7kAd2+kXBWD++3LreSEAAAAASUVORK5CYII=","e":1},{"id":"image_7","w":8,"h":12,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAMCAYAAABfnvydAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAAa0lEQVQYlYWQWxHAIAwEb1CABCRUQiUgpRKQUgmVUglIwMH2gzB9DND9zN5MLpEeAAlY1ANYqZyjQOYmfWXiTQFCk94GX/YW2Dqy4Z2k2C1ViW4iJSk4SWUSOAUsg5L3Pyx0mMh2tv9ZX7kA85WjAX/RVagAAAAASUVORK5CYII=","e":1},{"id":"image_8","w":89,"h":89,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_9","w":35,"h":28,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAcCAYAAADr9QYhAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAAuElEQVRIicXSwRHCMAxEUZkGSCmUQGmUQgmUkBJSijv4HDAHwnhsJV5571q90cgsMMANeAFL5N4aJPPJNg20gzANVIHEgxqQOFAn5Ad0UUHMbDWza+fIllLKEojjIgDP4QgZpJS6nkoJyTi+XA35pgmKgjRB0ZAqaBbkDySBlOLVUboBdwmkYJayRJF+iBjkh4hAxyGDQechg0DjICdB4yEHQTqIE6SHdILiIA1QPKQCmgfZgR6q/jflwqc+cC5i4gAAAABJRU5ErkJggg==","e":1},{"id":"image_10","w":74,"h":92,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABcCAYAAADJXyP3AAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAEZ0lEQVR4nO2d73EaMRDFnxh/Nx3kXEHoIFcCHZh04BKcDtxB6CBOB7gDXEHOHZwrePlwEhyMYVc66f6h3wzD2SdLq+fd1UpgbGAhuQawBlAA2APYAdgbYyrcACRXAFYAShw1eDXG7ADA2EZbAI8X+vhESzjMQLyWKO7x40rzn8aYrSG5AfA7YLw3NMJVOApYB/STDJIFGu8o7fMKwPeArh4MyR2uK+qD874KRwFr574pILlEI0CBoxhLxJsTAPy6i9gZANyjMfDESJLu8h1AjaOQOLu+hJt8+3qJMO8IIrZQEm5iMX/bvbAY2oCpsEATChmBBZqEm7nOXhN6H2hKgc/ExgzBB4C/ina1JplXxpgSOFmKSxyX46kk5ot1H1vL8iW8Vj3b8c4+DpwVdu265ptP/xFw5cfOPkcrhI3d4/252sgYEzpAS0T3ABpBHQVkQT9wrLWcALDPNTqIYe37JzR7uEPiVc/uC6uUY3SkkBoYY6pcRynJQilZQBEW9lhiriyF+58AsFCeLUmdTRnJCfZADj01WSglTihpe1IktmP0OKGkjXGR2I4hKYX7OUcpqYEslJoslBIn1E5oV6Y1Y1AK4X4FZI8C5JOLCshCqclCKdHWUbPcFNujbYmT8kA6vLvvZNF4ER3AGJMLTh+yUEq0oecO4W+WBXCMQ4EirSmDUAr339xFDj0lWSglPkLN+dxcpC3U28VWDXMsOqU5Ve7i1kNPipLKXdy6UGqyUEraQkm1VJnQjqEohPuHQnzx1TdvCOnQ7uA8OfSUZKGUtIWqhLZFOjPGj49Qfb8fMykkS6lN+294cugpyUIp8SoPlIfxs+QglPLwbk4bY2ku7+0vbjn0pOg4ibBbFsqLLJSSc6Gkw7tNIjuGYCPcr9pf+HrU4xzec27/Ml/1LhbHuVCale9Fb9L4sCWOZg6XtSBZUMc6muU9Q/JZMb9K09FW09EUi0+SK6UjbDSdab1qciFIcq9xAp8OX5RilclmFRnqQo7UeFOr0yXJWtFpzQmEIMlSKdIupPNNss57xP7SK+VcwkofkjvlAM9xpxePXubAJrFrQpAcYclAfa7t/iEZ1IdgzRFV7R52M5rdJF89xCqiDNrNXm3yJsmnmAP7JMQ9B1wJ2RSV2nTxOrQBg4jlaWO63QX94r5XsTxFSp9PqV9JehPLUyTSp/ruaJhm49yLWAEixUveCuOW1G0wk4oVINI2tg0aI0PEKiKOX45epJaxvmJFSaL0W1TIFGVAgNEhYm06jKc9LnEMWtedECAW6bkJtWP4LCLjEskRKNZWMxE2m/MkfQ9CoFh7XslbJNf0S9rkkIlbS6BYX+Yt+hW30xHJwbB8QvszS4aFGtlnMRkThnlERf9QI/valqSC/jWPL6M6MOwE/bcaWqJW+6OAYUn+GuNd/mPAsLzVplNlPykYVhuRQs01S9iUANrX3MjGE+cbahIknwTvqjnC1wwH4Yp3jSZhB3/8dgrYLPUl7GeSj+kf8vwHkrB/D0LeT9EAAAAASUVORK5CYII=","e":1},{"id":"image_11","w":163,"h":163,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_12","w":129,"h":49,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIEAAAAxCAYAAAD9asolAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAEY0lEQVR4nO2bz3XiOhSHP/nknMcu6YBMBdDBeOlkM+5g6GBwB6QCZTogFTxmk2HpdMB0EDp43mU26C0QiSFYkp3EtkS+FVjX8uXox71Xfyz4BACZqBkwBc71pTsGTLOF+K87r9rhrGsH+oC8Urcofhxc/s4Tl0DcvkftEnXtQC94LYAdX+W1GrfqSwecvAhkomKjwYa0HU+64+RFgD3c29q951ME9kH+2oYTXfIpAodBllcq6JRw0iKw1gMvuNp5yUmLANfBVZ8iCJnY0W4kU3XxkY50yamLwL3o+xtuNDhZETRYBIo/wo8+cLIiqJ3nA64LvN87kFcqRTFGsMp+i4XzjfUHdSRTdRHihpK3IpDXasyGBYohAApkotZEpNm9WDl0Edd+6LYucBeaJ/ibDjbMQQvghaG+bkTXA+c2u1eoMPcRvBSB3vsfVTSPrEVf8/ze9L5e450IZKIu2R7+qEYxsbTHDR8/1M8PCu9EAMyxhXJ72I7f8Py33NtLvBKB3shxWeAZVqUEh3pgbek7dni+V3gjApmqCxS3zjdUHQaxpQLBLVAYLMz3e4g3IuAvM17PBkw0FUEO5AaL4OoCL0Qgr9XYcA6wilHFYMWGe4rsXqy0EEyY+vAOL0TApkYaKCP2o4EWhakeyPV9uaXnuJE/PeWsxsGKrohpesRrO1UsCyg22uvBz+7FSiaqoFowlf3olUx/tp0HrM7YLoPWXz3zg5FM1GW2FI/6e2y03o8AOfCtwnIor9W4vDyt9zBu2dSqW7rniS8RNAy1/eGPpT2u+HxIsbfnYEsJpQJTJipG8S/1Ctc+8JAtxWPEwDol6jMPCGYWmxSe6wHTIOV73xxFoE8c+bqpNAGI9NaoeRm2v0z09rFJxN/0QMXGng4GXUcF+3rBk7fp9G6XJiOAbCnm2FfK+sZNKdeb/4lPpNQUgebYtR3nMlFz/H0vYbb7UJ4iTlp3oznrbClmz9+ENRzbRFBUnEGw9fvd0t5PBD9Lf6AXEWRLkQO/OnCpLmui/fm/S0qgTj1gv+4zBf/s11GHJ4umgMupnK7ItViPtlE9pbNx9DdnS/EoE7WmWdX/hz4WjILV4RG5PRHoEDFr0aX3ZEFzEeSWtrphvyBi4njMrXP8WDZ2YdD8X2eILtAsJUx9EQAEJAId4prUNA+W9rxmf7/0bMsbghGBpkk0yE2NOkW6Tp/XDLyaZQGhiaBZSsjfyQZg4uN7CUGJQA+AbS9h/x5zPbDDxebGsa/eEZQIABD29w5K2OqBLfYI87C3eOUZ4YlA1UoJuYuRjjBVginwa7X1FcGJQBdyrikhd+54QHqk34KIuLwE6yOiawc+AnmlpiikzS5bitq///kFWHhkwMLHQvAQb19INSLIUVYrt3rgAL1P0b/l4DcQXDqA57MAtrl93oIrXhCkCACX7eW8DTd8IGQRzI3tg17vlrZKsCLQKeF43hf8DKGgey+CFQGwm9bdla4UwE32W/h6pvJD+B9/5ku7A+SllQAAAABJRU5ErkJggg==","e":1},{"id":"image_13","w":144,"h":120,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_14","w":237,"h":237,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_15","w":37,"h":37,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAADa0lEQVRYhb2YvYocRxDH/9U9d5ICcRs4sAIhCRQoENyCHuA2dLhvcCv8AmMwwkIfDAiEMi8YjBLB3BuMEtvhKTEOR5ky7/kJ9qxEvp2pv4LZr56P3Z7ZxQNFsz01//5tdQ1dNYIO16ub2RAifQgHtQ6UlGSq1p5HU5m01Rdfx+ib2UDUjERxCgJC3xX4gYr45ecg3htU9C3vIs9jUE6WMOXR77oAGb74HCQ7Qb24lYdC/NwI0wGOkPdqZBRNZdoa6vntLIbidLWobIfyhSM+GmtGz6aSekM9u52nAI/BuYOz6N7gLo0xgzowU554ei+L1fKYBqABKCUznBu22+aMPVLVJOqxtxHqyf08pMHptoX2CHfHMq8k/tL9pwe8q5r/7bUt6yMAKCDovq0C/PD8XzuuRCqTPPb613WRMwCFhXWIHIFofRsNAPz4cDag4GS1NTtYN7gjqxo6UBSOFo7q5M0e4Hy0CjgXSo2clpO2AtcZkqUXpNGOXvWyIQCY8FE2dAUa4HaKIL3g1MgQAAIV9sUU2bYyzkcpza/Z4t1tul9rJV2UdBR9AAhoMPAWaYIri7eFW+hYHBdQCzEBoE3CHnCdIljVjXrsBbDFPXCe9huF/we461k/UAGk6eF9wXkDEpkCAa2H83yQingLOM/oUTgNKNsdnYe4R7iaHH79z2EaMEAKxYkv1F7hqjl8AQCBgqkxniKb4BzAlnCrCKYAENjD/Fxndk213XZuzpt2cEIkAGDe/nFjQoMPznGw64FcOTP9CsIvuS2gAAAWce1ZtQ84B7IZTg3OxpOiw1mmw/ffXU2EuDMPI9xxrapEfTXZqmJdashy/iC39958Krpps4CCMNz1lG+9vfOaCwZnCyAH6t3v1xIYed+pBJF5idPNLnNrlwWeGykA+UEwosHH1vXRGmRrOOFgnLrdsgMVJzKlYkSDSz/RmsRtAaeWj8fpYaUZre3IRsOrPnIkgqbEbxqrbZbTijm/+fiXvw7juvUb28TRkD3oLAFxsurt2sNV7gkuqRz8+mc1Qluh1qIWQhGBOGr81xvg3DmeXbMH4fi8+YuLF1QBxh5wFUIlbAtXgPEMzKO35zcmPut5f8lbAf43hMoQRF+IYzdPljAXoKRCJrPZQRJviczOUFVI9pBlfQCAchr/1pwrvtdX8hpptUh9Cl8AAAAASUVORK5CYII=","e":1},{"id":"image_16","w":18,"h":18,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAABh0lEQVQ4jbWTMU7dQBCGvxnvc5MClzSRU6SNxBG4AJK5gbkBShVFSoRyAqQUFBTxEdynAImS5h2Bd4OHqMDemRR+j2djO6BIWWmK3Z35dmZ2fmFi/cjaEtNCxLLtmbuucau/P4RqKkb6m7P95pBWK5xcDMRAfBSzwv3020OoJ0Ff37elGr86gPAMmgG6+0k/OwH48rE5JMqVGOgA8ArQ/XibmQLEIJUFsABxY93eN8bOEvBtHSLVWeYZgH7+9FRaQj5wHsDmgQh7GmMBoJZKMek4ym4MjAE8aAEQYkImbHvjk73xUe92fhr9ACBY4h9EBY+d0xzQrX+/A7qSd6Agd2LkIlOvvwEYWXWglLW0jEqREXC6XFWWXbPVa1uMG/2Wn4sBmkA3R5e/0yomrP7x5+6bd0lvIFM//esQzgDjgvJ8KeuB1sqjp1I2WntNJmqA+cnP23SotWdY8VgQpRJjT18E94D3IOXFzYz6dzDPoCmIUoj5gRq5GCtxWdJ63diirq67cv7L+gOqckOs+N50/QAAAABJRU5ErkJggg==","e":1},{"id":"image_17","w":48,"h":63,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAA/CAYAAACmVEtSAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAACrElEQVRoge2a4ZGjMAyFpTSw28FSAiVQAh0cJaSElJDrgOsgW8FxHVACJbAVvPthsXjBBJsY5Mzkm2EyTIJ5si1ZlkMUGQAlgEauGsB77HfsBoACc2ptXd4AuDgMwJ7vPEVur4vc3rEAyBwDcNXW5Q2Aq4i+iROftTV5I9HnuZx2AMA7gB5A91Rhc0CmDAAU2lqCAXAW8RdtLcEAyGXqtNpavJC5nlv3rRiQKcpaR1KE1ortvXVfaeu7ixUel8jXW1FEevsejbbGRTx6fyDT0riWzPlOj+xBHZtZM6A7QsRuwJ1dTuk1Nd4dAWbuiOj3Shu3aGr2AmZv66KTT7W0mX1/CBPvS7ntyfR8T0RXIvpFRH+YuYot8BCsEaoXvi+sK82Fb2oETN5Uw70Q9jAFgLT2DpYRtwXhLkPSGhGMmxtf0jFCpk23IthFt/WdsetCFRF9bHjuAxvT8j0M2Eq5/pM53uuAD8BDZcQvZg6OSikZQMwcrCf2FDqc2AZ8PfKwhOAztDZIWE76vELpJAR3MLXWErJiY6y9QoyNu5LDfcDhSyZt5DCjMF0Q2/kjO9RhJ73ky+VOe6W06UpNmugGyEtDVuPas01XihLfAIy10mah1wZ6BGyEMJYxbcrY60BBRH+J6B8zFzBOVhFRQUSDww2boRszB+2nYfykkttatrxxgCkAPOcZAUwWOhR600iNQ8AY/yttLcFYTvs8p5EDGBeuRltLMC+n1eTltFqk6LTOVAI/D6xbZh5OIlsyqUAemgbsjjjmUtpaJ+20VlRZ46Kt1YmneMgIpBXzAVSe4r+nk7bmH2BDMVZbs82Jxo2GL297CNnKq7ClzYnCj0k/9xCyGYz/d/Ol0NY8A/5/6kg3gYNJ1JYKUkE1nCOZJXMwOX4uV0cmgauTS96E/z+BXR7APgWrAAAAAElFTkSuQmCC","e":1},{"id":"image_18","w":45,"h":46,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAuCAYAAAC8jpA0AAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAACdklEQVRogc2Z7ZGbMBCGXzL3/1yCU0FcAiVcCS7BJVCCS7h04HTAdUA6UDogFTz5IWFjI6xFwcAzw4y/tHotdlerpdCCAHtJJ0mH3se1pHNRFO2SWkwAR6AljgMOaSsLAhxGxD4K362t9QpwMYgGOK2t9YpRMEBtsfftxXpfQlQ0sAMqoA7XGR/5r2YPfEweFYImFuUtmREONEb3cOECHwenoOcj2IjP3xsUoyUjwsOkKVrC3QxCTwwDeLhwQGkwPv32edufCbvHkXE7bncqKvpkEF3liA72u9vc5zIQEhdeR39nXOnt5FLp+o/GttqO/do6ByRcpFpbn/SQp/GZ4Sjpl6Sfkv6Gr74k/VlUmZUQFA2RtNbz921UY9zS0dM8jN8Z16/GgpAOZ/h9A5wXkDbKm6Sm9742jDlKqoFuXCnJSaqLorCMnwf8qcK8eozvbp8vlJkP6VNIlWHzGBaiqyizSoVnE6RqCDfB1oHxCjCaxXJF1wnRGO1Ydt+o8LdZ/slQEJJ+ywdoE672IVDPkt4Tpn7IB/5dvOUcty6J778kfZfvbzSS9uF1Vxs7/FmwNM73//7NfX0bY3THDGNLbCXwJHezCn/0bQeUE2xYmbfzBOzDyk2uR7CfG1PuuBz43GyhXFvrHaQ7T6vWOAOCa7VB+GO+dmz0WNfQq1XwsZEVH4uALwXm26ZfDb7ddm3MbB5unaZybS0muPUItxVgY8QCb1Nw3/py+KK+3mzgJXa57blF2CyekdUmjjHn44tU3fuu++eH2cwpejF/nVO0m9HWMpA+qLq1NUZh/NlK9kOmGMVchjrwNUUlf6CVvNtURVG4ueb4B1+oMAC6rItfAAAAAElFTkSuQmCC","e":1},{"id":"image_19","w":189,"h":170,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_20","w":189,"h":170,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_21","w":408,"h":367,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_22","w":408,"h":367,"u":"","p":"data:image/png;base64,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","e":1},{"id":"comp_0","nm":"Doctor","fr":60,"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"head/Doctor.ai","cl":"ai","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[-5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":180,"s":[-5]},{"t":239,"s":[5]}],"ix":10},"p":{"a":0,"k":[598,599.5,0],"ix":2,"l":2},"a":{"a":0,"k":[140,299,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"body","refId":"image_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[596.576,891.811,0],"ix":2,"l":2},"a":{"a":0,"k":[195.16,310.771,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"blood bag","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.167},"t":0,"s":[720.772,588.192,0],"to":[-0.01,0.026,0],"ti":[0.023,-0.054,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":1,"s":[720.713,588.349,0],"to":[-0.023,0.054,0],"ti":[0.031,-0.057,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":2,"s":[720.631,588.514,0],"to":[-0.031,0.057,0],"ti":[0.039,-0.06,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":3,"s":[720.525,588.689,0],"to":[-0.039,0.06,0],"ti":[0.047,-0.063,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":4,"s":[720.396,588.873,0],"to":[-0.047,0.063,0],"ti":[0.055,-0.066,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":5,"s":[720.243,589.066,0],"to":[-0.055,0.066,0],"ti":[0.063,-0.068,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":6,"s":[720.067,589.267,0],"to":[-0.063,0.068,0],"ti":[0.07,-0.071,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":7,"s":[719.867,589.476,0],"to":[-0.07,0.071,0],"ti":[0.078,-0.073,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":8,"s":[719.644,589.693,0],"to":[-0.078,0.073,0],"ti":[0.086,-0.076,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.162},"t":9,"s":[719.399,589.917,0],"to":[-0.086,0.076,0],"ti":[0.093,-0.078,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":10,"s":[719.131,590.148,0],"to":[-0.093,0.078,0],"ti":[0.1,-0.08,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":11,"s":[718.841,590.385,0],"to":[-0.1,0.08,0],"ti":[0.107,-0.082,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":12,"s":[718.531,590.629,0],"to":[-0.107,0.082,0],"ti":[0.114,-0.084,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":13,"s":[718.2,590.878,0],"to":[-0.114,0.084,0],"ti":[0.12,-0.086,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":14,"s":[717.849,591.132,0],"to":[-0.12,0.086,0],"ti":[0.126,-0.087,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":15,"s":[717.48,591.391,0],"to":[-0.126,0.087,0],"ti":[0.132,-0.088,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":16,"s":[717.093,591.654,0],"to":[-0.132,0.088,0],"ti":[0.137,-0.089,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":17,"s":[716.689,591.921,0],"to":[-0.137,0.089,0],"ti":[0.142,-0.09,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":18,"s":[716.27,592.19,0],"to":[-0.142,0.09,0],"ti":[0.147,-0.091,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":19,"s":[715.836,592.462,0],"to":[-0.147,0.091,0],"ti":[0.151,-0.091,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":20,"s":[715.389,592.736,0],"to":[-0.151,0.091,0],"ti":[0.155,-0.092,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":21,"s":[714.93,593.01,0],"to":[-0.155,0.092,0],"ti":[0.158,-0.092,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":22,"s":[714.461,593.285,0],"to":[-0.158,0.092,0],"ti":[0.16,-0.092,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":23,"s":[713.983,593.56,0],"to":[-0.16,0.092,0],"ti":[0.163,-0.091,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":24,"s":[713.498,593.834,0],"to":[-0.163,0.091,0],"ti":[0.164,-0.09,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":25,"s":[713.008,594.107,0],"to":[-0.164,0.09,0],"ti":[0.165,-0.09,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":26,"s":[712.514,594.377,0],"to":[-0.165,0.09,0],"ti":[0.165,-0.088,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":27,"s":[712.018,594.644,0],"to":[-0.165,0.088,0],"ti":[0.165,-0.087,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":28,"s":[711.523,594.907,0],"to":[-0.165,0.087,0],"ti":[0.164,-0.085,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":29,"s":[711.03,595.165,0],"to":[-0.164,0.085,0],"ti":[0.162,-0.083,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":30,"s":[710.541,595.418,0],"to":[-0.162,0.083,0],"ti":[0.159,-0.081,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.168},"t":31,"s":[710.059,595.664,0],"to":[-0.159,0.081,0],"ti":[0.156,-0.078,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":32,"s":[709.586,595.904,0],"to":[-0.156,0.078,0],"ti":[0.152,-0.075,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.169},"t":33,"s":[709.125,596.135,0],"to":[-0.152,0.075,0],"ti":[0.146,-0.072,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":34,"s":[708.677,596.356,0],"to":[-0.146,0.072,0],"ti":[0.141,-0.069,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":35,"s":[708.246,596.568,0],"to":[-0.141,0.069,0],"ti":[0.134,-0.065,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.171},"t":36,"s":[707.834,596.769,0],"to":[-0.134,0.065,0],"ti":[0.126,-0.061,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.172},"t":37,"s":[707.443,596.958,0],"to":[-0.126,0.061,0],"ti":[0.117,-0.056,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":38,"s":[707.078,597.134,0],"to":[-0.117,0.056,0],"ti":[0.108,-0.052,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":39,"s":[706.74,597.297,0],"to":[-0.108,0.052,0],"ti":[0.097,-0.046,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":40,"s":[706.432,597.444,0],"to":[-0.097,0.046,0],"ti":[0.085,-0.041,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.18},"t":41,"s":[706.158,597.575,0],"to":[-0.085,0.041,0],"ti":[0.072,-0.035,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.183},"t":42,"s":[705.921,597.689,0],"to":[-0.072,0.035,0],"ti":[0.058,-0.029,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.189},"t":43,"s":[705.724,597.784,0],"to":[-0.058,0.029,0],"ti":[0.044,-0.026,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.189},"t":44,"s":[705.57,597.863,0],"to":[-0.044,0.026,0],"ti":[0.03,-0.027,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.187},"t":45,"s":[705.461,597.943,0],"to":[-0.03,0.027,0],"ti":[0.016,-0.029,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.181},"t":46,"s":[705.392,598.027,0],"to":[-0.016,0.029,0],"ti":[0.003,-0.03,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.168},"t":47,"s":[705.364,598.115,0],"to":[-0.003,0.03,0],"ti":[-0.009,-0.031,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.157},"t":48,"s":[705.373,598.206,0],"to":[0.009,0.031,0],"ti":[-0.021,-0.031,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.154},"t":49,"s":[705.418,598.3,0],"to":[0.021,0.031,0],"ti":[-0.031,-0.032,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.154},"t":50,"s":[705.497,598.395,0],"to":[0.031,0.032,0],"ti":[-0.042,-0.032,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.155},"t":51,"s":[705.607,598.491,0],"to":[0.042,0.032,0],"ti":[-0.051,-0.032,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.157},"t":52,"s":[705.747,598.588,0],"to":[0.051,0.032,0],"ti":[-0.06,-0.032,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":53,"s":[705.915,598.684,0],"to":[0.06,0.032,0],"ti":[-0.069,-0.031,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":54,"s":[706.108,598.779,0],"to":[0.069,0.031,0],"ti":[-0.076,-0.031,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":55,"s":[706.326,598.872,0],"to":[0.076,0.031,0],"ti":[-0.083,-0.03,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":56,"s":[706.565,598.964,0],"to":[0.083,0.03,0],"ti":[-0.09,-0.029,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":57,"s":[706.825,599.052,0],"to":[0.09,0.029,0],"ti":[-0.096,-0.028,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":58,"s":[707.104,599.138,0],"to":[0.096,0.028,0],"ti":[-0.101,-0.027,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":59,"s":[707.399,599.22,0],"to":[0.101,0.027,0],"ti":[-0.106,-0.025,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":60,"s":[707.71,599.299,0],"to":[0.106,0.025,0],"ti":[-0.11,-0.024,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":61,"s":[708.034,599.372,0],"to":[0.11,0.024,0],"ti":[-0.114,-0.022,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":62,"s":[708.37,599.442,0],"to":[0.114,0.022,0],"ti":[-0.117,-0.02,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":63,"s":[708.716,599.506,0],"to":[0.117,0.02,0],"ti":[-0.119,-0.019,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":64,"s":[709.07,599.564,0],"to":[0.119,0.019,0],"ti":[-0.121,-0.017,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":65,"s":[709.432,599.617,0],"to":[0.121,0.017,0],"ti":[-0.123,-0.015,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":66,"s":[709.798,599.665,0],"to":[0.123,0.015,0],"ti":[-0.124,-0.013,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":67,"s":[710.169,599.706,0],"to":[0.124,0.013,0],"ti":[-0.125,-0.011,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":68,"s":[710.543,599.741,0],"to":[0.125,0.011,0],"ti":[-0.125,-0.008,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":69,"s":[710.917,599.769,0],"to":[0.125,0.008,0],"ti":[-0.124,-0.006,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":70,"s":[711.29,599.791,0],"to":[0.124,0.006,0],"ti":[-0.123,-0.004,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":71,"s":[711.662,599.806,0],"to":[0.123,0.004,0],"ti":[-0.122,-0.002,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":72,"s":[712.031,599.815,0],"to":[0.122,0.002,0],"ti":[-0.12,0.001,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":73,"s":[712.395,599.816,0],"to":[0.12,-0.001,0],"ti":[-0.118,0.003,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":74,"s":[712.754,599.811,0],"to":[0.118,-0.003,0],"ti":[-0.116,0.005,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":75,"s":[713.105,599.8,0],"to":[0.116,-0.005,0],"ti":[-0.113,0.007,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":76,"s":[713.448,599.781,0],"to":[0.113,-0.007,0],"ti":[-0.109,0.009,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":77,"s":[713.781,599.756,0],"to":[0.109,-0.009,0],"ti":[-0.106,0.012,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":78,"s":[714.103,599.725,0],"to":[0.106,-0.012,0],"ti":[-0.101,0.014,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":79,"s":[714.414,599.687,0],"to":[0.101,-0.014,0],"ti":[-0.097,0.016,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":80,"s":[714.711,599.643,0],"to":[0.097,-0.016,0],"ti":[-0.092,0.018,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":81,"s":[714.995,599.593,0],"to":[0.092,-0.018,0],"ti":[-0.087,0.019,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":82,"s":[715.263,599.538,0],"to":[0.087,-0.019,0],"ti":[-0.081,0.021,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":83,"s":[715.515,599.477,0],"to":[0.081,-0.021,0],"ti":[-0.075,0.023,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":84,"s":[715.749,599.411,0],"to":[0.075,-0.023,0],"ti":[-0.069,0.024,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":85,"s":[715.965,599.34,0],"to":[0.069,-0.024,0],"ti":[-0.062,0.026,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":86,"s":[716.162,599.264,0],"to":[0.062,-0.026,0],"ti":[-0.055,0.027,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":87,"s":[716.339,599.185,0],"to":[0.055,-0.027,0],"ti":[-0.048,0.028,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":88,"s":[716.495,599.102,0],"to":[0.048,-0.028,0],"ti":[-0.041,0.029,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":89,"s":[716.628,599.016,0],"to":[0.041,-0.029,0],"ti":[-0.033,0.03,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":90,"s":[716.74,598.926,0],"to":[0.033,-0.03,0],"ti":[-0.025,0.031,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.177},"t":91,"s":[716.827,598.835,0],"to":[0.025,-0.031,0],"ti":[-0.017,0.031,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.175},"t":92,"s":[716.89,598.742,0],"to":[0.017,-0.031,0],"ti":[-0.008,0.031,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.172},"t":93,"s":[716.928,598.648,0],"to":[0.008,-0.031,0],"ti":[0,0.032,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.166},"t":94,"s":[716.94,598.553,0],"to":[0,-0.032,0],"ti":[0.009,0.031,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.161},"t":95,"s":[716.926,598.459,0],"to":[-0.009,-0.031,0],"ti":[0.018,0.031,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.157},"t":96,"s":[716.885,598.365,0],"to":[-0.018,-0.031,0],"ti":[0.028,0.03,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.156},"t":97,"s":[716.815,598.272,0],"to":[-0.028,-0.03,0],"ti":[0.037,0.03,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.155},"t":98,"s":[716.718,598.182,0],"to":[-0.037,-0.03,0],"ti":[0.047,0.029,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.156},"t":99,"s":[716.591,598.095,0],"to":[-0.047,-0.029,0],"ti":[0.057,0.027,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.156},"t":100,"s":[716.435,598.011,0],"to":[-0.057,-0.027,0],"ti":[0.067,0.026,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":101,"s":[716.249,597.932,0],"to":[-0.067,-0.026,0],"ti":[0.077,0.024,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":102,"s":[716.032,597.858,0],"to":[-0.077,-0.024,0],"ti":[0.087,0.022,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.159},"t":103,"s":[715.784,597.79,0],"to":[-0.087,-0.022,0],"ti":[0.093,0.02,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.165},"t":104,"s":[715.508,597.728,0],"to":[-0.093,-0.02,0],"ti":[0.093,0.02,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":105,"s":[715.227,597.667,0],"to":[-0.093,-0.02,0],"ti":[0.093,0.021,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":106,"s":[714.948,597.606,0],"to":[-0.093,-0.021,0],"ti":[0.092,0.02,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":107,"s":[714.671,597.544,0],"to":[-0.092,-0.02,0],"ti":[0.09,0.02,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":108,"s":[714.398,597.483,0],"to":[-0.09,-0.02,0],"ti":[0.089,0.02,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":109,"s":[714.129,597.424,0],"to":[-0.089,-0.02,0],"ti":[0.087,0.019,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":110,"s":[713.865,597.366,0],"to":[-0.087,-0.019,0],"ti":[0.085,0.018,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":111,"s":[713.606,597.31,0],"to":[-0.085,-0.018,0],"ti":[0.083,0.017,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":112,"s":[713.352,597.258,0],"to":[-0.083,-0.017,0],"ti":[0.081,0.016,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":113,"s":[713.106,597.208,0],"to":[-0.081,-0.016,0],"ti":[0.079,0.015,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":114,"s":[712.866,597.162,0],"to":[-0.079,-0.015,0],"ti":[0.076,0.013,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":115,"s":[712.633,597.12,0],"to":[-0.076,-0.013,0],"ti":[0.074,0.012,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":116,"s":[712.408,597.082,0],"to":[-0.074,-0.012,0],"ti":[0.071,0.01,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":117,"s":[712.192,597.049,0],"to":[-0.071,-0.01,0],"ti":[0.068,0.009,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":118,"s":[711.984,597.02,0],"to":[-0.068,-0.009,0],"ti":[0.065,0.007,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":119,"s":[711.784,596.997,0],"to":[-0.065,-0.007,0],"ti":[0.062,0.005,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":120,"s":[711.594,596.979,0],"to":[-0.062,-0.005,0],"ti":[0.059,0.003,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":121,"s":[711.414,596.968,0],"to":[-0.059,-0.003,0],"ti":[0.055,0.001,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":122,"s":[711.242,596.961,0],"to":[-0.055,-0.001,0],"ti":[0.052,-0.001,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":123,"s":[711.081,596.961,0],"to":[-0.052,0.001,0],"ti":[0.049,-0.003,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":124,"s":[710.929,596.968,0],"to":[-0.049,0.003,0],"ti":[0.046,-0.005,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":125,"s":[710.787,596.98,0],"to":[-0.046,0.005,0],"ti":[0.042,-0.007,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":126,"s":[710.655,596.999,0],"to":[-0.042,0.007,0],"ti":[0.039,-0.01,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":127,"s":[710.533,597.024,0],"to":[-0.039,0.01,0],"ti":[0.036,-0.012,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":128,"s":[710.421,597.056,0],"to":[-0.036,0.012,0],"ti":[0.032,-0.014,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":129,"s":[710.319,597.094,0],"to":[-0.032,0.014,0],"ti":[0.029,-0.016,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":130,"s":[710.226,597.139,0],"to":[-0.029,0.016,0],"ti":[0.026,-0.018,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":131,"s":[710.143,597.19,0],"to":[-0.026,0.018,0],"ti":[0.023,-0.02,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":132,"s":[710.069,597.248,0],"to":[-0.023,0.02,0],"ti":[0.02,-0.022,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.168},"t":133,"s":[710.005,597.312,0],"to":[-0.02,0.022,0],"ti":[0.017,-0.024,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":134,"s":[709.949,597.382,0],"to":[-0.017,0.024,0],"ti":[0.014,-0.026,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.166},"t":135,"s":[709.902,597.458,0],"to":[-0.014,0.026,0],"ti":[0.012,-0.028,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":136,"s":[709.863,597.539,0],"to":[-0.012,0.028,0],"ti":[0.009,-0.03,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":137,"s":[709.831,597.627,0],"to":[-0.009,0.03,0],"ti":[0.007,-0.032,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":138,"s":[709.807,597.72,0],"to":[-0.007,0.032,0],"ti":[0.005,-0.033,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":139,"s":[709.79,597.817,0],"to":[-0.005,0.033,0],"ti":[0.003,-0.035,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":140,"s":[709.78,597.92,0],"to":[-0.003,0.035,0],"ti":[0.001,-0.036,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":141,"s":[709.775,598.027,0],"to":[-0.001,0.036,0],"ti":[-0.001,-0.038,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":142,"s":[709.776,598.138,0],"to":[0.001,0.038,0],"ti":[-0.002,-0.039,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":143,"s":[709.781,598.253,0],"to":[0.002,0.039,0],"ti":[-0.004,-0.04,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":144,"s":[709.79,598.372,0],"to":[0.004,0.04,0],"ti":[-0.005,-0.041,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":145,"s":[709.803,598.493,0],"to":[0.005,0.041,0],"ti":[-0.005,-0.042,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":146,"s":[709.818,598.617,0],"to":[0.005,0.042,0],"ti":[-0.006,-0.042,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":147,"s":[709.835,598.743,0],"to":[0.006,0.042,0],"ti":[-0.006,-0.043,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":148,"s":[709.853,598.871,0],"to":[0.006,0.043,0],"ti":[-0.006,-0.043,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.166},"t":149,"s":[709.872,598.999,0],"to":[0.006,0.043,0],"ti":[-0.006,-0.043,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":150,"s":[709.889,599.128,0],"to":[0.006,0.043,0],"ti":[-0.005,-0.043,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":151,"s":[709.905,599.257,0],"to":[0.005,0.043,0],"ti":[-0.004,-0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":152,"s":[709.918,599.385,0],"to":[0.004,0.042,0],"ti":[-0.002,-0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":153,"s":[709.928,599.512,0],"to":[0.002,0.042,0],"ti":[-0.001,-0.041,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":154,"s":[709.933,599.636,0],"to":[0.001,0.041,0],"ti":[0.001,-0.04,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":155,"s":[709.933,599.758,0],"to":[-0.001,0.04,0],"ti":[0.004,-0.039,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":156,"s":[709.925,599.877,0],"to":[-0.004,0.039,0],"ti":[0.007,-0.037,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":157,"s":[709.91,599.991,0],"to":[-0.007,0.037,0],"ti":[0.01,-0.035,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":158,"s":[709.885,600.1,0],"to":[-0.01,0.035,0],"ti":[0.014,-0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.168},"t":159,"s":[709.85,600.204,0],"to":[-0.014,0.033,0],"ti":[0.018,-0.031,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":160,"s":[709.803,600.301,0],"to":[-0.018,0.031,0],"ti":[0.022,-0.028,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.165},"t":161,"s":[709.743,600.39,0],"to":[-0.022,0.028,0],"ti":[0.027,-0.026,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.163},"t":162,"s":[709.669,600.471,0],"to":[-0.027,0.026,0],"ti":[0.032,-0.022,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.163},"t":163,"s":[709.579,600.543,0],"to":[-0.032,0.022,0],"ti":[0.034,-0.018,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.177},"t":164,"s":[709.475,600.604,0],"to":[-0.034,0.018,0],"ti":[0.031,-0.012,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":165,"s":[709.377,600.649,0],"to":[-0.031,0.012,0],"ti":[0.027,-0.006,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.184},"t":166,"s":[709.29,600.676,0],"to":[-0.027,0.006,0],"ti":[0.023,-0.001,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.183},"t":167,"s":[709.215,600.686,0],"to":[-0.023,0.001,0],"ti":[0.019,0.005,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.18},"t":168,"s":[709.152,600.68,0],"to":[-0.019,-0.005,0],"ti":[0.014,0.01,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.171},"t":169,"s":[709.103,600.658,0],"to":[-0.014,-0.01,0],"ti":[0.01,0.014,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.161},"t":170,"s":[709.066,600.622,0],"to":[-0.01,-0.014,0],"ti":[0.005,0.019,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.155},"t":171,"s":[709.044,600.572,0],"to":[-0.005,-0.019,0],"ti":[0.001,0.023,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.153},"t":172,"s":[709.034,600.508,0],"to":[-0.001,-0.023,0],"ti":[-0.004,0.028,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.154},"t":173,"s":[709.039,600.431,0],"to":[0.004,-0.028,0],"ti":[-0.009,0.032,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.155},"t":174,"s":[709.058,600.342,0],"to":[0.009,-0.032,0],"ti":[-0.013,0.035,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.156},"t":175,"s":[709.091,600.241,0],"to":[0.013,-0.035,0],"ti":[-0.018,0.039,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.157},"t":176,"s":[709.139,600.13,0],"to":[0.018,-0.039,0],"ti":[-0.023,0.042,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":177,"s":[709.201,600.008,0],"to":[0.023,-0.042,0],"ti":[-0.028,0.045,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":178,"s":[709.277,599.877,0],"to":[0.028,-0.045,0],"ti":[-0.033,0.048,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":179,"s":[709.368,599.737,0],"to":[0.033,-0.048,0],"ti":[-0.037,0.051,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":180,"s":[709.473,599.588,0],"to":[0.037,-0.051,0],"ti":[-0.042,0.053,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":181,"s":[709.593,599.431,0],"to":[0.042,-0.053,0],"ti":[-0.047,0.056,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":182,"s":[709.727,599.268,0],"to":[0.047,-0.056,0],"ti":[-0.052,0.058,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":183,"s":[709.874,599.098,0],"to":[0.052,-0.058,0],"ti":[-0.056,0.06,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":184,"s":[710.036,598.922,0],"to":[0.056,-0.06,0],"ti":[-0.061,0.061,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":185,"s":[710.211,598.741,0],"to":[0.061,-0.061,0],"ti":[-0.065,0.063,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":186,"s":[710.399,598.555,0],"to":[0.065,-0.063,0],"ti":[-0.069,0.064,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":187,"s":[710.6,598.365,0],"to":[0.069,-0.064,0],"ti":[-0.073,0.065,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":188,"s":[710.814,598.172,0],"to":[0.073,-0.065,0],"ti":[-0.077,0.066,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":189,"s":[711.04,597.976,0],"to":[0.077,-0.066,0],"ti":[-0.081,0.066,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":190,"s":[711.277,597.777,0],"to":[0.081,-0.066,0],"ti":[-0.085,0.067,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":191,"s":[711.525,597.578,0],"to":[0.085,-0.067,0],"ti":[-0.088,0.067,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":192,"s":[711.784,597.377,0],"to":[0.088,-0.067,0],"ti":[-0.091,0.067,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":193,"s":[712.053,597.176,0],"to":[0.091,-0.067,0],"ti":[-0.094,0.067,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":194,"s":[712.332,596.975,0],"to":[0.094,-0.067,0],"ti":[-0.097,0.066,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":195,"s":[712.619,596.774,0],"to":[0.097,-0.066,0],"ti":[-0.1,0.066,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":196,"s":[712.914,596.576,0],"to":[0.1,-0.066,0],"ti":[-0.102,0.065,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":197,"s":[713.217,596.379,0],"to":[0.102,-0.065,0],"ti":[-0.104,0.064,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":198,"s":[713.526,596.185,0],"to":[0.104,-0.064,0],"ti":[-0.106,0.063,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":199,"s":[713.84,595.994,0],"to":[0.106,-0.063,0],"ti":[-0.107,0.062,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":200,"s":[714.16,595.806,0],"to":[0.107,-0.062,0],"ti":[-0.108,0.06,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":201,"s":[714.483,595.623,0],"to":[0.108,-0.06,0],"ti":[-0.109,0.058,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":202,"s":[714.81,595.445,0],"to":[0.109,-0.058,0],"ti":[-0.11,0.057,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":203,"s":[715.138,595.273,0],"to":[0.11,-0.057,0],"ti":[-0.11,0.054,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":204,"s":[715.468,595.106,0],"to":[0.11,-0.054,0],"ti":[-0.11,0.052,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":205,"s":[715.798,594.946,0],"to":[0.11,-0.052,0],"ti":[-0.109,0.05,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":206,"s":[716.126,594.794,0],"to":[0.109,-0.05,0],"ti":[-0.108,0.047,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":207,"s":[716.452,594.649,0],"to":[0.108,-0.047,0],"ti":[-0.107,0.044,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":208,"s":[716.775,594.512,0],"to":[0.107,-0.044,0],"ti":[-0.105,0.041,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":209,"s":[717.092,594.384,0],"to":[0.105,-0.041,0],"ti":[-0.103,0.038,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":210,"s":[717.404,594.266,0],"to":[0.103,-0.038,0],"ti":[-0.1,0.034,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":211,"s":[717.709,594.157,0],"to":[0.1,-0.034,0],"ti":[-0.097,0.031,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":212,"s":[718.005,594.059,0],"to":[0.097,-0.031,0],"ti":[-0.094,0.027,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":213,"s":[718.292,593.973,0],"to":[0.094,-0.027,0],"ti":[-0.089,0.023,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.171},"t":214,"s":[718.566,593.898,0],"to":[0.089,-0.023,0],"ti":[-0.085,0.019,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":215,"s":[718.828,593.835,0],"to":[0.085,-0.019,0],"ti":[-0.08,0.015,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":216,"s":[719.076,593.784,0],"to":[0.08,-0.015,0],"ti":[-0.074,0.01,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":217,"s":[719.308,593.747,0],"to":[0.074,-0.01,0],"ti":[-0.068,0.005,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":218,"s":[719.522,593.724,0],"to":[0.068,-0.005,0],"ti":[-0.062,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":219,"s":[719.717,593.715,0],"to":[0.062,0,0],"ti":[-0.054,-0.005,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":220,"s":[719.892,593.721,0],"to":[0.054,0.005,0],"ti":[-0.047,-0.01,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":221,"s":[720.044,593.742,0],"to":[0.047,0.01,0],"ti":[-0.038,-0.015,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.18},"t":222,"s":[720.172,593.78,0],"to":[0.038,0.015,0],"ti":[-0.029,-0.02,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.179},"t":223,"s":[720.274,593.833,0],"to":[0.029,0.02,0],"ti":[-0.018,-0.023,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.195},"t":224,"s":[720.347,593.902,0],"to":[0.018,0.023,0],"ti":[-0.004,-0.021,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.183},"t":225,"s":[720.38,593.969,0],"to":[0.004,0.021,0],"ti":[0.009,-0.019,0]},{"i":{"x":0.833,"y":0.806},"o":{"x":0.167,"y":0.155},"t":226,"s":[720.372,594.03,0],"to":[-0.009,0.019,0],"ti":[0.021,-0.018,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.146},"t":227,"s":[720.326,594.086,0],"to":[-0.021,0.018,0],"ti":[0.033,-0.016,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.148},"t":228,"s":[720.243,594.136,0],"to":[-0.033,0.016,0],"ti":[0.044,-0.015,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.151},"t":229,"s":[720.127,594.183,0],"to":[-0.044,0.015,0],"ti":[0.054,-0.013,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.154},"t":230,"s":[719.979,594.224,0],"to":[-0.054,0.013,0],"ti":[0.064,-0.012,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.156},"t":231,"s":[719.8,594.262,0],"to":[-0.064,0.012,0],"ti":[0.073,-0.011,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":232,"s":[719.594,594.295,0],"to":[-0.073,0.011,0],"ti":[0.081,-0.009,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":233,"s":[719.363,594.325,0],"to":[-0.081,0.009,0],"ti":[0.089,-0.008,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":234,"s":[719.107,594.352,0],"to":[-0.089,0.008,0],"ti":[0.096,-0.007,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":235,"s":[718.829,594.376,0],"to":[-0.096,0.007,0],"ti":[0.102,-0.007,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":236,"s":[718.532,594.397,0],"to":[-0.102,0.007,0],"ti":[0.108,-0.006,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":237,"s":[718.216,594.415,0],"to":[-0.108,0.006,0],"ti":[0.113,-0.005,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.163},"t":238,"s":[717.884,594.431,0],"to":[-0.113,0.005,0],"ti":[0.058,-0.002,0]},{"t":239,"s":[717.537,594.445,0]}],"ix":2,"l":2},"a":{"a":0,"k":[712.5,596,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":10,"s":[0,0,100]},{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.865,0.865,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":230,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"plus shape","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":0,"s":[830.056,394.377,0],"to":[-0.076,0.071,0],"ti":[0.15,-0.14,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":1,"s":[829.603,394.801,0],"to":[-0.15,0.14,0],"ti":[0.148,-0.138,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":2,"s":[829.155,395.22,0],"to":[-0.148,0.138,0],"ti":[0.144,-0.135,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":3,"s":[828.717,395.631,0],"to":[-0.144,0.135,0],"ti":[0.14,-0.132,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.169},"t":4,"s":[828.29,396.032,0],"to":[-0.14,0.132,0],"ti":[0.135,-0.128,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":5,"s":[827.878,396.423,0],"to":[-0.135,0.128,0],"ti":[0.128,-0.123,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":6,"s":[827.483,396.8,0],"to":[-0.128,0.123,0],"ti":[0.121,-0.118,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":7,"s":[827.108,397.162,0],"to":[-0.121,0.118,0],"ti":[0.113,-0.111,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":8,"s":[826.756,397.506,0],"to":[-0.113,0.111,0],"ti":[0.104,-0.104,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":9,"s":[826.429,397.83,0],"to":[-0.104,0.104,0],"ti":[0.094,-0.097,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.175},"t":10,"s":[826.132,398.132,0],"to":[-0.094,0.097,0],"ti":[0.082,-0.088,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":11,"s":[825.868,398.409,0],"to":[-0.082,0.088,0],"ti":[0.07,-0.079,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.18},"t":12,"s":[825.639,398.66,0],"to":[-0.07,0.079,0],"ti":[0.055,-0.071,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.181},"t":13,"s":[825.449,398.881,0],"to":[-0.055,0.071,0],"ti":[0.039,-0.067,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.179},"t":14,"s":[825.307,399.085,0],"to":[-0.039,0.067,0],"ti":[0.023,-0.064,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.177},"t":15,"s":[825.215,399.281,0],"to":[-0.023,0.064,0],"ti":[0.007,-0.061,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.174},"t":16,"s":[825.171,399.468,0],"to":[-0.007,0.061,0],"ti":[-0.007,-0.057,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.169},"t":17,"s":[825.171,399.644,0],"to":[0.007,0.057,0],"ti":[-0.021,-0.054,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.164},"t":18,"s":[825.215,399.811,0],"to":[0.021,0.054,0],"ti":[-0.034,-0.05,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.161},"t":19,"s":[825.299,399.967,0],"to":[0.034,0.05,0],"ti":[-0.047,-0.047,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.16},"t":20,"s":[825.421,400.113,0],"to":[0.047,0.047,0],"ti":[-0.058,-0.043,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":21,"s":[825.579,400.248,0],"to":[0.058,0.043,0],"ti":[-0.069,-0.039,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":22,"s":[825.77,400.372,0],"to":[0.069,0.039,0],"ti":[-0.079,-0.036,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":23,"s":[825.994,400.484,0],"to":[0.079,0.036,0],"ti":[-0.089,-0.032,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":24,"s":[826.247,400.585,0],"to":[0.089,0.032,0],"ti":[-0.098,-0.028,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":25,"s":[826.527,400.674,0],"to":[0.098,0.028,0],"ti":[-0.106,-0.024,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":26,"s":[826.832,400.752,0],"to":[0.106,0.024,0],"ti":[-0.113,-0.02,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":27,"s":[827.161,400.818,0],"to":[0.113,0.02,0],"ti":[-0.12,-0.016,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":28,"s":[827.51,400.872,0],"to":[0.12,0.016,0],"ti":[-0.126,-0.012,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":29,"s":[827.879,400.914,0],"to":[0.126,0.012,0],"ti":[-0.131,-0.008,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":30,"s":[828.265,400.945,0],"to":[0.131,0.008,0],"ti":[-0.136,-0.004,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":31,"s":[828.666,400.964,0],"to":[0.136,0.004,0],"ti":[-0.14,-0.001,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":32,"s":[829.081,400.971,0],"to":[0.14,0.001,0],"ti":[-0.144,0.003,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":33,"s":[829.507,400.967,0],"to":[0.144,-0.003,0],"ti":[-0.147,0.007,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":34,"s":[829.943,400.952,0],"to":[0.147,-0.007,0],"ti":[-0.149,0.011,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":35,"s":[830.387,400.925,0],"to":[0.149,-0.011,0],"ti":[-0.151,0.014,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":36,"s":[830.836,400.888,0],"to":[0.151,-0.014,0],"ti":[-0.152,0.018,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":37,"s":[831.29,400.841,0],"to":[0.152,-0.018,0],"ti":[-0.152,0.021,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":38,"s":[831.747,400.783,0],"to":[0.152,-0.021,0],"ti":[-0.152,0.024,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[832.204,400.716,0],"to":[0.152,-0.024,0],"ti":[-0.152,0.027,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":40,"s":[832.661,400.639,0],"to":[0.152,-0.027,0],"ti":[-0.151,0.03,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":41,"s":[833.115,400.553,0],"to":[0.151,-0.03,0],"ti":[-0.149,0.033,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":42,"s":[833.566,400.459,0],"to":[0.149,-0.033,0],"ti":[-0.147,0.035,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":43,"s":[834.01,400.356,0],"to":[0.147,-0.035,0],"ti":[-0.144,0.038,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":44,"s":[834.448,400.246,0],"to":[0.144,-0.038,0],"ti":[-0.141,0.04,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":45,"s":[834.877,400.129,0],"to":[0.141,-0.04,0],"ti":[-0.138,0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":46,"s":[835.296,400.006,0],"to":[0.138,-0.042,0],"ti":[-0.134,0.044,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":47,"s":[835.704,399.877,0],"to":[0.134,-0.044,0],"ti":[-0.129,0.046,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":48,"s":[836.098,399.742,0],"to":[0.129,-0.046,0],"ti":[-0.124,0.047,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":49,"s":[836.479,399.604,0],"to":[0.124,-0.047,0],"ti":[-0.119,0.048,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":50,"s":[836.843,399.461,0],"to":[0.119,-0.048,0],"ti":[-0.113,0.049,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":51,"s":[837.191,399.316,0],"to":[0.113,-0.049,0],"ti":[-0.107,0.049,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":52,"s":[837.52,399.168,0],"to":[0.107,-0.049,0],"ti":[-0.1,0.05,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":53,"s":[837.83,399.019,0],"to":[0.1,-0.05,0],"ti":[-0.093,0.05,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":54,"s":[838.119,398.869,0],"to":[0.093,-0.05,0],"ti":[-0.085,0.049,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":55,"s":[838.386,398.72,0],"to":[0.085,-0.049,0],"ti":[-0.077,0.049,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":56,"s":[838.63,398.573,0],"to":[0.077,-0.049,0],"ti":[-0.069,0.048,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":57,"s":[838.849,398.427,0],"to":[0.069,-0.048,0],"ti":[-0.06,0.047,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":58,"s":[839.043,398.285,0],"to":[0.06,-0.047,0],"ti":[-0.051,0.045,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":59,"s":[839.211,398.147,0],"to":[0.051,-0.045,0],"ti":[-0.042,0.043,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":60,"s":[839.351,398.015,0],"to":[0.042,-0.043,0],"ti":[-0.032,0.041,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":61,"s":[839.463,397.888,0],"to":[0.032,-0.041,0],"ti":[-0.022,0.038,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":62,"s":[839.545,397.77,0],"to":[0.022,-0.038,0],"ti":[-0.012,0.035,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.182},"t":63,"s":[839.597,397.66,0],"to":[0.012,-0.035,0],"ti":[-0.001,0.031,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.178},"t":64,"s":[839.617,397.561,0],"to":[0.001,-0.031,0],"ti":[0.01,0.027,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.167},"t":65,"s":[839.605,397.472,0],"to":[-0.01,-0.027,0],"ti":[0.021,0.023,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.157},"t":66,"s":[839.56,397.396,0],"to":[-0.021,-0.023,0],"ti":[0.032,0.018,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.152},"t":67,"s":[839.48,397.334,0],"to":[-0.032,-0.018,0],"ti":[0.044,0.013,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.151},"t":68,"s":[839.366,397.286,0],"to":[-0.044,-0.013,0],"ti":[0.056,0.007,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.152},"t":69,"s":[839.217,397.255,0],"to":[-0.056,-0.007,0],"ti":[0.068,0.001,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.153},"t":70,"s":[839.031,397.242,0],"to":[-0.068,-0.001,0],"ti":[0.081,-0.006,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.154},"t":71,"s":[838.808,397.249,0],"to":[-0.081,0.006,0],"ti":[0.093,-0.013,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.156},"t":72,"s":[838.547,397.276,0],"to":[-0.093,0.013,0],"ti":[0.103,-0.017,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":73,"s":[838.248,397.325,0],"to":[-0.103,0.017,0],"ti":[0.107,-0.017,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":74,"s":[837.931,397.379,0],"to":[-0.107,0.017,0],"ti":[0.108,-0.015,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":75,"s":[837.609,397.428,0],"to":[-0.108,0.015,0],"ti":[0.11,-0.013,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":76,"s":[837.282,397.471,0],"to":[-0.11,0.013,0],"ti":[0.11,-0.012,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":77,"s":[836.952,397.509,0],"to":[-0.11,0.012,0],"ti":[0.111,-0.01,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":78,"s":[836.619,397.54,0],"to":[-0.111,0.01,0],"ti":[0.111,-0.008,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":79,"s":[836.285,397.566,0],"to":[-0.111,0.008,0],"ti":[0.111,-0.005,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":80,"s":[835.95,397.586,0],"to":[-0.111,0.005,0],"ti":[0.111,-0.003,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":81,"s":[835.616,397.599,0],"to":[-0.111,0.003,0],"ti":[0.111,-0.001,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":82,"s":[835.284,397.606,0],"to":[-0.111,0.001,0],"ti":[0.11,0.001,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":83,"s":[834.953,397.606,0],"to":[-0.11,-0.001,0],"ti":[0.109,0.003,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":84,"s":[834.625,397.599,0],"to":[-0.109,-0.003,0],"ti":[0.107,0.005,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":85,"s":[834.301,397.586,0],"to":[-0.107,-0.005,0],"ti":[0.106,0.008,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":86,"s":[833.981,397.567,0],"to":[-0.106,-0.008,0],"ti":[0.104,0.01,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":87,"s":[833.666,397.54,0],"to":[-0.104,-0.01,0],"ti":[0.102,0.012,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":88,"s":[833.357,397.507,0],"to":[-0.102,-0.012,0],"ti":[0.1,0.014,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":89,"s":[833.054,397.468,0],"to":[-0.1,-0.014,0],"ti":[0.098,0.017,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":90,"s":[832.757,397.421,0],"to":[-0.098,-0.017,0],"ti":[0.095,0.019,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":91,"s":[832.468,397.369,0],"to":[-0.095,-0.019,0],"ti":[0.093,0.021,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":92,"s":[832.186,397.309,0],"to":[-0.093,-0.021,0],"ti":[0.09,0.023,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":93,"s":[831.912,397.243,0],"to":[-0.09,-0.023,0],"ti":[0.087,0.025,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":94,"s":[831.647,397.171,0],"to":[-0.087,-0.025,0],"ti":[0.084,0.027,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":95,"s":[831.39,397.093,0],"to":[-0.084,-0.027,0],"ti":[0.081,0.029,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":96,"s":[831.142,397.009,0],"to":[-0.081,-0.029,0],"ti":[0.078,0.031,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":97,"s":[830.903,396.919,0],"to":[-0.078,-0.031,0],"ti":[0.075,0.033,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":98,"s":[830.673,396.823,0],"to":[-0.075,-0.033,0],"ti":[0.072,0.035,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":99,"s":[830.452,396.722,0],"to":[-0.072,-0.035,0],"ti":[0.069,0.036,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":100,"s":[830.242,396.616,0],"to":[-0.069,-0.036,0],"ti":[0.065,0.038,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":101,"s":[830.04,396.504,0],"to":[-0.065,-0.038,0],"ti":[0.062,0.039,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":102,"s":[829.849,396.388,0],"to":[-0.062,-0.039,0],"ti":[0.059,0.041,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":103,"s":[829.667,396.268,0],"to":[-0.059,-0.041,0],"ti":[0.056,0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":104,"s":[829.494,396.143,0],"to":[-0.056,-0.042,0],"ti":[0.053,0.043,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":105,"s":[829.331,396.015,0],"to":[-0.053,-0.043,0],"ti":[0.05,0.044,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":106,"s":[829.176,395.883,0],"to":[-0.05,-0.044,0],"ti":[0.047,0.045,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":107,"s":[829.031,395.748,0],"to":[-0.047,-0.045,0],"ti":[0.044,0.046,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":108,"s":[828.895,395.611,0],"to":[-0.044,-0.046,0],"ti":[0.041,0.047,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":109,"s":[828.767,395.471,0],"to":[-0.041,-0.047,0],"ti":[0.039,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":110,"s":[828.648,395.329,0],"to":[-0.039,-0.048,0],"ti":[0.036,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":111,"s":[828.536,395.185,0],"to":[-0.036,-0.048,0],"ti":[0.034,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":112,"s":[828.431,395.041,0],"to":[-0.034,-0.048,0],"ti":[0.031,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":113,"s":[828.334,394.896,0],"to":[-0.031,-0.048,0],"ti":[0.029,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":114,"s":[828.242,394.751,0],"to":[-0.029,-0.048,0],"ti":[0.028,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":115,"s":[828.157,394.606,0],"to":[-0.028,-0.048,0],"ti":[0.026,0.048,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":116,"s":[828.077,394.462,0],"to":[-0.026,-0.048,0],"ti":[0.024,0.047,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":117,"s":[828.002,394.319,0],"to":[-0.024,-0.047,0],"ti":[0.023,0.046,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":118,"s":[827.931,394.179,0],"to":[-0.023,-0.046,0],"ti":[0.022,0.045,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":119,"s":[827.863,394.041,0],"to":[-0.022,-0.045,0],"ti":[0.021,0.044,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":120,"s":[827.798,393.906,0],"to":[-0.021,-0.044,0],"ti":[0.021,0.043,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":121,"s":[827.735,393.776,0],"to":[-0.021,-0.043,0],"ti":[0.021,0.041,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":122,"s":[827.672,393.649,0],"to":[-0.021,-0.041,0],"ti":[0.021,0.039,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":123,"s":[827.61,393.528,0],"to":[-0.021,-0.039,0],"ti":[0.021,0.037,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":124,"s":[827.547,393.412,0],"to":[-0.021,-0.037,0],"ti":[0.022,0.035,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":125,"s":[827.482,393.303,0],"to":[-0.022,-0.035,0],"ti":[0.023,0.033,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":126,"s":[827.414,393.201,0],"to":[-0.023,-0.033,0],"ti":[0.025,0.03,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":127,"s":[827.342,393.107,0],"to":[-0.025,-0.03,0],"ti":[0.026,0.027,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":128,"s":[827.266,393.022,0],"to":[-0.026,-0.027,0],"ti":[0.029,0.024,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":129,"s":[827.183,392.946,0],"to":[-0.029,-0.024,0],"ti":[0.031,0.02,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.166},"t":130,"s":[827.094,392.88,0],"to":[-0.031,-0.02,0],"ti":[0.034,0.016,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.164},"t":131,"s":[826.996,392.825,0],"to":[-0.034,-0.016,0],"ti":[0.038,0.012,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.162},"t":132,"s":[826.888,392.781,0],"to":[-0.038,-0.012,0],"ti":[0.039,0.009,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.169},"t":133,"s":[826.769,392.751,0],"to":[-0.039,-0.009,0],"ti":[0.037,0.008,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":134,"s":[826.653,392.726,0],"to":[-0.037,-0.008,0],"ti":[0.034,0.007,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":135,"s":[826.546,392.705,0],"to":[-0.034,-0.007,0],"ti":[0.03,0.006,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":136,"s":[826.451,392.685,0],"to":[-0.03,-0.006,0],"ti":[0.026,0.006,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.18},"t":137,"s":[826.367,392.667,0],"to":[-0.026,-0.006,0],"ti":[0.022,0.005,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.184},"t":138,"s":[826.295,392.652,0],"to":[-0.022,-0.005,0],"ti":[0.018,0.004,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.189},"t":139,"s":[826.235,392.638,0],"to":[-0.018,-0.004,0],"ti":[0.013,0.004,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.199},"t":140,"s":[826.189,392.626,0],"to":[-0.013,-0.004,0],"ti":[0.009,0.003,0]},{"i":{"x":0.833,"y":0.878},"o":{"x":0.167,"y":0.218},"t":141,"s":[826.155,392.616,0],"to":[-0.009,-0.003,0],"ti":[0.004,0.003,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.261},"t":142,"s":[826.136,392.607,0],"to":[-0.004,-0.003,0],"ti":[-0.001,0.002,0]},{"i":{"x":0.833,"y":0.742},"o":{"x":0.167,"y":0.154},"t":143,"s":[826.131,392.599,0],"to":[0.001,-0.002,0],"ti":[-0.006,0.002,0]},{"i":{"x":0.833,"y":0.784},"o":{"x":0.167,"y":0.123},"t":144,"s":[826.141,392.592,0],"to":[0.006,-0.002,0],"ti":[-0.011,0.002,0]},{"i":{"x":0.833,"y":0.802},"o":{"x":0.167,"y":0.136},"t":145,"s":[826.165,392.586,0],"to":[0.011,-0.002,0],"ti":[-0.016,0.002,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.144},"t":146,"s":[826.204,392.581,0],"to":[0.016,-0.002,0],"ti":[-0.021,0.001,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.149},"t":147,"s":[826.258,392.577,0],"to":[0.021,-0.001,0],"ti":[-0.026,0.001,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.152},"t":148,"s":[826.327,392.574,0],"to":[0.026,-0.001,0],"ti":[-0.031,0.001,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.154},"t":149,"s":[826.411,392.571,0],"to":[0.031,-0.001,0],"ti":[-0.036,0.001,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.156},"t":150,"s":[826.511,392.568,0],"to":[0.036,-0.001,0],"ti":[-0.041,0.001,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.157},"t":151,"s":[826.626,392.566,0],"to":[0.041,-0.001,0],"ti":[-0.046,0.001,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":152,"s":[826.756,392.564,0],"to":[0.046,-0.001,0],"ti":[-0.051,0.001,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":153,"s":[826.901,392.562,0],"to":[0.051,-0.001,0],"ti":[-0.056,0.001,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":154,"s":[827.06,392.56,0],"to":[0.056,-0.001,0],"ti":[-0.06,0.001,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":155,"s":[827.234,392.558,0],"to":[0.06,-0.001,0],"ti":[-0.065,0.001,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":156,"s":[827.423,392.555,0],"to":[0.065,-0.001,0],"ti":[-0.07,0.001,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":157,"s":[827.626,392.553,0],"to":[0.07,-0.001,0],"ti":[-0.074,0.001,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":158,"s":[827.842,392.55,0],"to":[0.074,-0.001,0],"ti":[-0.079,0.001,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":159,"s":[828.071,392.547,0],"to":[0.079,-0.001,0],"ti":[-0.083,0.001,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":160,"s":[828.313,392.543,0],"to":[0.083,-0.001,0],"ti":[-0.087,0.002,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":161,"s":[828.567,392.538,0],"to":[0.087,-0.002,0],"ti":[-0.091,0.002,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":162,"s":[828.833,392.533,0],"to":[0.091,-0.002,0],"ti":[-0.094,0.002,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":163,"s":[829.11,392.527,0],"to":[0.094,-0.002,0],"ti":[-0.097,0.002,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":164,"s":[829.398,392.521,0],"to":[0.097,-0.002,0],"ti":[-0.101,0.003,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":165,"s":[829.695,392.513,0],"to":[0.101,-0.003,0],"ti":[-0.103,0.003,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":166,"s":[830.002,392.505,0],"to":[0.103,-0.003,0],"ti":[-0.106,0.003,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":167,"s":[830.316,392.496,0],"to":[0.106,-0.003,0],"ti":[-0.108,0.004,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":168,"s":[830.638,392.485,0],"to":[0.108,-0.004,0],"ti":[-0.11,0.004,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":169,"s":[830.966,392.474,0],"to":[0.11,-0.004,0],"ti":[-0.112,0.004,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":170,"s":[831.3,392.462,0],"to":[0.112,-0.004,0],"ti":[-0.113,0.005,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":171,"s":[831.639,392.448,0],"to":[0.113,-0.005,0],"ti":[-0.114,0.005,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":172,"s":[831.981,392.433,0],"to":[0.114,-0.005,0],"ti":[-0.115,0.006,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":173,"s":[832.326,392.418,0],"to":[0.115,-0.006,0],"ti":[-0.115,0.006,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":174,"s":[832.672,392.4,0],"to":[0.115,-0.006,0],"ti":[-0.115,0.006,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":175,"s":[833.018,392.382,0],"to":[0.115,-0.006,0],"ti":[-0.115,0.007,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":176,"s":[833.363,392.362,0],"to":[0.115,-0.007,0],"ti":[-0.114,0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":177,"s":[833.706,392.341,0],"to":[0.114,-0.007,0],"ti":[-0.112,0.008,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":178,"s":[834.046,392.319,0],"to":[0.112,-0.008,0],"ti":[-0.111,0.008,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":179,"s":[834.38,392.296,0],"to":[0.111,-0.008,0],"ti":[-0.108,0.009,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":180,"s":[834.709,392.271,0],"to":[0.108,-0.009,0],"ti":[-0.105,0.009,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":181,"s":[835.029,392.245,0],"to":[0.105,-0.009,0],"ti":[-0.102,0.009,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":182,"s":[835.341,392.217,0],"to":[0.102,-0.009,0],"ti":[-0.098,0.01,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":183,"s":[835.642,392.188,0],"to":[0.098,-0.01,0],"ti":[-0.094,0.01,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":184,"s":[835.93,392.158,0],"to":[0.094,-0.01,0],"ti":[-0.089,0.011,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":185,"s":[836.204,392.127,0],"to":[0.089,-0.011,0],"ti":[-0.083,0.011,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.172},"t":186,"s":[836.463,392.094,0],"to":[0.083,-0.011,0],"ti":[-0.077,0.012,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":187,"s":[836.705,392.06,0],"to":[0.077,-0.012,0],"ti":[-0.071,0.012,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":188,"s":[836.927,392.025,0],"to":[0.071,-0.012,0],"ti":[-0.063,0.012,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":189,"s":[837.128,391.988,0],"to":[0.063,-0.012,0],"ti":[-0.055,0.013,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.179},"t":190,"s":[837.307,391.951,0],"to":[0.055,-0.013,0],"ti":[-0.047,0.013,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.183},"t":191,"s":[837.461,391.912,0],"to":[0.047,-0.013,0],"ti":[-0.038,0.013,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.187},"t":192,"s":[837.588,391.872,0],"to":[0.038,-0.013,0],"ti":[-0.028,0.012,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.201},"t":193,"s":[837.686,391.831,0],"to":[0.028,-0.012,0],"ti":[-0.018,0.009,0]},{"i":{"x":0.833,"y":0.89},"o":{"x":0.167,"y":0.229},"t":194,"s":[837.754,391.798,0],"to":[0.018,-0.009,0],"ti":[-0.008,0.005,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.347},"t":195,"s":[837.792,391.777,0],"to":[0.008,-0.005,0],"ti":[0.001,0.001,0]},{"i":{"x":0.833,"y":0.706},"o":{"x":0.167,"y":0.15},"t":196,"s":[837.801,391.769,0],"to":[-0.001,-0.001,0],"ti":[0.01,-0.002,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.116},"t":197,"s":[837.784,391.771,0],"to":[-0.01,0.002,0],"ti":[0.018,-0.006,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.136},"t":198,"s":[837.743,391.783,0],"to":[-0.018,0.006,0],"ti":[0.025,-0.009,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.146},"t":199,"s":[837.679,391.806,0],"to":[-0.025,0.009,0],"ti":[0.032,-0.012,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.151},"t":200,"s":[837.593,391.837,0],"to":[-0.032,0.012,0],"ti":[0.038,-0.014,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.154},"t":201,"s":[837.489,391.876,0],"to":[-0.038,0.014,0],"ti":[0.044,-0.017,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.157},"t":202,"s":[837.366,391.923,0],"to":[-0.044,0.017,0],"ti":[0.049,-0.019,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":203,"s":[837.227,391.977,0],"to":[-0.049,0.019,0],"ti":[0.053,-0.021,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":204,"s":[837.073,392.038,0],"to":[-0.053,0.021,0],"ti":[0.058,-0.023,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":205,"s":[836.906,392.104,0],"to":[-0.058,0.023,0],"ti":[0.061,-0.025,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":206,"s":[836.727,392.176,0],"to":[-0.061,0.025,0],"ti":[0.065,-0.026,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":207,"s":[836.538,392.252,0],"to":[-0.065,0.026,0],"ti":[0.067,-0.027,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":208,"s":[836.339,392.332,0],"to":[-0.067,0.027,0],"ti":[0.07,-0.028,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":209,"s":[836.134,392.415,0],"to":[-0.07,0.028,0],"ti":[0.072,-0.029,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":210,"s":[835.921,392.502,0],"to":[-0.072,0.029,0],"ti":[0.073,-0.03,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":211,"s":[835.704,392.591,0],"to":[-0.073,0.03,0],"ti":[0.074,-0.031,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":212,"s":[835.483,392.682,0],"to":[-0.074,0.031,0],"ti":[0.075,-0.031,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":213,"s":[835.26,392.774,0],"to":[-0.075,0.031,0],"ti":[0.075,-0.031,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":214,"s":[835.035,392.868,0],"to":[-0.075,0.031,0],"ti":[0.075,-0.031,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":215,"s":[834.81,392.962,0],"to":[-0.075,0.031,0],"ti":[0.074,-0.031,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":216,"s":[834.586,393.055,0],"to":[-0.074,0.031,0],"ti":[0.074,-0.031,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":217,"s":[834.363,393.149,0],"to":[-0.074,0.031,0],"ti":[0.072,-0.031,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":218,"s":[834.144,393.241,0],"to":[-0.072,0.031,0],"ti":[0.071,-0.03,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":219,"s":[833.928,393.332,0],"to":[-0.071,0.03,0],"ti":[0.069,-0.03,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":220,"s":[833.718,393.422,0],"to":[-0.069,0.03,0],"ti":[0.067,-0.029,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":221,"s":[833.513,393.51,0],"to":[-0.067,0.029,0],"ti":[0.065,-0.028,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":222,"s":[833.315,393.595,0],"to":[-0.065,0.028,0],"ti":[0.062,-0.027,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":223,"s":[833.125,393.677,0],"to":[-0.062,0.027,0],"ti":[0.059,-0.026,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":224,"s":[832.943,393.756,0],"to":[-0.059,0.026,0],"ti":[0.056,-0.025,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":225,"s":[832.77,393.832,0],"to":[-0.056,0.025,0],"ti":[0.053,-0.023,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":226,"s":[832.606,393.904,0],"to":[-0.053,0.023,0],"ti":[0.049,-0.022,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":227,"s":[832.454,393.971,0],"to":[-0.049,0.022,0],"ti":[0.045,-0.02,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":228,"s":[832.313,394.035,0],"to":[-0.045,0.02,0],"ti":[0.041,-0.019,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":229,"s":[832.183,394.094,0],"to":[-0.041,0.019,0],"ti":[0.037,-0.017,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":230,"s":[832.066,394.147,0],"to":[-0.037,0.017,0],"ti":[0.032,-0.015,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.179},"t":231,"s":[831.962,394.196,0],"to":[-0.032,0.015,0],"ti":[0.028,-0.013,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.181},"t":232,"s":[831.871,394.239,0],"to":[-0.028,0.013,0],"ti":[0.023,-0.012,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.185},"t":233,"s":[831.795,394.277,0],"to":[-0.023,0.012,0],"ti":[0.018,-0.01,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.191},"t":234,"s":[831.733,394.309,0],"to":[-0.018,0.01,0],"ti":[0.013,-0.008,0]},{"i":{"x":0.833,"y":0.87},"o":{"x":0.167,"y":0.203},"t":235,"s":[831.685,394.334,0],"to":[-0.013,0.008,0],"ti":[0.008,-0.005,0]},{"i":{"x":0.833,"y":0.885},"o":{"x":0.167,"y":0.231},"t":236,"s":[831.653,394.354,0],"to":[-0.008,0.005,0],"ti":[0.003,-0.003,0]},{"i":{"x":0.833,"y":0.751},"o":{"x":0.167,"y":0.31},"t":237,"s":[831.637,394.367,0],"to":[-0.003,0.003,0],"ti":[-0.002,-0.001,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.127},"t":238,"s":[831.636,394.373,0],"to":[0.002,0.001,0],"ti":[-0.003,0,0]},{"t":239,"s":[831.651,394.373,0]}],"ix":2,"l":2},"a":{"a":0,"k":[833,395,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":10,"s":[0,0,100]},{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.865,0.865,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":230,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"testube","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.167},"t":0,"s":[850.194,734.756,0],"to":[0.044,-0.018,0],"ti":[-0.089,0.039,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":1,"s":[850.456,734.648,0],"to":[0.089,-0.039,0],"ti":[-0.092,0.045,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":2,"s":[850.729,734.521,0],"to":[0.092,-0.045,0],"ti":[-0.095,0.051,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":3,"s":[851.011,734.376,0],"to":[0.095,-0.051,0],"ti":[-0.098,0.057,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":4,"s":[851.3,734.213,0],"to":[0.098,-0.057,0],"ti":[-0.1,0.062,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":5,"s":[851.597,734.034,0],"to":[0.1,-0.062,0],"ti":[-0.101,0.067,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":6,"s":[851.899,733.84,0],"to":[0.101,-0.067,0],"ti":[-0.103,0.072,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":7,"s":[852.205,733.631,0],"to":[0.103,-0.072,0],"ti":[-0.104,0.076,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":8,"s":[852.515,733.408,0],"to":[0.104,-0.076,0],"ti":[-0.104,0.081,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":9,"s":[852.827,733.172,0],"to":[0.104,-0.081,0],"ti":[-0.104,0.084,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":10,"s":[853.139,732.924,0],"to":[0.104,-0.084,0],"ti":[-0.104,0.088,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":11,"s":[853.452,732.666,0],"to":[0.104,-0.088,0],"ti":[-0.103,0.091,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":12,"s":[853.763,732.398,0],"to":[0.103,-0.091,0],"ti":[-0.102,0.093,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":13,"s":[854.072,732.121,0],"to":[0.102,-0.093,0],"ti":[-0.101,0.096,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":14,"s":[854.378,731.837,0],"to":[0.101,-0.096,0],"ti":[-0.099,0.098,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":15,"s":[854.679,731.547,0],"to":[0.099,-0.098,0],"ti":[-0.097,0.099,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":16,"s":[854.974,731.252,0],"to":[0.097,-0.099,0],"ti":[-0.095,0.1,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":17,"s":[855.263,730.954,0],"to":[0.095,-0.1,0],"ti":[-0.092,0.1,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":18,"s":[855.544,730.653,0],"to":[0.092,-0.1,0],"ti":[-0.089,0.101,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":19,"s":[855.817,730.351,0],"to":[0.089,-0.101,0],"ti":[-0.086,0.1,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":20,"s":[856.08,730.049,0],"to":[0.086,-0.1,0],"ti":[-0.082,0.099,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":21,"s":[856.332,729.75,0],"to":[0.082,-0.099,0],"ti":[-0.078,0.098,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":22,"s":[856.572,729.453,0],"to":[0.078,-0.098,0],"ti":[-0.074,0.096,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":23,"s":[856.8,729.161,0],"to":[0.074,-0.096,0],"ti":[-0.069,0.094,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":24,"s":[857.014,728.876,0],"to":[0.069,-0.094,0],"ti":[-0.064,0.091,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":25,"s":[857.213,728.598,0],"to":[0.064,-0.091,0],"ti":[-0.058,0.087,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":26,"s":[857.396,728.33,0],"to":[0.058,-0.087,0],"ti":[-0.053,0.083,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":27,"s":[857.564,728.074,0],"to":[0.053,-0.083,0],"ti":[-0.047,0.079,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":28,"s":[857.713,727.83,0],"to":[0.047,-0.079,0],"ti":[-0.041,0.074,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":29,"s":[857.844,727.6,0],"to":[0.041,-0.074,0],"ti":[-0.034,0.068,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.176},"t":30,"s":[857.956,727.387,0],"to":[0.034,-0.068,0],"ti":[-0.027,0.062,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.178},"t":31,"s":[858.048,727.192,0],"to":[0.027,-0.062,0],"ti":[-0.02,0.055,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.181},"t":32,"s":[858.119,727.017,0],"to":[0.02,-0.055,0],"ti":[-0.012,0.047,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.185},"t":33,"s":[858.167,726.863,0],"to":[0.012,-0.047,0],"ti":[-0.005,0.039,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.189},"t":34,"s":[858.193,726.734,0],"to":[0.005,-0.039,0],"ti":[0.003,0.03,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.192},"t":35,"s":[858.195,726.63,0],"to":[-0.003,-0.03,0],"ti":[0.012,0.02,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.182},"t":36,"s":[858.173,726.553,0],"to":[-0.012,-0.02,0],"ti":[0.02,0.01,0]},{"i":{"x":0.833,"y":0.804},"o":{"x":0.167,"y":0.157},"t":37,"s":[858.125,726.507,0],"to":[-0.02,-0.01,0],"ti":[0.029,-0.001,0]},{"i":{"x":0.833,"y":0.803},"o":{"x":0.167,"y":0.145},"t":38,"s":[858.051,726.492,0],"to":[-0.029,0.001,0],"ti":[0.038,-0.012,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.145},"t":39,"s":[857.95,726.511,0],"to":[-0.038,0.012,0],"ti":[0.048,-0.025,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.147},"t":40,"s":[857.821,726.565,0],"to":[-0.048,0.025,0],"ti":[0.057,-0.038,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.15},"t":41,"s":[857.663,726.658,0],"to":[-0.057,0.038,0],"ti":[0.066,-0.049,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.156},"t":42,"s":[857.477,726.792,0],"to":[-0.066,0.049,0],"ti":[0.071,-0.055,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":43,"s":[857.267,726.953,0],"to":[-0.071,0.055,0],"ti":[0.075,-0.057,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":44,"s":[857.048,727.122,0],"to":[-0.075,0.057,0],"ti":[0.078,-0.058,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":45,"s":[856.819,727.295,0],"to":[-0.078,0.058,0],"ti":[0.08,-0.059,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":46,"s":[856.583,727.472,0],"to":[-0.08,0.059,0],"ti":[0.083,-0.06,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":47,"s":[856.338,727.651,0],"to":[-0.083,0.06,0],"ti":[0.085,-0.06,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":48,"s":[856.087,727.832,0],"to":[-0.085,0.06,0],"ti":[0.086,-0.06,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":49,"s":[855.831,728.012,0],"to":[-0.086,0.06,0],"ti":[0.088,-0.059,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":50,"s":[855.569,728.19,0],"to":[-0.088,0.059,0],"ti":[0.089,-0.058,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":51,"s":[855.303,728.366,0],"to":[-0.089,0.058,0],"ti":[0.09,-0.057,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":52,"s":[855.033,728.538,0],"to":[-0.09,0.057,0],"ti":[0.091,-0.055,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":53,"s":[854.761,728.705,0],"to":[-0.091,0.055,0],"ti":[0.092,-0.053,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":54,"s":[854.487,728.867,0],"to":[-0.092,0.053,0],"ti":[0.092,-0.05,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":55,"s":[854.21,729.022,0],"to":[-0.092,0.05,0],"ti":[0.092,-0.048,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":56,"s":[853.933,729.17,0],"to":[-0.092,0.048,0],"ti":[0.092,-0.045,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":57,"s":[853.656,729.309,0],"to":[-0.092,0.045,0],"ti":[0.092,-0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":58,"s":[853.379,729.439,0],"to":[-0.092,0.042,0],"ti":[0.092,-0.039,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":59,"s":[853.103,729.56,0],"to":[-0.092,0.039,0],"ti":[0.091,-0.035,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":60,"s":[852.828,729.67,0],"to":[-0.091,0.035,0],"ti":[0.091,-0.031,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":61,"s":[852.555,729.77,0],"to":[-0.091,0.031,0],"ti":[0.09,-0.027,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":62,"s":[852.284,729.858,0],"to":[-0.09,0.027,0],"ti":[0.089,-0.023,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":63,"s":[852.017,729.935,0],"to":[-0.089,0.023,0],"ti":[0.088,-0.019,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":64,"s":[851.752,729.999,0],"to":[-0.088,0.019,0],"ti":[0.086,-0.015,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":65,"s":[851.491,730.051,0],"to":[-0.086,0.015,0],"ti":[0.085,-0.011,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":66,"s":[851.233,730.09,0],"to":[-0.085,0.011,0],"ti":[0.084,-0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":67,"s":[850.98,730.117,0],"to":[-0.084,0.007,0],"ti":[0.082,-0.002,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":68,"s":[850.732,730.13,0],"to":[-0.082,0.002,0],"ti":[0.08,0.002,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":69,"s":[850.488,730.13,0],"to":[-0.08,-0.002,0],"ti":[0.079,0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":70,"s":[850.25,730.116,0],"to":[-0.079,-0.007,0],"ti":[0.077,0.011,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":71,"s":[850.017,730.09,0],"to":[-0.077,-0.011,0],"ti":[0.075,0.015,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":72,"s":[849.789,730.05,0],"to":[-0.075,-0.015,0],"ti":[0.073,0.02,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":73,"s":[849.568,729.997,0],"to":[-0.073,-0.02,0],"ti":[0.071,0.024,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":74,"s":[849.352,729.932,0],"to":[-0.071,-0.024,0],"ti":[0.069,0.028,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":75,"s":[849.142,729.854,0],"to":[-0.069,-0.028,0],"ti":[0.067,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[848.939,729.763,0],"to":[-0.067,-0.032,0],"ti":[0.065,0.036,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[848.742,729.661,0],"to":[-0.065,-0.036,0],"ti":[0.063,0.04,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":78,"s":[848.551,729.547,0],"to":[-0.063,-0.04,0],"ti":[0.06,0.043,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":79,"s":[848.366,729.423,0],"to":[-0.06,-0.043,0],"ti":[0.058,0.047,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":80,"s":[848.188,729.288,0],"to":[-0.058,-0.047,0],"ti":[0.056,0.05,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":81,"s":[848.016,729.142,0],"to":[-0.056,-0.05,0],"ti":[0.054,0.053,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":82,"s":[847.85,728.988,0],"to":[-0.054,-0.053,0],"ti":[0.052,0.056,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":83,"s":[847.691,728.826,0],"to":[-0.052,-0.056,0],"ti":[0.05,0.058,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":84,"s":[847.538,728.655,0],"to":[-0.05,-0.058,0],"ti":[0.048,0.06,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":85,"s":[847.391,728.478,0],"to":[-0.048,-0.06,0],"ti":[0.046,0.062,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":86,"s":[847.249,728.295,0],"to":[-0.046,-0.062,0],"ti":[0.044,0.063,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":87,"s":[847.113,728.106,0],"to":[-0.044,-0.063,0],"ti":[0.043,0.065,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":88,"s":[846.983,727.914,0],"to":[-0.043,-0.065,0],"ti":[0.041,0.065,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":89,"s":[846.858,727.718,0],"to":[-0.041,-0.065,0],"ti":[0.039,0.066,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":90,"s":[846.738,727.521,0],"to":[-0.039,-0.066,0],"ti":[0.038,0.066,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":91,"s":[846.623,727.323,0],"to":[-0.038,-0.066,0],"ti":[0.036,0.066,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":92,"s":[846.512,727.126,0],"to":[-0.036,-0.066,0],"ti":[0.035,0.065,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":93,"s":[846.405,726.93,0],"to":[-0.035,-0.065,0],"ti":[0.034,0.063,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":94,"s":[846.302,726.738,0],"to":[-0.034,-0.063,0],"ti":[0.033,0.062,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.169},"t":95,"s":[846.203,726.55,0],"to":[-0.033,-0.062,0],"ti":[0.032,0.059,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":96,"s":[846.106,726.368,0],"to":[-0.032,-0.059,0],"ti":[0.031,0.057,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":97,"s":[846.012,726.194,0],"to":[-0.031,-0.057,0],"ti":[0.03,0.053,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.171},"t":98,"s":[845.92,726.028,0],"to":[-0.03,-0.053,0],"ti":[0.03,0.049,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":99,"s":[845.829,725.874,0],"to":[-0.03,-0.049,0],"ti":[0.03,0.045,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":100,"s":[845.74,725.732,0],"to":[-0.03,-0.045,0],"ti":[0.03,0.04,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":101,"s":[845.651,725.605,0],"to":[-0.03,-0.04,0],"ti":[0.029,0.034,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":102,"s":[845.562,725.493,0],"to":[-0.029,-0.034,0],"ti":[0.028,0.029,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":103,"s":[845.474,725.398,0],"to":[-0.028,-0.029,0],"ti":[0.027,0.024,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":104,"s":[845.392,725.318,0],"to":[-0.027,-0.024,0],"ti":[0.025,0.019,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":105,"s":[845.314,725.253,0],"to":[-0.025,-0.019,0],"ti":[0.023,0.015,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.18},"t":106,"s":[845.242,725.202,0],"to":[-0.023,-0.015,0],"ti":[0.021,0.011,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":107,"s":[845.175,725.164,0],"to":[-0.021,-0.011,0],"ti":[0.019,0.007,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":108,"s":[845.115,725.139,0],"to":[-0.019,-0.007,0],"ti":[0.017,0.003,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.181},"t":109,"s":[845.061,725.125,0],"to":[-0.017,-0.003,0],"ti":[0.015,-0.001,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.179},"t":110,"s":[845.014,725.123,0],"to":[-0.015,0.001,0],"ti":[0.012,-0.004,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.174},"t":111,"s":[844.973,725.131,0],"to":[-0.012,0.004,0],"ti":[0.01,-0.007,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.167},"t":112,"s":[844.94,725.148,0],"to":[-0.01,0.007,0],"ti":[0.008,-0.01,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.161},"t":113,"s":[844.913,725.175,0],"to":[-0.008,0.01,0],"ti":[0.005,-0.013,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.158},"t":114,"s":[844.894,725.211,0],"to":[-0.005,0.013,0],"ti":[0.003,-0.016,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":115,"s":[844.882,725.254,0],"to":[-0.003,0.016,0],"ti":[0,-0.018,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":116,"s":[844.878,725.305,0],"to":[0,0.018,0],"ti":[-0.002,-0.02,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":117,"s":[844.882,725.363,0],"to":[0.002,0.02,0],"ti":[-0.005,-0.022,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":118,"s":[844.893,725.426,0],"to":[0.005,0.022,0],"ti":[-0.008,-0.024,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":119,"s":[844.912,725.495,0],"to":[0.008,0.024,0],"ti":[-0.01,-0.025,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":120,"s":[844.938,725.569,0],"to":[0.01,0.025,0],"ti":[-0.013,-0.027,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":121,"s":[844.972,725.648,0],"to":[0.013,0.027,0],"ti":[-0.015,-0.028,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":122,"s":[845.014,725.73,0],"to":[0.015,0.028,0],"ti":[-0.018,-0.029,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":123,"s":[845.063,725.815,0],"to":[0.018,0.029,0],"ti":[-0.02,-0.03,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":124,"s":[845.12,725.903,0],"to":[0.02,0.03,0],"ti":[-0.023,-0.03,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":125,"s":[845.184,725.993,0],"to":[0.023,0.03,0],"ti":[-0.025,-0.031,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":126,"s":[845.255,726.085,0],"to":[0.025,0.031,0],"ti":[-0.027,-0.031,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":127,"s":[845.333,726.178,0],"to":[0.027,0.031,0],"ti":[-0.029,-0.031,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":128,"s":[845.418,726.271,0],"to":[0.029,0.031,0],"ti":[-0.032,-0.031,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":129,"s":[845.51,726.365,0],"to":[0.032,0.031,0],"ti":[-0.034,-0.031,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":130,"s":[845.608,726.458,0],"to":[0.034,0.031,0],"ti":[-0.036,-0.03,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":131,"s":[845.712,726.55,0],"to":[0.036,0.03,0],"ti":[-0.038,-0.03,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":132,"s":[845.821,726.641,0],"to":[0.038,0.03,0],"ti":[-0.039,-0.029,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":133,"s":[845.937,726.729,0],"to":[0.039,0.029,0],"ti":[-0.041,-0.028,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":134,"s":[846.057,726.816,0],"to":[0.041,0.028,0],"ti":[-0.042,-0.027,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":135,"s":[846.182,726.9,0],"to":[0.042,0.027,0],"ti":[-0.044,-0.026,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":136,"s":[846.312,726.98,0],"to":[0.044,0.026,0],"ti":[-0.045,-0.025,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":137,"s":[846.446,727.057,0],"to":[0.045,0.025,0],"ti":[-0.046,-0.023,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":138,"s":[846.583,727.129,0],"to":[0.046,0.023,0],"ti":[-0.047,-0.022,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[846.723,727.198,0],"to":[0.047,0.022,0],"ti":[-0.048,-0.02,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":140,"s":[846.866,727.261,0],"to":[0.048,0.02,0],"ti":[-0.049,-0.018,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":141,"s":[847.011,727.319,0],"to":[0.049,0.018,0],"ti":[-0.049,-0.016,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":142,"s":[847.157,727.371,0],"to":[0.049,0.016,0],"ti":[-0.049,-0.014,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":143,"s":[847.305,727.417,0],"to":[0.049,0.014,0],"ti":[-0.049,-0.012,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":144,"s":[847.453,727.456,0],"to":[0.049,0.012,0],"ti":[-0.049,-0.01,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":145,"s":[847.6,727.489,0],"to":[0.049,0.01,0],"ti":[-0.049,-0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":146,"s":[847.747,727.514,0],"to":[0.049,0.007,0],"ti":[-0.048,-0.005,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":147,"s":[847.893,727.532,0],"to":[0.048,0.005,0],"ti":[-0.047,-0.002,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":148,"s":[848.036,727.542,0],"to":[0.047,0.002,0],"ti":[-0.046,0.001,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":149,"s":[848.177,727.543,0],"to":[0.046,-0.001,0],"ti":[-0.045,0.004,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":150,"s":[848.314,727.536,0],"to":[0.045,-0.004,0],"ti":[-0.043,0.007,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":151,"s":[848.446,727.52,0],"to":[0.043,-0.007,0],"ti":[-0.042,0.01,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":152,"s":[848.574,727.495,0],"to":[0.042,-0.01,0],"ti":[-0.039,0.013,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":153,"s":[848.696,727.46,0],"to":[0.039,-0.013,0],"ti":[-0.037,0.016,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":154,"s":[848.811,727.416,0],"to":[0.037,-0.016,0],"ti":[-0.034,0.02,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":155,"s":[848.918,727.362,0],"to":[0.034,-0.02,0],"ti":[-0.031,0.023,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[849.017,727.297,0],"to":[0.031,-0.023,0],"ti":[-0.028,0.027,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":157,"s":[849.107,727.221,0],"to":[0.028,-0.027,0],"ti":[-0.025,0.031,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.166},"t":158,"s":[849.186,727.135,0],"to":[0.025,-0.031,0],"ti":[-0.021,0.034,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":159,"s":[849.255,727.037,0],"to":[0.021,-0.034,0],"ti":[-0.017,0.038,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.163},"t":160,"s":[849.311,726.928,0],"to":[0.017,-0.038,0],"ti":[-0.012,0.042,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.162},"t":161,"s":[849.354,726.808,0],"to":[0.012,-0.042,0],"ti":[-0.008,0.043,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.171},"t":162,"s":[849.383,726.676,0],"to":[0.008,-0.043,0],"ti":[-0.005,0.038,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":163,"s":[849.4,726.547,0],"to":[0.005,-0.038,0],"ti":[-0.003,0.029,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.196},"t":164,"s":[849.411,726.446,0],"to":[0.003,-0.029,0],"ti":[-0.002,0.021,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.208},"t":165,"s":[849.418,726.372,0],"to":[0.002,-0.021,0],"ti":[0,0.013,0]},{"i":{"x":0.833,"y":0.893},"o":{"x":0.167,"y":0.237},"t":166,"s":[849.42,726.321,0],"to":[0,-0.013,0],"ti":[0.001,0.006,0]},{"i":{"x":0.833,"y":0.749},"o":{"x":0.167,"y":0.391},"t":167,"s":[849.42,726.294,0],"to":[-0.001,-0.006,0],"ti":[0.001,-0.001,0]},{"i":{"x":0.833,"y":0.731},"o":{"x":0.167,"y":0.127},"t":168,"s":[849.417,726.288,0],"to":[-0.001,0.001,0],"ti":[0.001,-0.008,0]},{"i":{"x":0.833,"y":0.79},"o":{"x":0.167,"y":0.121},"t":169,"s":[849.413,726.302,0],"to":[-0.001,0.008,0],"ti":[0.001,-0.014,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.138},"t":170,"s":[849.409,726.335,0],"to":[-0.001,0.014,0],"ti":[0.001,-0.019,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.147},"t":171,"s":[849.404,726.385,0],"to":[-0.001,0.019,0],"ti":[0.001,-0.024,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.152},"t":172,"s":[849.401,726.45,0],"to":[-0.001,0.024,0],"ti":[0,-0.029,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.155},"t":173,"s":[849.399,726.53,0],"to":[0,0.029,0],"ti":[-0.001,-0.033,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.157},"t":174,"s":[849.4,726.623,0],"to":[0.001,0.033,0],"ti":[-0.002,-0.037,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":175,"s":[849.403,726.727,0],"to":[0.002,0.037,0],"ti":[-0.003,-0.04,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.16},"t":176,"s":[849.41,726.842,0],"to":[0.003,0.04,0],"ti":[-0.004,-0.043,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.161},"t":177,"s":[849.421,726.967,0],"to":[0.004,0.043,0],"ti":[-0.006,-0.045,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.162},"t":178,"s":[849.436,727.099,0],"to":[0.006,0.045,0],"ti":[-0.008,-0.047,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":179,"s":[849.457,727.238,0],"to":[0.008,0.047,0],"ti":[-0.01,-0.049,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":180,"s":[849.482,727.382,0],"to":[0.01,0.049,0],"ti":[-0.012,-0.05,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":181,"s":[849.514,727.532,0],"to":[0.012,0.05,0],"ti":[-0.014,-0.051,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":182,"s":[849.552,727.684,0],"to":[0.014,0.051,0],"ti":[-0.016,-0.052,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":183,"s":[849.597,727.839,0],"to":[0.016,0.052,0],"ti":[-0.018,-0.052,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":184,"s":[849.648,727.996,0],"to":[0.018,0.052,0],"ti":[-0.021,-0.052,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":185,"s":[849.707,728.152,0],"to":[0.021,0.052,0],"ti":[-0.023,-0.052,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":186,"s":[849.772,728.308,0],"to":[0.023,0.052,0],"ti":[-0.026,-0.051,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":187,"s":[849.846,728.463,0],"to":[0.026,0.051,0],"ti":[-0.028,-0.05,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":188,"s":[849.927,728.615,0],"to":[0.028,0.05,0],"ti":[-0.031,-0.049,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":189,"s":[850.016,728.764,0],"to":[0.031,0.049,0],"ti":[-0.034,-0.047,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":190,"s":[850.113,728.908,0],"to":[0.034,0.047,0],"ti":[-0.036,-0.045,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":191,"s":[850.217,729.047,0],"to":[0.036,0.045,0],"ti":[-0.039,-0.043,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":192,"s":[850.33,729.181,0],"to":[0.039,0.043,0],"ti":[-0.042,-0.041,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":193,"s":[850.451,729.308,0],"to":[0.042,0.041,0],"ti":[-0.044,-0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":194,"s":[850.58,729.427,0],"to":[0.044,0.039,0],"ti":[-0.047,-0.036,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":195,"s":[850.716,729.539,0],"to":[0.047,0.036,0],"ti":[-0.049,-0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":196,"s":[850.86,729.642,0],"to":[0.049,0.033,0],"ti":[-0.052,-0.029,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":197,"s":[851.012,729.735,0],"to":[0.052,0.029,0],"ti":[-0.054,-0.026,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":198,"s":[851.171,729.818,0],"to":[0.054,0.026,0],"ti":[-0.057,-0.022,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":199,"s":[851.337,729.891,0],"to":[0.057,0.022,0],"ti":[-0.059,-0.019,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":200,"s":[851.51,729.953,0],"to":[0.059,0.019,0],"ti":[-0.061,-0.015,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":201,"s":[851.689,730.003,0],"to":[0.061,0.015,0],"ti":[-0.063,-0.011,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":202,"s":[851.875,730.041,0],"to":[0.063,0.011,0],"ti":[-0.065,-0.006,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":203,"s":[852.067,730.066,0],"to":[0.065,0.006,0],"ti":[-0.066,-0.002,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":204,"s":[852.263,730.078,0],"to":[0.066,0.002,0],"ti":[-0.068,0.003,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":205,"s":[852.465,730.077,0],"to":[0.068,-0.003,0],"ti":[-0.069,0.007,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":206,"s":[852.672,730.062,0],"to":[0.069,-0.007,0],"ti":[-0.071,0.012,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":207,"s":[852.882,730.032,0],"to":[0.071,-0.012,0],"ti":[-0.072,0.017,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":208,"s":[853.096,729.988,0],"to":[0.072,-0.017,0],"ti":[-0.073,0.022,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":209,"s":[853.312,729.93,0],"to":[0.073,-0.022,0],"ti":[-0.073,0.027,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":210,"s":[853.531,729.856,0],"to":[0.073,-0.027,0],"ti":[-0.074,0.032,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":211,"s":[853.752,729.767,0],"to":[0.074,-0.032,0],"ti":[-0.074,0.037,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":212,"s":[853.973,729.662,0],"to":[0.074,-0.037,0],"ti":[-0.074,0.043,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":213,"s":[854.194,729.542,0],"to":[0.074,-0.043,0],"ti":[-0.073,0.048,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":214,"s":[854.415,729.406,0],"to":[0.073,-0.048,0],"ti":[-0.073,0.053,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":215,"s":[854.635,729.254,0],"to":[0.073,-0.053,0],"ti":[-0.072,0.059,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":216,"s":[854.852,729.086,0],"to":[0.072,-0.059,0],"ti":[-0.071,0.064,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":217,"s":[855.066,728.902,0],"to":[0.071,-0.064,0],"ti":[-0.069,0.069,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":218,"s":[855.276,728.702,0],"to":[0.069,-0.069,0],"ti":[-0.067,0.075,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":219,"s":[855.481,728.485,0],"to":[0.067,-0.075,0],"ti":[-0.065,0.08,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":220,"s":[855.68,728.253,0],"to":[0.065,-0.08,0],"ti":[-0.063,0.085,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.165},"t":221,"s":[855.872,728.005,0],"to":[0.063,-0.085,0],"ti":[-0.06,0.088,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.168},"t":222,"s":[856.057,727.741,0],"to":[0.06,-0.088,0],"ti":[-0.058,0.082,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":223,"s":[856.234,727.48,0],"to":[0.058,-0.082,0],"ti":[-0.057,0.072,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":224,"s":[856.407,727.249,0],"to":[0.057,-0.072,0],"ti":[-0.055,0.062,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":225,"s":[856.574,727.048,0],"to":[0.055,-0.062,0],"ti":[-0.053,0.053,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":226,"s":[856.736,726.876,0],"to":[0.053,-0.053,0],"ti":[-0.051,0.043,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":227,"s":[856.892,726.732,0],"to":[0.051,-0.043,0],"ti":[-0.048,0.035,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":228,"s":[857.041,726.616,0],"to":[0.048,-0.035,0],"ti":[-0.046,0.026,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":229,"s":[857.183,726.525,0],"to":[0.046,-0.026,0],"ti":[-0.043,0.018,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.177},"t":230,"s":[857.317,726.46,0],"to":[0.043,-0.018,0],"ti":[-0.041,0.01,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.176},"t":231,"s":[857.443,726.42,0],"to":[0.041,-0.01,0],"ti":[-0.038,0.002,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.174},"t":232,"s":[857.56,726.402,0],"to":[0.038,-0.002,0],"ti":[-0.035,-0.005,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.171},"t":233,"s":[857.669,726.408,0],"to":[0.035,0.005,0],"ti":[-0.032,-0.012,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.168},"t":234,"s":[857.769,726.434,0],"to":[0.032,0.012,0],"ti":[-0.029,-0.019,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.164},"t":235,"s":[857.86,726.482,0],"to":[0.029,0.019,0],"ti":[-0.025,-0.025,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.162},"t":236,"s":[857.941,726.549,0],"to":[0.025,0.025,0],"ti":[-0.022,-0.032,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.161},"t":237,"s":[858.013,726.635,0],"to":[0.022,0.032,0],"ti":[-0.019,-0.037,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.16},"t":238,"s":[858.075,726.738,0],"to":[0.019,0.037,0],"ti":[-0.009,-0.02,0]},{"t":239,"s":[858.127,726.858,0]}],"ix":2,"l":2},"a":{"a":0,"k":[852,728,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":10,"s":[0,0,100]},{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.865,0.865,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":230,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"check","refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.167},"t":0,"s":[276.736,705.321,0],"to":[0.024,-0.029,0],"ti":[-0.045,0.055,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.177},"t":1,"s":[276.88,705.146,0],"to":[0.045,-0.055,0],"ti":[-0.04,0.048,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.18},"t":2,"s":[277.009,704.991,0],"to":[0.04,-0.048,0],"ti":[-0.034,0.041,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.184},"t":3,"s":[277.119,704.857,0],"to":[0.034,-0.041,0],"ti":[-0.027,0.033,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.19},"t":4,"s":[277.211,704.746,0],"to":[0.027,-0.033,0],"ti":[-0.021,0.024,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.202},"t":5,"s":[277.283,704.659,0],"to":[0.021,-0.024,0],"ti":[-0.013,0.015,0]},{"i":{"x":0.833,"y":0.894},"o":{"x":0.167,"y":0.236},"t":6,"s":[277.335,704.599,0],"to":[0.013,-0.015,0],"ti":[-0.006,0.005,0]},{"i":{"x":0.833,"y":0.656},"o":{"x":0.167,"y":0.393},"t":7,"s":[277.364,704.568,0],"to":[0.006,-0.005,0],"ti":[0.002,-0.005,0]},{"i":{"x":0.833,"y":0.735},"o":{"x":0.167,"y":0.111},"t":8,"s":[277.371,704.567,0],"to":[-0.002,0.005,0],"ti":[0.01,-0.016,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.122},"t":9,"s":[277.353,704.599,0],"to":[-0.01,0.016,0],"ti":[0.019,-0.028,0]},{"i":{"x":0.833,"y":0.806},"o":{"x":0.167,"y":0.136},"t":10,"s":[277.31,704.665,0],"to":[-0.019,0.028,0],"ti":[0.027,-0.04,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.146},"t":11,"s":[277.241,704.768,0],"to":[-0.027,0.04,0],"ti":[0.032,-0.049,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":12,"s":[277.149,704.905,0],"to":[-0.032,0.049,0],"ti":[0.034,-0.054,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.16},"t":13,"s":[277.049,705.059,0],"to":[-0.034,0.054,0],"ti":[0.036,-0.058,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.161},"t":14,"s":[276.945,705.228,0],"to":[-0.036,0.058,0],"ti":[0.037,-0.062,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.162},"t":15,"s":[276.835,705.41,0],"to":[-0.037,0.062,0],"ti":[0.039,-0.066,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":16,"s":[276.721,705.603,0],"to":[-0.039,0.066,0],"ti":[0.04,-0.069,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":17,"s":[276.603,705.805,0],"to":[-0.04,0.069,0],"ti":[0.041,-0.071,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":18,"s":[276.481,706.014,0],"to":[-0.041,0.071,0],"ti":[0.042,-0.073,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":19,"s":[276.356,706.231,0],"to":[-0.042,0.073,0],"ti":[0.043,-0.074,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":20,"s":[276.227,706.452,0],"to":[-0.043,0.074,0],"ti":[0.044,-0.075,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":21,"s":[276.096,706.677,0],"to":[-0.044,0.075,0],"ti":[0.045,-0.076,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":22,"s":[275.962,706.904,0],"to":[-0.045,0.076,0],"ti":[0.046,-0.076,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":23,"s":[275.826,707.132,0],"to":[-0.046,0.076,0],"ti":[0.046,-0.076,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":24,"s":[275.688,707.359,0],"to":[-0.046,0.076,0],"ti":[0.047,-0.075,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":25,"s":[275.549,707.586,0],"to":[-0.047,0.075,0],"ti":[0.047,-0.074,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":26,"s":[275.408,707.81,0],"to":[-0.047,0.074,0],"ti":[0.047,-0.073,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":27,"s":[275.266,708.03,0],"to":[-0.047,0.073,0],"ti":[0.048,-0.071,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":28,"s":[275.123,708.246,0],"to":[-0.048,0.071,0],"ti":[0.048,-0.069,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":29,"s":[274.98,708.457,0],"to":[-0.048,0.069,0],"ti":[0.048,-0.067,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":30,"s":[274.836,708.662,0],"to":[-0.048,0.067,0],"ti":[0.048,-0.064,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":31,"s":[274.692,708.859,0],"to":[-0.048,0.064,0],"ti":[0.048,-0.062,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":32,"s":[274.548,709.049,0],"to":[-0.048,0.062,0],"ti":[0.048,-0.059,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":33,"s":[274.405,709.23,0],"to":[-0.048,0.059,0],"ti":[0.047,-0.056,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":34,"s":[274.262,709.402,0],"to":[-0.047,0.056,0],"ti":[0.047,-0.052,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":35,"s":[274.12,709.564,0],"to":[-0.047,0.052,0],"ti":[0.047,-0.049,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":36,"s":[273.979,709.715,0],"to":[-0.047,0.049,0],"ti":[0.046,-0.045,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":37,"s":[273.839,709.856,0],"to":[-0.046,0.045,0],"ti":[0.046,-0.041,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":38,"s":[273.701,709.986,0],"to":[-0.046,0.041,0],"ti":[0.045,-0.037,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":39,"s":[273.563,710.104,0],"to":[-0.045,0.037,0],"ti":[0.045,-0.033,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":40,"s":[273.428,710.21,0],"to":[-0.045,0.033,0],"ti":[0.044,-0.029,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":41,"s":[273.294,710.305,0],"to":[-0.044,0.029,0],"ti":[0.044,-0.025,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":42,"s":[273.162,710.386,0],"to":[-0.044,0.025,0],"ti":[0.043,-0.021,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":43,"s":[273.032,710.455,0],"to":[-0.043,0.021,0],"ti":[0.042,-0.017,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":44,"s":[272.904,710.512,0],"to":[-0.042,0.017,0],"ti":[0.041,-0.013,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":45,"s":[272.778,710.556,0],"to":[-0.041,0.013,0],"ti":[0.041,-0.008,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":46,"s":[272.655,710.587,0],"to":[-0.041,0.008,0],"ti":[0.04,-0.004,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":47,"s":[272.534,710.606,0],"to":[-0.04,0.004,0],"ti":[0.039,0,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.169},"t":48,"s":[272.416,710.612,0],"to":[-0.039,0,0],"ti":[0.038,0.004,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.168},"t":49,"s":[272.301,710.606,0],"to":[-0.038,-0.004,0],"ti":[0.037,0.008,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[272.188,710.587,0],"to":[-0.037,-0.008,0],"ti":[0.036,0.012,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":51,"s":[272.077,710.557,0],"to":[-0.036,-0.012,0],"ti":[0.035,0.016,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":52,"s":[271.97,710.516,0],"to":[-0.035,-0.016,0],"ti":[0.034,0.019,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":53,"s":[271.865,710.464,0],"to":[-0.034,-0.019,0],"ti":[0.033,0.023,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":54,"s":[271.764,710.401,0],"to":[-0.033,-0.023,0],"ti":[0.032,0.026,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":55,"s":[271.665,710.328,0],"to":[-0.032,-0.026,0],"ti":[0.031,0.029,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":56,"s":[271.569,710.246,0],"to":[-0.031,-0.029,0],"ti":[0.031,0.032,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":57,"s":[271.476,710.154,0],"to":[-0.031,-0.032,0],"ti":[0.03,0.034,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":58,"s":[271.386,710.055,0],"to":[-0.03,-0.034,0],"ti":[0.029,0.037,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":59,"s":[271.299,709.948,0],"to":[-0.029,-0.037,0],"ti":[0.028,0.039,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":60,"s":[271.215,709.835,0],"to":[-0.028,-0.039,0],"ti":[0.027,0.041,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":61,"s":[271.133,709.716,0],"to":[-0.027,-0.041,0],"ti":[0.026,0.042,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":62,"s":[271.055,709.591,0],"to":[-0.026,-0.042,0],"ti":[0.025,0.043,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":63,"s":[270.979,709.463,0],"to":[-0.025,-0.043,0],"ti":[0.024,0.044,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.166},"t":64,"s":[270.906,709.332,0],"to":[-0.024,-0.044,0],"ti":[0.023,0.044,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":65,"s":[270.836,709.199,0],"to":[-0.023,-0.044,0],"ti":[0.022,0.044,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":66,"s":[270.768,709.066,0],"to":[-0.022,-0.044,0],"ti":[0.021,0.044,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":67,"s":[270.703,708.933,0],"to":[-0.021,-0.044,0],"ti":[0.021,0.043,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":68,"s":[270.64,708.801,0],"to":[-0.021,-0.043,0],"ti":[0.02,0.042,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":69,"s":[270.579,708.673,0],"to":[-0.02,-0.042,0],"ti":[0.019,0.04,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.171},"t":70,"s":[270.521,708.548,0],"to":[-0.019,-0.04,0],"ti":[0.018,0.038,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.172},"t":71,"s":[270.465,708.43,0],"to":[-0.018,-0.038,0],"ti":[0.017,0.035,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":72,"s":[270.412,708.319,0],"to":[-0.017,-0.035,0],"ti":[0.016,0.031,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":73,"s":[270.362,708.22,0],"to":[-0.016,-0.031,0],"ti":[0.014,0.027,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":74,"s":[270.317,708.132,0],"to":[-0.014,-0.027,0],"ti":[0.013,0.024,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":75,"s":[270.276,708.056,0],"to":[-0.013,-0.024,0],"ti":[0.012,0.021,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":76,"s":[270.238,707.989,0],"to":[-0.012,-0.021,0],"ti":[0.011,0.018,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":77,"s":[270.205,707.932,0],"to":[-0.011,-0.018,0],"ti":[0.009,0.015,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":78,"s":[270.175,707.883,0],"to":[-0.009,-0.015,0],"ti":[0.008,0.012,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":79,"s":[270.148,707.844,0],"to":[-0.008,-0.012,0],"ti":[0.007,0.009,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.188},"t":80,"s":[270.125,707.812,0],"to":[-0.007,-0.009,0],"ti":[0.006,0.007,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.192},"t":81,"s":[270.105,707.788,0],"to":[-0.006,-0.007,0],"ti":[0.005,0.005,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.197},"t":82,"s":[270.089,707.771,0],"to":[-0.005,-0.005,0],"ti":[0.004,0.003,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.204},"t":83,"s":[270.075,707.76,0],"to":[-0.004,-0.003,0],"ti":[0.003,0.001,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.202},"t":84,"s":[270.064,707.755,0],"to":[-0.003,-0.001,0],"ti":[0.002,-0.001,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.175},"t":85,"s":[270.055,707.755,0],"to":[-0.002,0.001,0],"ti":[0.002,-0.002,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.147},"t":86,"s":[270.049,707.76,0],"to":[-0.002,0.002,0],"ti":[0.001,-0.004,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.146},"t":87,"s":[270.046,707.77,0],"to":[-0.001,0.004,0],"ti":[0,-0.005,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.15},"t":88,"s":[270.045,707.783,0],"to":[0,0.005,0],"ti":[-0.001,-0.006,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.154},"t":89,"s":[270.046,707.8,0],"to":[0.001,0.006,0],"ti":[-0.001,-0.007,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.156},"t":90,"s":[270.048,707.82,0],"to":[0.001,0.007,0],"ti":[-0.002,-0.008,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.159},"t":91,"s":[270.053,707.843,0],"to":[0.002,0.008,0],"ti":[-0.002,-0.009,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.16},"t":92,"s":[270.059,707.867,0],"to":[0.002,0.009,0],"ti":[-0.003,-0.009,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.162},"t":93,"s":[270.067,707.894,0],"to":[0.003,0.009,0],"ti":[-0.003,-0.009,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.163},"t":94,"s":[270.077,707.921,0],"to":[0.003,0.009,0],"ti":[-0.004,-0.01,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.164},"t":95,"s":[270.087,707.95,0],"to":[0.004,0.01,0],"ti":[-0.004,-0.01,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":96,"s":[270.099,707.979,0],"to":[0.004,0.01,0],"ti":[-0.004,-0.01,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.166},"t":97,"s":[270.111,708.008,0],"to":[0.004,0.01,0],"ti":[-0.005,-0.009,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":98,"s":[270.124,708.037,0],"to":[0.005,0.009,0],"ti":[-0.005,-0.009,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":99,"s":[270.138,708.065,0],"to":[0.005,0.009,0],"ti":[-0.005,-0.009,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":100,"s":[270.153,708.092,0],"to":[0.005,0.009,0],"ti":[-0.005,-0.008,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.171},"t":101,"s":[270.168,708.117,0],"to":[0.005,0.008,0],"ti":[-0.005,-0.008,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.172},"t":102,"s":[270.182,708.141,0],"to":[0.005,0.008,0],"ti":[-0.005,-0.007,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":103,"s":[270.198,708.163,0],"to":[0.005,0.007,0],"ti":[-0.005,-0.006,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.175},"t":104,"s":[270.212,708.182,0],"to":[0.005,0.006,0],"ti":[-0.005,-0.005,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.177},"t":105,"s":[270.227,708.198,0],"to":[0.005,0.005,0],"ti":[-0.005,-0.004,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":106,"s":[270.241,708.212,0],"to":[0.005,0.004,0],"ti":[-0.004,-0.003,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":107,"s":[270.255,708.221,0],"to":[0.004,0.003,0],"ti":[-0.004,-0.001,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.181},"t":108,"s":[270.268,708.228,0],"to":[0.004,0.001,0],"ti":[-0.004,0,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.172},"t":109,"s":[270.28,708.23,0],"to":[0.004,0,0],"ti":[-0.003,0.002,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.162},"t":110,"s":[270.291,708.227,0],"to":[0.003,-0.002,0],"ti":[-0.003,0.003,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.153},"t":111,"s":[270.301,708.221,0],"to":[0.003,-0.003,0],"ti":[-0.003,0.005,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.15},"t":112,"s":[270.309,708.209,0],"to":[0.003,-0.005,0],"ti":[-0.002,0.006,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.15},"t":113,"s":[270.317,708.192,0],"to":[0.002,-0.006,0],"ti":[-0.001,0.008,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.151},"t":114,"s":[270.322,708.17,0],"to":[0.001,-0.008,0],"ti":[-0.001,0.01,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.153},"t":115,"s":[270.325,708.142,0],"to":[0.001,-0.01,0],"ti":[0,0.012,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.154},"t":116,"s":[270.327,708.109,0],"to":[0,-0.012,0],"ti":[0.001,0.014,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.155},"t":117,"s":[270.327,708.069,0],"to":[-0.001,-0.014,0],"ti":[0.001,0.016,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.156},"t":118,"s":[270.324,708.023,0],"to":[-0.001,-0.016,0],"ti":[0.002,0.019,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":119,"s":[270.318,707.971,0],"to":[-0.002,-0.019,0],"ti":[0.003,0.021,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":120,"s":[270.31,707.911,0],"to":[-0.003,-0.021,0],"ti":[0.004,0.023,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":121,"s":[270.3,707.845,0],"to":[-0.004,-0.023,0],"ti":[0.005,0.026,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":122,"s":[270.286,707.772,0],"to":[-0.005,-0.026,0],"ti":[0.006,0.028,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":123,"s":[270.269,707.692,0],"to":[-0.006,-0.028,0],"ti":[0.007,0.03,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":124,"s":[270.249,707.604,0],"to":[-0.007,-0.03,0],"ti":[0.008,0.033,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":125,"s":[270.226,707.509,0],"to":[-0.008,-0.033,0],"ti":[0.01,0.036,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":126,"s":[270.199,707.406,0],"to":[-0.01,-0.036,0],"ti":[0.011,0.038,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":127,"s":[270.168,707.295,0],"to":[-0.011,-0.038,0],"ti":[0.012,0.041,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":128,"s":[270.134,707.177,0],"to":[-0.012,-0.041,0],"ti":[0.014,0.044,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":129,"s":[270.095,707.05,0],"to":[-0.014,-0.044,0],"ti":[0.015,0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":130,"s":[270.052,706.915,0],"to":[-0.015,-0.046,0],"ti":[0.016,0.048,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.165},"t":131,"s":[270.004,706.771,0],"to":[-0.016,-0.048,0],"ti":[0.017,0.044,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.182},"t":132,"s":[269.953,706.626,0],"to":[-0.017,-0.044,0],"ti":[0.017,0.036,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":133,"s":[269.902,706.506,0],"to":[-0.017,-0.036,0],"ti":[0.016,0.027,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.188},"t":134,"s":[269.852,706.412,0],"to":[-0.016,-0.027,0],"ti":[0.016,0.019,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.191},"t":135,"s":[269.805,706.343,0],"to":[-0.016,-0.019,0],"ti":[0.015,0.012,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.193},"t":136,"s":[269.759,706.296,0],"to":[-0.015,-0.012,0],"ti":[0.013,0.005,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.189},"t":137,"s":[269.717,706.27,0],"to":[-0.013,-0.005,0],"ti":[0.012,-0.001,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.172},"t":138,"s":[269.679,706.265,0],"to":[-0.012,0.001,0],"ti":[0.011,-0.007,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.156},"t":139,"s":[269.645,706.278,0],"to":[-0.011,0.007,0],"ti":[0.009,-0.013,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.151},"t":140,"s":[269.616,706.308,0],"to":[-0.009,0.013,0],"ti":[0.007,-0.018,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.152},"t":141,"s":[269.592,706.353,0],"to":[-0.007,0.018,0],"ti":[0.005,-0.022,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.154},"t":142,"s":[269.574,706.413,0],"to":[-0.005,0.022,0],"ti":[0.003,-0.026,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.156},"t":143,"s":[269.563,706.486,0],"to":[-0.003,0.026,0],"ti":[0.001,-0.03,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":144,"s":[269.558,706.571,0],"to":[-0.001,0.03,0],"ti":[-0.002,-0.033,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":145,"s":[269.56,706.667,0],"to":[0.002,0.033,0],"ti":[-0.004,-0.036,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":146,"s":[269.569,706.772,0],"to":[0.004,0.036,0],"ti":[-0.007,-0.039,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":147,"s":[269.586,706.885,0],"to":[0.007,0.039,0],"ti":[-0.01,-0.041,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":148,"s":[269.61,707.005,0],"to":[0.01,0.041,0],"ti":[-0.012,-0.043,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.162},"t":149,"s":[269.643,707.131,0],"to":[0.012,0.043,0],"ti":[-0.015,-0.044,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":150,"s":[269.684,707.262,0],"to":[0.015,0.044,0],"ti":[-0.018,-0.045,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":151,"s":[269.733,707.396,0],"to":[0.018,0.045,0],"ti":[-0.021,-0.046,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":152,"s":[269.791,707.533,0],"to":[0.021,0.046,0],"ti":[-0.024,-0.046,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":153,"s":[269.857,707.672,0],"to":[0.024,0.046,0],"ti":[-0.026,-0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":154,"s":[269.932,707.811,0],"to":[0.026,0.046,0],"ti":[-0.029,-0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":155,"s":[270.016,707.95,0],"to":[0.029,0.046,0],"ti":[-0.032,-0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":156,"s":[270.108,708.088,0],"to":[0.032,0.046,0],"ti":[-0.035,-0.045,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":157,"s":[270.208,708.223,0],"to":[0.035,0.045,0],"ti":[-0.038,-0.044,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":158,"s":[270.318,708.356,0],"to":[0.038,0.044,0],"ti":[-0.041,-0.042,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":159,"s":[270.435,708.485,0],"to":[0.041,0.042,0],"ti":[-0.043,-0.04,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":160,"s":[270.561,708.609,0],"to":[0.043,0.04,0],"ti":[-0.046,-0.039,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":161,"s":[270.695,708.727,0],"to":[0.046,0.039,0],"ti":[-0.048,-0.036,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":162,"s":[270.836,708.84,0],"to":[0.048,0.036,0],"ti":[-0.051,-0.034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":163,"s":[270.985,708.945,0],"to":[0.051,0.034,0],"ti":[-0.053,-0.031,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":164,"s":[271.141,709.043,0],"to":[0.053,0.031,0],"ti":[-0.055,-0.028,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":165,"s":[271.304,709.132,0],"to":[0.055,0.028,0],"ti":[-0.058,-0.025,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":166,"s":[271.474,709.213,0],"to":[0.058,0.025,0],"ti":[-0.059,-0.022,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":167,"s":[271.649,709.284,0],"to":[0.059,0.022,0],"ti":[-0.061,-0.019,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":168,"s":[271.83,709.345,0],"to":[0.061,0.019,0],"ti":[-0.063,-0.015,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":169,"s":[272.017,709.395,0],"to":[0.063,0.015,0],"ti":[-0.064,-0.011,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":170,"s":[272.208,709.434,0],"to":[0.064,0.011,0],"ti":[-0.066,-0.007,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":171,"s":[272.404,709.461,0],"to":[0.066,0.007,0],"ti":[-0.067,-0.003,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":172,"s":[272.603,709.476,0],"to":[0.067,0.003,0],"ti":[-0.068,0.001,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":173,"s":[272.805,709.479,0],"to":[0.068,-0.001,0],"ti":[-0.068,0.006,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":174,"s":[273.009,709.468,0],"to":[0.068,-0.006,0],"ti":[-0.069,0.01,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":175,"s":[273.215,709.444,0],"to":[0.069,-0.01,0],"ti":[-0.069,0.015,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":176,"s":[273.423,709.406,0],"to":[0.069,-0.015,0],"ti":[-0.069,0.02,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":177,"s":[273.63,709.354,0],"to":[0.069,-0.02,0],"ti":[-0.069,0.025,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":178,"s":[273.837,709.288,0],"to":[0.069,-0.025,0],"ti":[-0.068,0.029,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":179,"s":[274.043,709.207,0],"to":[0.068,-0.029,0],"ti":[-0.067,0.034,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":180,"s":[274.246,709.111,0],"to":[0.067,-0.034,0],"ti":[-0.066,0.04,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":181,"s":[274.447,709,0],"to":[0.066,-0.04,0],"ti":[-0.065,0.045,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":182,"s":[274.643,708.874,0],"to":[0.065,-0.045,0],"ti":[-0.063,0.05,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":183,"s":[274.835,708.732,0],"to":[0.063,-0.05,0],"ti":[-0.061,0.055,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":184,"s":[275.021,708.575,0],"to":[0.061,-0.055,0],"ti":[-0.058,0.06,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":185,"s":[275.2,708.402,0],"to":[0.058,-0.06,0],"ti":[-0.056,0.065,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":186,"s":[275.371,708.214,0],"to":[0.056,-0.065,0],"ti":[-0.052,0.071,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":187,"s":[275.533,708.009,0],"to":[0.052,-0.071,0],"ti":[-0.049,0.076,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":188,"s":[275.685,707.789,0],"to":[0.049,-0.076,0],"ti":[-0.045,0.081,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":189,"s":[275.825,707.553,0],"to":[0.045,-0.081,0],"ti":[-0.041,0.086,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.164},"t":190,"s":[275.954,707.302,0],"to":[0.041,-0.086,0],"ti":[-0.036,0.09,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.166},"t":191,"s":[276.069,707.035,0],"to":[0.036,-0.09,0],"ti":[-0.033,0.089,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":192,"s":[276.17,706.759,0],"to":[0.033,-0.089,0],"ti":[-0.031,0.083,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":193,"s":[276.266,706.501,0],"to":[0.031,-0.083,0],"ti":[-0.029,0.076,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":194,"s":[276.357,706.262,0],"to":[0.029,-0.076,0],"ti":[-0.027,0.07,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":195,"s":[276.442,706.042,0],"to":[0.027,-0.07,0],"ti":[-0.026,0.064,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":196,"s":[276.522,705.841,0],"to":[0.026,-0.064,0],"ti":[-0.024,0.058,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":197,"s":[276.596,705.658,0],"to":[0.024,-0.058,0],"ti":[-0.022,0.052,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":198,"s":[276.665,705.492,0],"to":[0.022,-0.052,0],"ti":[-0.02,0.047,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":199,"s":[276.728,705.343,0],"to":[0.02,-0.047,0],"ti":[-0.018,0.041,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":200,"s":[276.786,705.211,0],"to":[0.018,-0.041,0],"ti":[-0.017,0.036,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":201,"s":[276.838,705.095,0],"to":[0.017,-0.036,0],"ti":[-0.015,0.031,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.18},"t":202,"s":[276.885,704.994,0],"to":[0.015,-0.031,0],"ti":[-0.013,0.026,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.183},"t":203,"s":[276.927,704.909,0],"to":[0.013,-0.026,0],"ti":[-0.011,0.021,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.185},"t":204,"s":[276.963,704.837,0],"to":[0.011,-0.021,0],"ti":[-0.01,0.017,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":205,"s":[276.994,704.78,0],"to":[0.01,-0.017,0],"ti":[-0.008,0.013,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.196},"t":206,"s":[277.02,704.735,0],"to":[0.008,-0.013,0],"ti":[-0.006,0.009,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.209},"t":207,"s":[277.041,704.704,0],"to":[0.006,-0.009,0],"ti":[-0.004,0.005,0]},{"i":{"x":0.833,"y":0.872},"o":{"x":0.167,"y":0.235},"t":208,"s":[277.057,704.684,0],"to":[0.004,-0.005,0],"ti":[-0.003,0.001,0]},{"i":{"x":0.833,"y":0.778},"o":{"x":0.167,"y":0.228},"t":209,"s":[277.068,704.676,0],"to":[0.003,-0.001,0],"ti":[-0.001,-0.003,0]},{"i":{"x":0.833,"y":0.772},"o":{"x":0.167,"y":0.132},"t":210,"s":[277.074,704.679,0],"to":[0.001,0.003,0],"ti":[0,-0.006,0]},{"i":{"x":0.833,"y":0.799},"o":{"x":0.167,"y":0.131},"t":211,"s":[277.076,704.692,0],"to":[0,0.006,0],"ti":[0.002,-0.009,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.142},"t":212,"s":[277.073,704.714,0],"to":[-0.002,0.009,0],"ti":[0.003,-0.012,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.148},"t":213,"s":[277.065,704.746,0],"to":[-0.003,0.012,0],"ti":[0.004,-0.015,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.152},"t":214,"s":[277.054,704.786,0],"to":[-0.004,0.015,0],"ti":[0.006,-0.017,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.155},"t":215,"s":[277.038,704.833,0],"to":[-0.006,0.017,0],"ti":[0.007,-0.019,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":216,"s":[277.019,704.887,0],"to":[-0.007,0.019,0],"ti":[0.008,-0.021,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.159},"t":217,"s":[276.996,704.948,0],"to":[-0.008,0.021,0],"ti":[0.009,-0.023,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.16},"t":218,"s":[276.97,705.014,0],"to":[-0.009,0.023,0],"ti":[0.01,-0.024,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":219,"s":[276.94,705.085,0],"to":[-0.01,0.024,0],"ti":[0.011,-0.026,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":220,"s":[276.907,705.16,0],"to":[-0.011,0.026,0],"ti":[0.012,-0.027,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.163},"t":221,"s":[276.872,705.239,0],"to":[-0.012,0.027,0],"ti":[0.013,-0.027,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.164},"t":222,"s":[276.834,705.32,0],"to":[-0.013,0.027,0],"ti":[0.014,-0.028,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":223,"s":[276.794,705.403,0],"to":[-0.014,0.028,0],"ti":[0.014,-0.028,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":224,"s":[276.752,705.487,0],"to":[-0.014,0.028,0],"ti":[0.015,-0.028,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.166},"t":225,"s":[276.708,705.571,0],"to":[-0.015,0.028,0],"ti":[0.015,-0.028,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.167},"t":226,"s":[276.662,705.655,0],"to":[-0.015,0.028,0],"ti":[0.016,-0.027,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":227,"s":[276.616,705.738,0],"to":[-0.016,0.027,0],"ti":[0.016,-0.026,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":228,"s":[276.569,705.819,0],"to":[-0.016,0.026,0],"ti":[0.016,-0.025,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":229,"s":[276.521,705.897,0],"to":[-0.016,0.025,0],"ti":[0.016,-0.024,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.17},"t":230,"s":[276.473,705.971,0],"to":[-0.016,0.024,0],"ti":[0.016,-0.022,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":231,"s":[276.425,706.041,0],"to":[-0.016,0.022,0],"ti":[0.016,-0.02,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":232,"s":[276.378,706.106,0],"to":[-0.016,0.02,0],"ti":[0.015,-0.018,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.174},"t":233,"s":[276.332,706.164,0],"to":[-0.015,0.018,0],"ti":[0.015,-0.016,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.176},"t":234,"s":[276.287,706.215,0],"to":[-0.015,0.016,0],"ti":[0.014,-0.013,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":235,"s":[276.243,706.259,0],"to":[-0.014,0.013,0],"ti":[0.013,-0.01,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":236,"s":[276.202,706.293,0],"to":[-0.013,0.01,0],"ti":[0.012,-0.006,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.183},"t":237,"s":[276.163,706.318,0],"to":[-0.012,0.006,0],"ti":[0.011,-0.003,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.182},"t":238,"s":[276.127,706.332,0],"to":[-0.011,0.003,0],"ti":[0.005,0,0]},{"t":239,"s":[276.095,706.334,0]}],"ix":2,"l":2},"a":{"a":0,"k":[272.5,705.5,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":10,"s":[0,0,100]},{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.865,0.865,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":230,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"heartbeat","refId":"comp_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":0,"s":[514.686,605.756,0],"to":[-0.011,0.035,0],"ti":[0.022,-0.07,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":1,"s":[514.618,605.966,0],"to":[-0.022,0.07,0],"ti":[0.022,-0.069,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":2,"s":[514.551,606.176,0],"to":[-0.022,0.069,0],"ti":[0.022,-0.069,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":3,"s":[514.485,606.383,0],"to":[-0.022,0.069,0],"ti":[0.022,-0.068,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":4,"s":[514.418,606.588,0],"to":[-0.022,0.068,0],"ti":[0.022,-0.067,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":5,"s":[514.352,606.79,0],"to":[-0.022,0.067,0],"ti":[0.022,-0.065,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":6,"s":[514.287,606.988,0],"to":[-0.022,0.065,0],"ti":[0.022,-0.064,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":7,"s":[514.222,607.181,0],"to":[-0.022,0.064,0],"ti":[0.021,-0.062,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":8,"s":[514.157,607.369,0],"to":[-0.021,0.062,0],"ti":[0.021,-0.06,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":9,"s":[514.093,607.551,0],"to":[-0.021,0.06,0],"ti":[0.021,-0.057,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":10,"s":[514.03,607.727,0],"to":[-0.021,0.057,0],"ti":[0.021,-0.055,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":11,"s":[513.968,607.896,0],"to":[-0.021,0.055,0],"ti":[0.02,-0.053,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":12,"s":[513.906,608.058,0],"to":[-0.02,0.053,0],"ti":[0.02,-0.05,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":13,"s":[513.845,608.211,0],"to":[-0.02,0.05,0],"ti":[0.02,-0.047,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":14,"s":[513.785,608.357,0],"to":[-0.02,0.047,0],"ti":[0.02,-0.044,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":15,"s":[513.725,608.493,0],"to":[-0.02,0.044,0],"ti":[0.019,-0.041,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":16,"s":[513.667,608.621,0],"to":[-0.019,0.041,0],"ti":[0.019,-0.038,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":17,"s":[513.609,608.739,0],"to":[-0.019,0.038,0],"ti":[0.019,-0.034,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":18,"s":[513.552,608.847,0],"to":[-0.019,0.034,0],"ti":[0.018,-0.031,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":19,"s":[513.496,608.946,0],"to":[-0.018,0.031,0],"ti":[0.018,-0.028,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":20,"s":[513.441,609.034,0],"to":[-0.018,0.028,0],"ti":[0.018,-0.024,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":21,"s":[513.387,609.111,0],"to":[-0.018,0.024,0],"ti":[0.018,-0.021,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":22,"s":[513.334,609.178,0],"to":[-0.018,0.021,0],"ti":[0.017,-0.017,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.177},"t":23,"s":[513.282,609.234,0],"to":[-0.017,0.017,0],"ti":[0.017,-0.013,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.177},"t":24,"s":[513.23,609.28,0],"to":[-0.017,0.013,0],"ti":[0.017,-0.01,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.176},"t":25,"s":[513.18,609.314,0],"to":[-0.017,0.01,0],"ti":[0.016,-0.006,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.174},"t":26,"s":[513.13,609.337,0],"to":[-0.016,0.006,0],"ti":[0.016,-0.002,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.171},"t":27,"s":[513.081,609.349,0],"to":[-0.016,0.002,0],"ti":[0.016,0.002,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.166},"t":28,"s":[513.034,609.35,0],"to":[-0.016,-0.002,0],"ti":[0.016,0.005,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.162},"t":29,"s":[512.987,609.34,0],"to":[-0.016,-0.005,0],"ti":[0.015,0.009,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.16},"t":30,"s":[512.94,609.319,0],"to":[-0.015,-0.009,0],"ti":[0.015,0.012,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":31,"s":[512.895,609.287,0],"to":[-0.015,-0.012,0],"ti":[0.015,0.016,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":32,"s":[512.851,609.244,0],"to":[-0.015,-0.016,0],"ti":[0.014,0.019,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":33,"s":[512.807,609.191,0],"to":[-0.014,-0.019,0],"ti":[0.014,0.023,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":34,"s":[512.764,609.128,0],"to":[-0.014,-0.023,0],"ti":[0.014,0.026,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":35,"s":[512.721,609.054,0],"to":[-0.014,-0.026,0],"ti":[0.014,0.029,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":36,"s":[512.679,608.971,0],"to":[-0.014,-0.029,0],"ti":[0.014,0.032,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":37,"s":[512.638,608.878,0],"to":[-0.014,-0.032,0],"ti":[0.013,0.035,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":38,"s":[512.597,608.776,0],"to":[-0.013,-0.035,0],"ti":[0.013,0.038,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.161},"t":39,"s":[512.557,608.666,0],"to":[-0.013,-0.038,0],"ti":[0.013,0.041,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.162},"t":40,"s":[512.517,608.546,0],"to":[-0.013,-0.041,0],"ti":[0.012,0.042,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.169},"t":41,"s":[512.479,608.42,0],"to":[-0.012,-0.042,0],"ti":[0.01,0.041,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":42,"s":[512.446,608.295,0],"to":[-0.01,-0.041,0],"ti":[0.007,0.04,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":43,"s":[512.42,608.173,0],"to":[-0.007,-0.04,0],"ti":[0.005,0.039,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":44,"s":[512.402,608.055,0],"to":[-0.005,-0.039,0],"ti":[0.003,0.038,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":45,"s":[512.39,607.94,0],"to":[-0.003,-0.038,0],"ti":[0.001,0.037,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":46,"s":[512.384,607.827,0],"to":[-0.001,-0.037,0],"ti":[-0.001,0.036,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":47,"s":[512.383,607.717,0],"to":[0.001,-0.036,0],"ti":[-0.003,0.036,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":48,"s":[512.389,607.609,0],"to":[0.003,-0.036,0],"ti":[-0.004,0.035,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":49,"s":[512.399,607.503,0],"to":[0.004,-0.035,0],"ti":[-0.006,0.034,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":50,"s":[512.415,607.399,0],"to":[0.006,-0.034,0],"ti":[-0.007,0.034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":51,"s":[512.434,607.296,0],"to":[0.007,-0.034,0],"ti":[-0.009,0.034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[512.458,607.195,0],"to":[0.009,-0.034,0],"ti":[-0.01,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":53,"s":[512.486,607.095,0],"to":[0.01,-0.033,0],"ti":[-0.011,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":54,"s":[512.517,606.996,0],"to":[0.011,-0.033,0],"ti":[-0.012,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":55,"s":[512.552,606.898,0],"to":[0.012,-0.033,0],"ti":[-0.013,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":56,"s":[512.589,606.8,0],"to":[0.013,-0.032,0],"ti":[-0.014,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":57,"s":[512.629,606.703,0],"to":[0.014,-0.032,0],"ti":[-0.014,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":58,"s":[512.671,606.606,0],"to":[0.014,-0.032,0],"ti":[-0.015,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":59,"s":[512.715,606.509,0],"to":[0.015,-0.032,0],"ti":[-0.016,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":60,"s":[512.761,606.412,0],"to":[0.016,-0.032,0],"ti":[-0.016,0.032,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":61,"s":[512.809,606.314,0],"to":[0.016,-0.032,0],"ti":[-0.016,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":62,"s":[512.857,606.217,0],"to":[0.016,-0.033,0],"ti":[-0.017,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":63,"s":[512.907,606.119,0],"to":[0.017,-0.033,0],"ti":[-0.017,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":64,"s":[512.957,606.02,0],"to":[0.017,-0.033,0],"ti":[-0.017,0.033,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":65,"s":[513.007,605.92,0],"to":[0.017,-0.033,0],"ti":[-0.017,0.034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":66,"s":[513.058,605.82,0],"to":[0.017,-0.034,0],"ti":[-0.017,0.034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":67,"s":[513.109,605.718,0],"to":[0.017,-0.034,0],"ti":[-0.017,0.034,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":68,"s":[513.159,605.616,0],"to":[0.017,-0.034,0],"ti":[-0.016,0.035,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":69,"s":[513.209,605.512,0],"to":[0.016,-0.035,0],"ti":[-0.016,0.035,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":70,"s":[513.258,605.407,0],"to":[0.016,-0.035,0],"ti":[-0.016,0.036,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":71,"s":[513.305,605.3,0],"to":[0.016,-0.036,0],"ti":[-0.015,0.036,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":72,"s":[513.352,605.192,0],"to":[0.015,-0.036,0],"ti":[-0.015,0.037,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":73,"s":[513.397,605.083,0],"to":[0.015,-0.037,0],"ti":[-0.014,0.037,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":74,"s":[513.441,604.971,0],"to":[0.014,-0.037,0],"ti":[-0.014,0.038,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":75,"s":[513.482,604.859,0],"to":[0.014,-0.038,0],"ti":[-0.013,0.038,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":76,"s":[513.522,604.744,0],"to":[0.013,-0.038,0],"ti":[-0.012,0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":77,"s":[513.559,604.628,0],"to":[0.012,-0.039,0],"ti":[-0.011,0.04,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":78,"s":[513.593,604.51,0],"to":[0.011,-0.04,0],"ti":[-0.01,0.04,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":79,"s":[513.626,604.39,0],"to":[0.01,-0.04,0],"ti":[-0.009,0.041,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":80,"s":[513.655,604.268,0],"to":[0.009,-0.041,0],"ti":[-0.008,0.042,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":81,"s":[513.681,604.144,0],"to":[0.008,-0.042,0],"ti":[-0.007,0.042,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":82,"s":[513.704,604.018,0],"to":[0.007,-0.042,0],"ti":[-0.006,0.043,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":83,"s":[513.724,603.89,0],"to":[0.006,-0.043,0],"ti":[-0.005,0.044,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":84,"s":[513.74,603.761,0],"to":[0.005,-0.044,0],"ti":[-0.004,0.044,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":85,"s":[513.753,603.629,0],"to":[0.004,-0.044,0],"ti":[-0.002,0.045,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":86,"s":[513.762,603.496,0],"to":[0.002,-0.045,0],"ti":[-0.001,0.045,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":87,"s":[513.766,603.36,0],"to":[0.001,-0.045,0],"ti":[0,0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":88,"s":[513.767,603.223,0],"to":[0,-0.046,0],"ti":[0.002,0.047,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":89,"s":[513.764,603.084,0],"to":[-0.002,-0.047,0],"ti":[0.003,0.047,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":90,"s":[513.756,602.943,0],"to":[-0.003,-0.047,0],"ti":[0.005,0.048,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":91,"s":[513.744,602.8,0],"to":[-0.005,-0.048,0],"ti":[0.006,0.048,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":92,"s":[513.727,602.655,0],"to":[-0.006,-0.048,0],"ti":[0.008,0.049,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":93,"s":[513.706,602.509,0],"to":[-0.008,-0.049,0],"ti":[0.01,0.05,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":94,"s":[513.68,602.361,0],"to":[-0.01,-0.05,0],"ti":[0.011,0.05,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":95,"s":[513.649,602.212,0],"to":[-0.011,-0.05,0],"ti":[0.013,0.051,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":96,"s":[513.613,602.061,0],"to":[-0.013,-0.051,0],"ti":[0.015,0.051,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":97,"s":[513.572,601.909,0],"to":[-0.015,-0.051,0],"ti":[0.016,0.051,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":98,"s":[513.525,601.755,0],"to":[-0.016,-0.051,0],"ti":[0.018,0.052,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.165},"t":99,"s":[513.474,601.6,0],"to":[-0.018,-0.052,0],"ti":[0.02,0.052,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.166},"t":100,"s":[513.417,601.444,0],"to":[-0.02,-0.052,0],"ti":[0.022,0.048,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.176},"t":101,"s":[513.355,601.289,0],"to":[-0.022,-0.048,0],"ti":[0.025,0.039,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.179},"t":102,"s":[513.284,601.157,0],"to":[-0.025,-0.039,0],"ti":[0.027,0.03,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.177},"t":103,"s":[513.206,601.053,0],"to":[-0.027,-0.03,0],"ti":[0.029,0.022,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.174},"t":104,"s":[513.121,600.976,0],"to":[-0.029,-0.022,0],"ti":[0.031,0.013,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.171},"t":105,"s":[513.029,600.923,0],"to":[-0.031,-0.013,0],"ti":[0.033,0.006,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.167},"t":106,"s":[512.933,600.895,0],"to":[-0.033,-0.006,0],"ti":[0.034,-0.001,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.163},"t":107,"s":[512.832,600.889,0],"to":[-0.034,0.001,0],"ti":[0.035,-0.008,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":108,"s":[512.728,600.904,0],"to":[-0.035,0.008,0],"ti":[0.036,-0.015,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":109,"s":[512.621,600.938,0],"to":[-0.036,0.015,0],"ti":[0.036,-0.021,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":110,"s":[512.513,600.992,0],"to":[-0.036,0.021,0],"ti":[0.036,-0.026,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":111,"s":[512.403,601.062,0],"to":[-0.036,0.026,0],"ti":[0.036,-0.031,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":112,"s":[512.294,601.149,0],"to":[-0.036,0.031,0],"ti":[0.036,-0.036,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":113,"s":[512.185,601.25,0],"to":[-0.036,0.036,0],"ti":[0.036,-0.04,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":114,"s":[512.076,601.365,0],"to":[-0.036,0.04,0],"ti":[0.035,-0.044,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":115,"s":[511.97,601.493,0],"to":[-0.035,0.044,0],"ti":[0.034,-0.048,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":116,"s":[511.866,601.631,0],"to":[-0.034,0.048,0],"ti":[0.033,-0.051,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":117,"s":[511.765,601.78,0],"to":[-0.033,0.051,0],"ti":[0.032,-0.054,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":118,"s":[511.667,601.938,0],"to":[-0.032,0.054,0],"ti":[0.031,-0.056,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":119,"s":[511.573,602.104,0],"to":[-0.031,0.056,0],"ti":[0.029,-0.058,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":120,"s":[511.483,602.276,0],"to":[-0.029,0.058,0],"ti":[0.027,-0.06,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":121,"s":[511.398,602.454,0],"to":[-0.027,0.06,0],"ti":[0.026,-0.062,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":122,"s":[511.318,602.637,0],"to":[-0.026,0.062,0],"ti":[0.024,-0.063,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":123,"s":[511.244,602.824,0],"to":[-0.024,0.063,0],"ti":[0.022,-0.063,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":124,"s":[511.176,603.013,0],"to":[-0.022,0.063,0],"ti":[0.02,-0.064,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":125,"s":[511.114,603.204,0],"to":[-0.02,0.064,0],"ti":[0.017,-0.064,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":126,"s":[511.058,603.395,0],"to":[-0.017,0.064,0],"ti":[0.015,-0.064,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":127,"s":[511.009,603.586,0],"to":[-0.015,0.064,0],"ti":[0.013,-0.063,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":128,"s":[510.967,603.776,0],"to":[-0.013,0.063,0],"ti":[0.011,-0.062,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":129,"s":[510.932,603.964,0],"to":[-0.011,0.062,0],"ti":[0.008,-0.061,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":130,"s":[510.904,604.149,0],"to":[-0.008,0.061,0],"ti":[0.006,-0.06,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":131,"s":[510.883,604.33,0],"to":[-0.006,0.06,0],"ti":[0.003,-0.058,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":132,"s":[510.87,604.507,0],"to":[-0.003,0.058,0],"ti":[0.001,-0.056,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":133,"s":[510.864,604.678,0],"to":[-0.001,0.056,0],"ti":[-0.002,-0.054,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":134,"s":[510.865,604.842,0],"to":[0.002,0.054,0],"ti":[-0.004,-0.051,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":135,"s":[510.874,605,0],"to":[0.004,0.051,0],"ti":[-0.007,-0.048,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":136,"s":[510.89,605.149,0],"to":[0.007,0.048,0],"ti":[-0.009,-0.045,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":137,"s":[510.913,605.29,0],"to":[0.009,0.045,0],"ti":[-0.011,-0.042,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":138,"s":[510.944,605.421,0],"to":[0.011,0.042,0],"ti":[-0.014,-0.039,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":139,"s":[510.981,605.542,0],"to":[0.014,0.039,0],"ti":[-0.016,-0.035,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":140,"s":[511.025,605.653,0],"to":[0.016,0.035,0],"ti":[-0.018,-0.031,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":141,"s":[511.076,605.752,0],"to":[0.018,0.031,0],"ti":[-0.02,-0.027,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":142,"s":[511.133,605.838,0],"to":[0.02,0.027,0],"ti":[-0.022,-0.022,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.172},"t":143,"s":[511.195,605.912,0],"to":[0.022,0.022,0],"ti":[-0.024,-0.018,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.171},"t":144,"s":[511.264,605.973,0],"to":[0.024,0.018,0],"ti":[-0.025,-0.013,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.169},"t":145,"s":[511.338,606.019,0],"to":[0.025,0.013,0],"ti":[-0.027,-0.008,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.167},"t":146,"s":[511.417,606.051,0],"to":[0.027,0.008,0],"ti":[-0.028,-0.003,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.164},"t":147,"s":[511.5,606.068,0],"to":[0.028,0.003,0],"ti":[-0.03,0.002,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.162},"t":148,"s":[511.587,606.07,0],"to":[0.03,-0.002,0],"ti":[-0.031,0.008,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.161},"t":149,"s":[511.678,606.055,0],"to":[0.031,-0.008,0],"ti":[-0.032,0.013,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.16},"t":150,"s":[511.772,606.023,0],"to":[0.032,-0.013,0],"ti":[-0.033,0.019,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":151,"s":[511.869,605.974,0],"to":[0.033,-0.019,0],"ti":[-0.033,0.025,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":152,"s":[511.967,605.908,0],"to":[0.033,-0.025,0],"ti":[-0.033,0.031,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":153,"s":[512.067,605.823,0],"to":[0.033,-0.031,0],"ti":[-0.033,0.037,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":154,"s":[512.168,605.72,0],"to":[0.033,-0.037,0],"ti":[-0.033,0.044,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":155,"s":[512.268,605.598,0],"to":[0.033,-0.044,0],"ti":[-0.033,0.05,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":156,"s":[512.368,605.457,0],"to":[0.033,-0.05,0],"ti":[-0.032,0.057,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":157,"s":[512.466,605.297,0],"to":[0.032,-0.057,0],"ti":[-0.032,0.064,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":158,"s":[512.562,605.116,0],"to":[0.032,-0.064,0],"ti":[-0.03,0.07,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":159,"s":[512.655,604.915,0],"to":[0.03,-0.07,0],"ti":[-0.029,0.077,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.161},"t":160,"s":[512.745,604.693,0],"to":[0.029,-0.077,0],"ti":[-0.026,0.08,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.169},"t":161,"s":[512.829,604.453,0],"to":[0.026,-0.08,0],"ti":[-0.022,0.078,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":162,"s":[512.901,604.215,0],"to":[0.022,-0.078,0],"ti":[-0.018,0.075,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":163,"s":[512.961,603.985,0],"to":[0.018,-0.075,0],"ti":[-0.014,0.072,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":164,"s":[513.009,603.764,0],"to":[0.014,-0.072,0],"ti":[-0.01,0.069,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":165,"s":[513.045,603.552,0],"to":[0.01,-0.069,0],"ti":[-0.006,0.067,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":166,"s":[513.07,603.348,0],"to":[0.006,-0.067,0],"ti":[-0.003,0.064,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":167,"s":[513.084,603.153,0],"to":[0.003,-0.064,0],"ti":[0.001,0.061,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":168,"s":[513.087,602.966,0],"to":[-0.001,-0.061,0],"ti":[0.004,0.058,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":169,"s":[513.08,602.788,0],"to":[-0.004,-0.058,0],"ti":[0.007,0.055,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":170,"s":[513.064,602.618,0],"to":[-0.007,-0.055,0],"ti":[0.01,0.052,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":171,"s":[513.038,602.456,0],"to":[-0.01,-0.052,0],"ti":[0.013,0.05,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":172,"s":[513.003,602.303,0],"to":[-0.013,-0.05,0],"ti":[0.016,0.047,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":173,"s":[512.96,602.158,0],"to":[-0.016,-0.047,0],"ti":[0.018,0.044,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":174,"s":[512.91,602.021,0],"to":[-0.018,-0.044,0],"ti":[0.021,0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":175,"s":[512.851,601.892,0],"to":[-0.021,-0.042,0],"ti":[0.023,0.039,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":176,"s":[512.785,601.771,0],"to":[-0.023,-0.039,0],"ti":[0.025,0.037,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":177,"s":[512.713,601.658,0],"to":[-0.025,-0.037,0],"ti":[0.027,0.034,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":178,"s":[512.635,601.552,0],"to":[-0.027,-0.034,0],"ti":[0.029,0.032,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":179,"s":[512.55,601.453,0],"to":[-0.029,-0.032,0],"ti":[0.031,0.029,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":180,"s":[512.46,601.361,0],"to":[-0.031,-0.029,0],"ti":[0.032,0.027,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":181,"s":[512.366,601.276,0],"to":[-0.032,-0.027,0],"ti":[0.034,0.025,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":182,"s":[512.266,601.198,0],"to":[-0.034,-0.025,0],"ti":[0.035,0.023,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":183,"s":[512.163,601.126,0],"to":[-0.035,-0.023,0],"ti":[0.036,0.021,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":184,"s":[512.056,601.06,0],"to":[-0.036,-0.021,0],"ti":[0.037,0.019,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":185,"s":[511.945,601,0],"to":[-0.037,-0.019,0],"ti":[0.038,0.017,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":186,"s":[511.832,600.945,0],"to":[-0.038,-0.017,0],"ti":[0.039,0.016,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":187,"s":[511.717,600.896,0],"to":[-0.039,-0.016,0],"ti":[0.039,0.014,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":188,"s":[511.6,600.851,0],"to":[-0.039,-0.014,0],"ti":[0.04,0.013,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":189,"s":[511.481,600.811,0],"to":[-0.04,-0.013,0],"ti":[0.04,0.011,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":190,"s":[511.361,600.775,0],"to":[-0.04,-0.011,0],"ti":[0.04,0.01,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":191,"s":[511.241,600.743,0],"to":[-0.04,-0.01,0],"ti":[0.04,0.009,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":192,"s":[511.12,600.714,0],"to":[-0.04,-0.009,0],"ti":[0.04,0.008,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":193,"s":[511,600.688,0],"to":[-0.04,-0.008,0],"ti":[0.04,0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":194,"s":[510.881,600.664,0],"to":[-0.04,-0.007,0],"ti":[0.039,0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":195,"s":[510.762,600.643,0],"to":[-0.039,-0.007,0],"ti":[0.038,0.006,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":196,"s":[510.646,600.623,0],"to":[-0.038,-0.006,0],"ti":[0.038,0.006,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":197,"s":[510.532,600.604,0],"to":[-0.038,-0.006,0],"ti":[0.037,0.006,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":198,"s":[510.42,600.586,0],"to":[-0.037,-0.006,0],"ti":[0.036,0.006,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":199,"s":[510.311,600.568,0],"to":[-0.036,-0.006,0],"ti":[0.034,0.006,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":200,"s":[510.206,600.55,0],"to":[-0.034,-0.006,0],"ti":[0.033,0.007,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":201,"s":[510.105,600.531,0],"to":[-0.033,-0.007,0],"ti":[0.031,0.007,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":202,"s":[510.008,600.51,0],"to":[-0.031,-0.007,0],"ti":[0.03,0.008,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":203,"s":[509.916,600.487,0],"to":[-0.03,-0.008,0],"ti":[0.028,0.009,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":204,"s":[509.829,600.462,0],"to":[-0.028,-0.009,0],"ti":[0.026,0.01,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":205,"s":[509.749,600.434,0],"to":[-0.026,-0.01,0],"ti":[0.024,0.011,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":206,"s":[509.674,600.401,0],"to":[-0.024,-0.011,0],"ti":[0.021,0.013,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.171},"t":207,"s":[509.606,600.365,0],"to":[-0.021,-0.013,0],"ti":[0.019,0.015,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.17},"t":208,"s":[509.546,600.323,0],"to":[-0.019,-0.015,0],"ti":[0.016,0.017,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.168},"t":209,"s":[509.493,600.275,0],"to":[-0.016,-0.017,0],"ti":[0.013,0.019,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.166},"t":210,"s":[509.448,600.221,0],"to":[-0.013,-0.019,0],"ti":[0.011,0.022,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.163},"t":211,"s":[509.412,600.16,0],"to":[-0.011,-0.022,0],"ti":[0.007,0.024,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.161},"t":212,"s":[509.385,600.092,0],"to":[-0.007,-0.024,0],"ti":[0.004,0.027,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.159},"t":213,"s":[509.368,600.014,0],"to":[-0.004,-0.027,0],"ti":[0.001,0.031,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.158},"t":214,"s":[509.36,599.928,0],"to":[-0.001,-0.031,0],"ti":[-0.003,0.034,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.158},"t":215,"s":[509.363,599.831,0],"to":[0.003,-0.034,0],"ti":[-0.007,0.038,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.158},"t":216,"s":[509.377,599.723,0],"to":[0.007,-0.038,0],"ti":[-0.011,0.042,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.158},"t":217,"s":[509.403,599.604,0],"to":[0.011,-0.042,0],"ti":[-0.015,0.046,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":218,"s":[509.44,599.473,0],"to":[0.015,-0.046,0],"ti":[-0.019,0.051,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":219,"s":[509.49,599.329,0],"to":[0.019,-0.051,0],"ti":[-0.023,0.055,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.159},"t":220,"s":[509.553,599.17,0],"to":[0.023,-0.055,0],"ti":[-0.029,0.056,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.165},"t":221,"s":[509.63,598.998,0],"to":[0.029,-0.056,0],"ti":[-0.036,0.053,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":222,"s":[509.727,598.832,0],"to":[0.036,-0.053,0],"ti":[-0.042,0.05,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":223,"s":[509.844,598.678,0],"to":[0.042,-0.05,0],"ti":[-0.048,0.046,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":224,"s":[509.98,598.534,0],"to":[0.048,-0.046,0],"ti":[-0.054,0.042,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":225,"s":[510.133,598.403,0],"to":[0.054,-0.042,0],"ti":[-0.059,0.038,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":226,"s":[510.302,598.284,0],"to":[0.059,-0.038,0],"ti":[-0.063,0.033,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":227,"s":[510.485,598.178,0],"to":[0.063,-0.033,0],"ti":[-0.067,0.029,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":228,"s":[510.681,598.085,0],"to":[0.067,-0.029,0],"ti":[-0.071,0.025,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":229,"s":[510.89,598.004,0],"to":[0.071,-0.025,0],"ti":[-0.074,0.02,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":230,"s":[511.108,597.937,0],"to":[0.074,-0.02,0],"ti":[-0.077,0.016,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":231,"s":[511.336,597.883,0],"to":[0.077,-0.016,0],"ti":[-0.08,0.011,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":232,"s":[511.571,597.842,0],"to":[0.08,-0.011,0],"ti":[-0.082,0.007,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":233,"s":[511.813,597.815,0],"to":[0.082,-0.007,0],"ti":[-0.083,0.002,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":234,"s":[512.061,597.801,0],"to":[0.083,-0.002,0],"ti":[-0.085,-0.002,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":235,"s":[512.313,597.801,0],"to":[0.085,0.002,0],"ti":[-0.086,-0.007,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":236,"s":[512.569,597.814,0],"to":[0.086,0.007,0],"ti":[-0.086,-0.011,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":237,"s":[512.827,597.84,0],"to":[0.086,0.011,0],"ti":[-0.086,-0.015,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":238,"s":[513.086,597.879,0],"to":[0.086,0.015,0],"ti":[-0.043,-0.009,0]},{"t":239,"s":[513.345,597.932,0]}],"ix":2,"l":2},"a":{"a":0,"k":[511,603,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":10,"s":[0,0,100]},{"i":{"x":[0.135,0.135,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.865,0.865,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":230,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"particles","refId":"comp_6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.167},"t":0,"s":[602.686,600.343,0],"to":[-0.005,-0.007,0],"ti":[0.01,0.015,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.157},"t":1,"s":[602.653,600.304,0],"to":[-0.01,-0.015,0],"ti":[0.009,0.018,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.157},"t":2,"s":[602.623,600.255,0],"to":[-0.009,-0.018,0],"ti":[0.008,0.022,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":3,"s":[602.597,600.195,0],"to":[-0.008,-0.022,0],"ti":[0.007,0.025,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":4,"s":[602.575,600.125,0],"to":[-0.007,-0.025,0],"ti":[0.005,0.029,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":5,"s":[602.557,600.044,0],"to":[-0.005,-0.029,0],"ti":[0.004,0.032,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":6,"s":[602.543,599.952,0],"to":[-0.004,-0.032,0],"ti":[0.002,0.036,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.159},"t":7,"s":[602.535,599.85,0],"to":[-0.002,-0.036,0],"ti":[0,0.04,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":8,"s":[602.532,599.736,0],"to":[0,-0.04,0],"ti":[-0.002,0.044,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.16},"t":9,"s":[602.535,599.61,0],"to":[0.002,-0.044,0],"ti":[-0.004,0.046,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.165},"t":10,"s":[602.545,599.473,0],"to":[0.004,-0.046,0],"ti":[-0.006,0.046,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":11,"s":[602.56,599.334,0],"to":[0.006,-0.046,0],"ti":[-0.008,0.045,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":12,"s":[602.581,599.197,0],"to":[0.008,-0.045,0],"ti":[-0.009,0.044,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":13,"s":[602.606,599.064,0],"to":[0.009,-0.044,0],"ti":[-0.01,0.043,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":14,"s":[602.636,598.933,0],"to":[0.01,-0.043,0],"ti":[-0.012,0.043,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":15,"s":[602.669,598.804,0],"to":[0.012,-0.043,0],"ti":[-0.013,0.042,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":16,"s":[602.705,598.677,0],"to":[0.013,-0.042,0],"ti":[-0.013,0.041,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":17,"s":[602.744,598.553,0],"to":[0.013,-0.041,0],"ti":[-0.014,0.041,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":18,"s":[602.786,598.43,0],"to":[0.014,-0.041,0],"ti":[-0.015,0.04,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":19,"s":[602.829,598.309,0],"to":[0.015,-0.04,0],"ti":[-0.015,0.04,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":20,"s":[602.874,598.189,0],"to":[0.015,-0.04,0],"ti":[-0.016,0.039,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":21,"s":[602.92,598.071,0],"to":[0.016,-0.039,0],"ti":[-0.016,0.039,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":22,"s":[602.968,597.953,0],"to":[0.016,-0.039,0],"ti":[-0.016,0.039,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":23,"s":[603.015,597.837,0],"to":[0.016,-0.039,0],"ti":[-0.016,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":24,"s":[603.063,597.722,0],"to":[0.016,-0.038,0],"ti":[-0.016,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":25,"s":[603.111,597.607,0],"to":[0.016,-0.038,0],"ti":[-0.016,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":26,"s":[603.159,597.493,0],"to":[0.016,-0.038,0],"ti":[-0.015,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":27,"s":[603.206,597.379,0],"to":[0.015,-0.038,0],"ti":[-0.015,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":28,"s":[603.252,597.265,0],"to":[0.015,-0.038,0],"ti":[-0.015,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":29,"s":[603.297,597.152,0],"to":[0.015,-0.038,0],"ti":[-0.014,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":30,"s":[603.34,597.039,0],"to":[0.014,-0.038,0],"ti":[-0.014,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":31,"s":[603.382,596.925,0],"to":[0.014,-0.038,0],"ti":[-0.013,0.038,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":32,"s":[603.421,596.811,0],"to":[0.013,-0.038,0],"ti":[-0.012,0.038,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":33,"s":[603.459,596.697,0],"to":[0.012,-0.038,0],"ti":[-0.011,0.038,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[603.494,596.583,0],"to":[0.011,-0.038,0],"ti":[-0.011,0.038,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[603.528,596.468,0],"to":[0.011,-0.038,0],"ti":[-0.01,0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[603.558,596.352,0],"to":[0.01,-0.039,0],"ti":[-0.009,0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":37,"s":[603.586,596.235,0],"to":[0.009,-0.039,0],"ti":[-0.008,0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":38,"s":[603.61,596.118,0],"to":[0.008,-0.039,0],"ti":[-0.007,0.04,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":39,"s":[603.632,596,0],"to":[0.007,-0.04,0],"ti":[-0.006,0.04,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":40,"s":[603.651,595.881,0],"to":[0.006,-0.04,0],"ti":[-0.005,0.04,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":41,"s":[603.667,595.76,0],"to":[0.005,-0.04,0],"ti":[-0.004,0.041,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":42,"s":[603.679,595.639,0],"to":[0.004,-0.041,0],"ti":[-0.002,0.041,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":43,"s":[603.688,595.517,0],"to":[0.002,-0.041,0],"ti":[-0.001,0.041,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":44,"s":[603.694,595.393,0],"to":[0.001,-0.041,0],"ti":[0,0.042,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":45,"s":[603.696,595.268,0],"to":[0,-0.042,0],"ti":[0.001,0.042,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":46,"s":[603.695,595.141,0],"to":[-0.001,-0.042,0],"ti":[0.002,0.043,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":47,"s":[603.691,595.013,0],"to":[-0.002,-0.043,0],"ti":[0.003,0.043,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":48,"s":[603.683,594.884,0],"to":[-0.003,-0.043,0],"ti":[0.004,0.044,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":49,"s":[603.672,594.753,0],"to":[-0.004,-0.044,0],"ti":[0.005,0.044,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":50,"s":[603.657,594.621,0],"to":[-0.005,-0.044,0],"ti":[0.006,0.045,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":51,"s":[603.639,594.487,0],"to":[-0.006,-0.045,0],"ti":[0.008,0.045,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":52,"s":[603.618,594.352,0],"to":[-0.008,-0.045,0],"ti":[0.009,0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":53,"s":[603.594,594.215,0],"to":[-0.009,-0.046,0],"ti":[0.01,0.046,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":54,"s":[603.567,594.076,0],"to":[-0.01,-0.046,0],"ti":[0.01,0.047,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":55,"s":[603.537,593.936,0],"to":[-0.01,-0.047,0],"ti":[0.011,0.048,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":56,"s":[603.504,593.794,0],"to":[-0.011,-0.048,0],"ti":[0.012,0.048,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":57,"s":[603.469,593.651,0],"to":[-0.012,-0.048,0],"ti":[0.013,0.049,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":58,"s":[603.431,593.506,0],"to":[-0.013,-0.049,0],"ti":[0.014,0.049,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":59,"s":[603.39,593.359,0],"to":[-0.014,-0.049,0],"ti":[0.014,0.05,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":60,"s":[603.348,593.211,0],"to":[-0.014,-0.05,0],"ti":[0.015,0.05,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":61,"s":[603.303,593.061,0],"to":[-0.015,-0.05,0],"ti":[0.016,0.051,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":62,"s":[603.257,592.91,0],"to":[-0.016,-0.051,0],"ti":[0.016,0.051,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":63,"s":[603.209,592.757,0],"to":[-0.016,-0.051,0],"ti":[0.017,0.052,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":64,"s":[603.16,592.603,0],"to":[-0.017,-0.052,0],"ti":[0.017,0.052,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":65,"s":[603.11,592.447,0],"to":[-0.017,-0.052,0],"ti":[0.017,0.053,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":66,"s":[603.059,592.29,0],"to":[-0.017,-0.053,0],"ti":[0.017,0.053,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":67,"s":[603.008,592.132,0],"to":[-0.017,-0.053,0],"ti":[0.017,0.053,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":68,"s":[602.956,591.973,0],"to":[-0.017,-0.053,0],"ti":[0.017,0.054,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.166},"t":69,"s":[602.905,591.812,0],"to":[-0.017,-0.054,0],"ti":[0.018,0.051,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":70,"s":[602.854,591.65,0],"to":[-0.018,-0.051,0],"ti":[0.022,0.041,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.182},"t":71,"s":[602.794,591.509,0],"to":[-0.022,-0.041,0],"ti":[0.026,0.03,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.179},"t":72,"s":[602.722,591.401,0],"to":[-0.026,-0.03,0],"ti":[0.03,0.02,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.173},"t":73,"s":[602.638,591.326,0],"to":[-0.03,-0.02,0],"ti":[0.034,0.01,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.165},"t":74,"s":[602.542,591.283,0],"to":[-0.034,-0.01,0],"ti":[0.037,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.16},"t":75,"s":[602.436,591.268,0],"to":[-0.037,0,0],"ti":[0.04,-0.009,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.158},"t":76,"s":[602.321,591.283,0],"to":[-0.04,0.009,0],"ti":[0.042,-0.018,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.157},"t":77,"s":[602.198,591.324,0],"to":[-0.042,0.018,0],"ti":[0.045,-0.026,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":78,"s":[602.067,591.39,0],"to":[-0.045,0.026,0],"ti":[0.047,-0.034,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.158},"t":79,"s":[601.929,591.481,0],"to":[-0.047,0.034,0],"ti":[0.049,-0.041,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":80,"s":[601.786,591.594,0],"to":[-0.049,0.041,0],"ti":[0.05,-0.048,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":81,"s":[601.638,591.729,0],"to":[-0.05,0.048,0],"ti":[0.051,-0.055,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":82,"s":[601.485,591.885,0],"to":[-0.051,0.055,0],"ti":[0.053,-0.061,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":83,"s":[601.329,592.059,0],"to":[-0.053,0.061,0],"ti":[0.053,-0.067,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":84,"s":[601.17,592.25,0],"to":[-0.053,0.067,0],"ti":[0.054,-0.072,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":85,"s":[601.009,592.458,0],"to":[-0.054,0.072,0],"ti":[0.054,-0.077,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":86,"s":[600.846,592.681,0],"to":[-0.054,0.077,0],"ti":[0.054,-0.081,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":87,"s":[600.683,592.917,0],"to":[-0.054,0.081,0],"ti":[0.054,-0.085,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":88,"s":[600.519,593.166,0],"to":[-0.054,0.085,0],"ti":[0.054,-0.088,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":89,"s":[600.356,593.426,0],"to":[-0.054,0.088,0],"ti":[0.054,-0.091,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":90,"s":[600.194,593.696,0],"to":[-0.054,0.091,0],"ti":[0.053,-0.094,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":91,"s":[600.033,593.975,0],"to":[-0.053,0.094,0],"ti":[0.052,-0.097,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":92,"s":[599.875,594.261,0],"to":[-0.052,0.097,0],"ti":[0.051,-0.098,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":93,"s":[599.719,594.554,0],"to":[-0.051,0.098,0],"ti":[0.05,-0.1,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":94,"s":[599.566,594.852,0],"to":[-0.05,0.1,0],"ti":[0.049,-0.101,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":95,"s":[599.416,595.154,0],"to":[-0.049,0.101,0],"ti":[0.048,-0.102,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":96,"s":[599.271,595.458,0],"to":[-0.048,0.102,0],"ti":[0.046,-0.102,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":97,"s":[599.13,595.765,0],"to":[-0.046,0.102,0],"ti":[0.045,-0.102,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":98,"s":[598.993,596.072,0],"to":[-0.045,0.102,0],"ti":[0.043,-0.102,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":99,"s":[598.861,596.378,0],"to":[-0.043,0.102,0],"ti":[0.041,-0.101,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":100,"s":[598.735,596.682,0],"to":[-0.041,0.101,0],"ti":[0.039,-0.1,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":101,"s":[598.614,596.984,0],"to":[-0.039,0.1,0],"ti":[0.037,-0.098,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":102,"s":[598.5,597.282,0],"to":[-0.037,0.098,0],"ti":[0.035,-0.097,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":103,"s":[598.391,597.575,0],"to":[-0.035,0.097,0],"ti":[0.033,-0.094,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":104,"s":[598.289,597.862,0],"to":[-0.033,0.094,0],"ti":[0.031,-0.092,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":105,"s":[598.193,598.142,0],"to":[-0.031,0.092,0],"ti":[0.028,-0.089,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":106,"s":[598.104,598.414,0],"to":[-0.028,0.089,0],"ti":[0.026,-0.086,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":107,"s":[598.022,598.677,0],"to":[-0.026,0.086,0],"ti":[0.024,-0.082,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":108,"s":[597.947,598.929,0],"to":[-0.024,0.082,0],"ti":[0.021,-0.078,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":109,"s":[597.879,599.171,0],"to":[-0.021,0.078,0],"ti":[0.019,-0.074,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":110,"s":[597.819,599.4,0],"to":[-0.019,0.074,0],"ti":[0.017,-0.07,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":111,"s":[597.765,599.616,0],"to":[-0.017,0.07,0],"ti":[0.014,-0.065,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":112,"s":[597.719,599.818,0],"to":[-0.014,0.065,0],"ti":[0.012,-0.06,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":113,"s":[597.68,600.005,0],"to":[-0.012,0.06,0],"ti":[0.009,-0.054,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":114,"s":[597.648,600.176,0],"to":[-0.009,0.054,0],"ti":[0.007,-0.048,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":115,"s":[597.624,600.33,0],"to":[-0.007,0.048,0],"ti":[0.005,-0.042,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.18},"t":116,"s":[597.606,600.466,0],"to":[-0.005,0.042,0],"ti":[0.002,-0.036,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.184},"t":117,"s":[597.596,600.583,0],"to":[-0.002,0.036,0],"ti":[0,-0.029,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.189},"t":118,"s":[597.592,600.681,0],"to":[0,0.029,0],"ti":[-0.002,-0.022,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.197},"t":119,"s":[597.595,600.758,0],"to":[0.002,0.022,0],"ti":[-0.004,-0.015,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.21},"t":120,"s":[597.605,600.814,0],"to":[0.004,0.015,0],"ti":[-0.006,-0.007,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.206},"t":121,"s":[597.621,600.847,0],"to":[0.006,0.007,0],"ti":[-0.008,0.001,0]},{"i":{"x":0.833,"y":0.782},"o":{"x":0.167,"y":0.15},"t":122,"s":[597.643,600.857,0],"to":[0.008,-0.001,0],"ti":[-0.01,0.009,0]},{"i":{"x":0.833,"y":0.794},"o":{"x":0.167,"y":0.135},"t":123,"s":[597.671,600.844,0],"to":[0.01,-0.009,0],"ti":[-0.012,0.017,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.14},"t":124,"s":[597.705,600.805,0],"to":[0.012,-0.017,0],"ti":[-0.014,0.026,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.145},"t":125,"s":[597.744,600.741,0],"to":[0.014,-0.026,0],"ti":[-0.015,0.035,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.149},"t":126,"s":[597.787,600.65,0],"to":[0.015,-0.035,0],"ti":[-0.017,0.044,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.152},"t":127,"s":[597.836,600.533,0],"to":[0.017,-0.044,0],"ti":[-0.018,0.053,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.154},"t":128,"s":[597.889,600.387,0],"to":[0.018,-0.053,0],"ti":[-0.019,0.063,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.155},"t":129,"s":[597.945,600.212,0],"to":[0.019,-0.063,0],"ti":[-0.018,0.069,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.166},"t":130,"s":[598.005,600.008,0],"to":[0.018,-0.069,0],"ti":[-0.014,0.068,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":131,"s":[598.055,599.799,0],"to":[0.014,-0.068,0],"ti":[-0.008,0.064,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":132,"s":[598.087,599.601,0],"to":[0.008,-0.064,0],"ti":[-0.003,0.06,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":133,"s":[598.102,599.415,0],"to":[0.003,-0.06,0],"ti":[0.002,0.057,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":134,"s":[598.102,599.24,0],"to":[-0.002,-0.057,0],"ti":[0.007,0.053,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.172},"t":135,"s":[598.088,599.076,0],"to":[-0.007,-0.053,0],"ti":[0.011,0.049,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":136,"s":[598.06,598.923,0],"to":[-0.011,-0.049,0],"ti":[0.015,0.045,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":137,"s":[598.021,598.782,0],"to":[-0.015,-0.045,0],"ti":[0.018,0.042,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":138,"s":[597.971,598.652,0],"to":[-0.018,-0.042,0],"ti":[0.021,0.038,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":139,"s":[597.911,598.533,0],"to":[-0.021,-0.038,0],"ti":[0.024,0.034,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.17},"t":140,"s":[597.843,598.425,0],"to":[-0.024,-0.034,0],"ti":[0.026,0.031,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":141,"s":[597.767,598.328,0],"to":[-0.026,-0.031,0],"ti":[0.028,0.027,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":142,"s":[597.685,598.242,0],"to":[-0.028,-0.027,0],"ti":[0.03,0.023,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.169},"t":143,"s":[597.596,598.166,0],"to":[-0.03,-0.023,0],"ti":[0.032,0.02,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":144,"s":[597.503,598.101,0],"to":[-0.032,-0.02,0],"ti":[0.033,0.017,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":145,"s":[597.406,598.046,0],"to":[-0.033,-0.017,0],"ti":[0.034,0.013,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":146,"s":[597.307,598.001,0],"to":[-0.034,-0.013,0],"ti":[0.034,0.01,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":147,"s":[597.205,597.966,0],"to":[-0.034,-0.01,0],"ti":[0.034,0.007,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":148,"s":[597.102,597.94,0],"to":[-0.034,-0.007,0],"ti":[0.035,0.004,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":149,"s":[596.998,597.924,0],"to":[-0.035,-0.004,0],"ti":[0.034,0.001,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":150,"s":[596.894,597.916,0],"to":[-0.034,-0.001,0],"ti":[0.034,-0.002,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":151,"s":[596.792,597.918,0],"to":[-0.034,0.002,0],"ti":[0.033,-0.004,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":152,"s":[596.691,597.927,0],"to":[-0.033,0.004,0],"ti":[0.032,-0.007,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":153,"s":[596.593,597.944,0],"to":[-0.032,0.007,0],"ti":[0.031,-0.01,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":154,"s":[596.497,597.969,0],"to":[-0.031,0.01,0],"ti":[0.03,-0.012,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":155,"s":[596.406,598.001,0],"to":[-0.03,0.012,0],"ti":[0.028,-0.014,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":156,"s":[596.318,598.04,0],"to":[-0.028,0.014,0],"ti":[0.027,-0.016,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":157,"s":[596.235,598.085,0],"to":[-0.027,0.016,0],"ti":[0.025,-0.018,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":158,"s":[596.158,598.136,0],"to":[-0.025,0.018,0],"ti":[0.023,-0.02,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":159,"s":[596.086,598.193,0],"to":[-0.023,0.02,0],"ti":[0.021,-0.021,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":160,"s":[596.02,598.254,0],"to":[-0.021,0.021,0],"ti":[0.018,-0.023,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":161,"s":[595.961,598.32,0],"to":[-0.018,0.023,0],"ti":[0.016,-0.024,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":162,"s":[595.909,598.389,0],"to":[-0.016,0.024,0],"ti":[0.014,-0.025,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":163,"s":[595.865,598.462,0],"to":[-0.014,0.025,0],"ti":[0.011,-0.026,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":164,"s":[595.828,598.538,0],"to":[-0.011,0.026,0],"ti":[0.008,-0.026,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":165,"s":[595.799,598.615,0],"to":[-0.008,0.026,0],"ti":[0.005,-0.027,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":166,"s":[595.779,598.694,0],"to":[-0.005,0.027,0],"ti":[0.002,-0.027,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":167,"s":[595.768,598.774,0],"to":[-0.002,0.027,0],"ti":[-0.001,-0.027,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[595.765,598.854,0],"to":[0.001,0.027,0],"ti":[-0.004,-0.026,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[595.771,598.934,0],"to":[0.004,0.026,0],"ti":[-0.007,-0.026,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":170,"s":[595.787,599.013,0],"to":[0.007,0.026,0],"ti":[-0.01,-0.025,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.166},"t":171,"s":[595.812,599.09,0],"to":[0.01,0.025,0],"ti":[-0.013,-0.024,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.165},"t":172,"s":[595.847,599.164,0],"to":[0.013,0.024,0],"ti":[-0.016,-0.023,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":173,"s":[595.891,599.235,0],"to":[0.016,0.023,0],"ti":[-0.02,-0.021,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":174,"s":[595.944,599.301,0],"to":[0.02,0.021,0],"ti":[-0.023,-0.02,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.163},"t":175,"s":[596.008,599.363,0],"to":[0.023,0.02,0],"ti":[-0.026,-0.018,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.163},"t":176,"s":[596.081,599.419,0],"to":[0.026,0.018,0],"ti":[-0.029,-0.015,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.163},"t":177,"s":[596.163,599.469,0],"to":[0.029,0.015,0],"ti":[-0.032,-0.013,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.162},"t":178,"s":[596.256,599.511,0],"to":[0.032,0.013,0],"ti":[-0.035,-0.01,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.162},"t":179,"s":[596.357,599.545,0],"to":[0.035,0.01,0],"ti":[-0.039,-0.007,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.162},"t":180,"s":[596.468,599.57,0],"to":[0.039,0.007,0],"ti":[-0.042,-0.003,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":181,"s":[596.588,599.585,0],"to":[0.042,0.003,0],"ti":[-0.045,0.001,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":182,"s":[596.718,599.589,0],"to":[0.045,-0.001,0],"ti":[-0.047,0.005,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":183,"s":[596.855,599.581,0],"to":[0.047,-0.005,0],"ti":[-0.05,0.009,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":184,"s":[597.002,599.56,0],"to":[0.05,-0.009,0],"ti":[-0.053,0.014,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":185,"s":[597.157,599.525,0],"to":[0.053,-0.014,0],"ti":[-0.056,0.019,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":186,"s":[597.319,599.475,0],"to":[0.056,-0.019,0],"ti":[-0.058,0.025,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":187,"s":[597.49,599.41,0],"to":[0.058,-0.025,0],"ti":[-0.06,0.03,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":188,"s":[597.667,599.327,0],"to":[0.06,-0.03,0],"ti":[-0.063,0.037,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":189,"s":[597.852,599.227,0],"to":[0.063,-0.037,0],"ti":[-0.066,0.042,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":190,"s":[598.043,599.107,0],"to":[0.066,-0.042,0],"ti":[-0.07,0.045,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":191,"s":[598.246,598.976,0],"to":[0.07,-0.045,0],"ti":[-0.075,0.046,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.162},"t":192,"s":[598.465,598.839,0],"to":[0.075,-0.046,0],"ti":[-0.079,0.048,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":193,"s":[598.698,598.698,0],"to":[0.079,-0.048,0],"ti":[-0.083,0.048,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":194,"s":[598.941,598.554,0],"to":[0.083,-0.048,0],"ti":[-0.086,0.049,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.164},"t":195,"s":[599.196,598.407,0],"to":[0.086,-0.049,0],"ti":[-0.089,0.049,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.165},"t":196,"s":[599.458,598.26,0],"to":[0.089,-0.049,0],"ti":[-0.091,0.049,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":197,"s":[599.727,598.112,0],"to":[0.091,-0.049,0],"ti":[-0.092,0.049,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":198,"s":[600.002,597.965,0],"to":[0.092,-0.049,0],"ti":[-0.093,0.048,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":199,"s":[600.28,597.82,0],"to":[0.093,-0.048,0],"ti":[-0.094,0.047,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":200,"s":[600.561,597.677,0],"to":[0.094,-0.047,0],"ti":[-0.094,0.046,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":201,"s":[600.843,597.538,0],"to":[0.094,-0.046,0],"ti":[-0.094,0.044,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":202,"s":[601.124,597.403,0],"to":[0.094,-0.044,0],"ti":[-0.093,0.042,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":203,"s":[601.405,597.273,0],"to":[0.093,-0.042,0],"ti":[-0.092,0.041,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.168},"t":204,"s":[601.682,597.148,0],"to":[0.092,-0.041,0],"ti":[-0.091,0.038,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":205,"s":[601.956,597.029,0],"to":[0.091,-0.038,0],"ti":[-0.089,0.036,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":206,"s":[602.226,596.918,0],"to":[0.089,-0.036,0],"ti":[-0.087,0.033,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.169},"t":207,"s":[602.489,596.813,0],"to":[0.087,-0.033,0],"ti":[-0.084,0.031,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":208,"s":[602.746,596.717,0],"to":[0.084,-0.031,0],"ti":[-0.082,0.028,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.17},"t":209,"s":[602.995,596.628,0],"to":[0.082,-0.028,0],"ti":[-0.079,0.025,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.171},"t":210,"s":[603.237,596.549,0],"to":[0.079,-0.025,0],"ti":[-0.076,0.022,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":211,"s":[603.469,596.478,0],"to":[0.076,-0.022,0],"ti":[-0.072,0.019,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.171},"t":212,"s":[603.691,596.417,0],"to":[0.072,-0.019,0],"ti":[-0.069,0.016,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":213,"s":[603.903,596.365,0],"to":[0.069,-0.016,0],"ti":[-0.065,0.012,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":214,"s":[604.104,596.323,0],"to":[0.065,-0.012,0],"ti":[-0.061,0.009,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":215,"s":[604.293,596.291,0],"to":[0.061,-0.009,0],"ti":[-0.057,0.006,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":216,"s":[604.471,596.269,0],"to":[0.057,-0.006,0],"ti":[-0.053,0.002,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":217,"s":[604.636,596.258,0],"to":[0.053,-0.002,0],"ti":[-0.049,-0.001,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":218,"s":[604.788,596.257,0],"to":[0.049,0.001,0],"ti":[-0.044,-0.005,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":219,"s":[604.928,596.265,0],"to":[0.044,0.005,0],"ti":[-0.04,-0.008,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.175},"t":220,"s":[605.054,596.285,0],"to":[0.04,0.008,0],"ti":[-0.035,-0.011,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.174},"t":221,"s":[605.167,596.314,0],"to":[0.035,0.011,0],"ti":[-0.031,-0.015,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.173},"t":222,"s":[605.267,596.353,0],"to":[0.031,0.015,0],"ti":[-0.027,-0.018,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.172},"t":223,"s":[605.353,596.402,0],"to":[0.027,0.018,0],"ti":[-0.022,-0.021,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.17},"t":224,"s":[605.426,596.461,0],"to":[0.022,0.021,0],"ti":[-0.018,-0.024,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":225,"s":[605.486,596.529,0],"to":[0.018,0.024,0],"ti":[-0.013,-0.027,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.165},"t":226,"s":[605.532,596.606,0],"to":[0.013,0.027,0],"ti":[-0.009,-0.03,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.163},"t":227,"s":[605.565,596.692,0],"to":[0.009,0.03,0],"ti":[-0.005,-0.033,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.162},"t":228,"s":[605.586,596.786,0],"to":[0.005,0.033,0],"ti":[-0.001,-0.035,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.161},"t":229,"s":[605.594,596.887,0],"to":[0.001,0.035,0],"ti":[0.003,-0.037,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":230,"s":[605.589,596.996,0],"to":[-0.003,0.037,0],"ti":[0.007,-0.04,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":231,"s":[605.574,597.112,0],"to":[-0.007,0.04,0],"ti":[0.011,-0.042,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.162},"t":232,"s":[605.547,597.234,0],"to":[-0.011,0.042,0],"ti":[0.014,-0.043,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":233,"s":[605.509,597.361,0],"to":[-0.014,0.043,0],"ti":[0.017,-0.045,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":234,"s":[605.462,597.493,0],"to":[-0.017,0.045,0],"ti":[0.02,-0.046,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.163},"t":235,"s":[605.405,597.629,0],"to":[-0.02,0.046,0],"ti":[0.023,-0.047,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":236,"s":[605.34,597.769,0],"to":[-0.023,0.047,0],"ti":[0.026,-0.048,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.164},"t":237,"s":[605.266,597.911,0],"to":[-0.026,0.048,0],"ti":[0.028,-0.048,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.165},"t":238,"s":[605.186,598.055,0],"to":[-0.028,0.048,0],"ti":[0.014,-0.024,0]},{"t":239,"s":[605.1,598.199,0]}],"ix":2,"l":2},"a":{"a":0,"k":[600,600,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"hands","refId":"comp_7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[600,600,0],"ix":2,"l":2},"a":{"a":0,"k":[600,600,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_1","nm":"blood bag","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[874.125,538.438,0],"ix":2,"l":2},"a":{"a":0,"k":[274.125,-61.563,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[274.625,-79],[274.5,-51.875]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.741176470588,0.674509803922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":15,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.879],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.713],"y":[0]},"t":13.334,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26.666,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.879],"y":[0]},"t":60,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.713],"y":[0]},"t":73.334,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86.666,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.879],"y":[0]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.713],"y":[0]},"t":133.334,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146.666,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.879],"y":[0]},"t":180,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.713],"y":[0]},"t":193.334,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":206.666,"s":[100]},{"t":220,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.587],"y":[1]},"o":{"x":[0.383],"y":[0.292]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13.334,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26.666,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[0]},{"i":{"x":[0.587],"y":[1]},"o":{"x":[0.383],"y":[0.292]},"t":60,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73.334,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86.666,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[0]},{"i":{"x":[0.587],"y":[1]},"o":{"x":[0.383],"y":[0.292]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133.334,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146.666,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[0]},{"i":{"x":[0.587],"y":[1]},"o":{"x":[0.383],"y":[0.292]},"t":180,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":193.334,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":206.666,"s":[100]},{"t":220,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":240,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"Layer 3","refId":"image_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[885.885,544.327,0],"ix":2,"l":2},"a":{"a":0,"k":[50.24,65.869,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"blood shape","refId":"image_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[854.831,547.736,0],"ix":2,"l":2},"a":{"a":0,"k":[143.781,114.181,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_2","nm":"plus shape","fr":60,"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"plus","refId":"image_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[833.096,394.254,0],"ix":2,"l":2},"a":{"a":0,"k":[30.567,30.566,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"plus shape","refId":"image_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[833.096,394.254,0],"ix":2,"l":2},"a":{"a":0,"k":[66.248,66.249,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_3","nm":"testube","fr":60,"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"testube","refId":"image_6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[851.853,732.567,0],"ix":2,"l":2},"a":{"a":0,"k":[10.899,20.493,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"water drop","refId":"image_7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[851.854,702.709,0],"ix":2,"l":2},"a":{"a":0,"k":[3.805,5.528,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"testube shape","refId":"image_8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[850.892,726.176,0],"ix":2,"l":2},"a":{"a":0,"k":[44.231,44.23,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_4","nm":"check","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[274.5,699.625,0],"ix":2,"l":2},"a":{"a":0,"k":[-325.5,99.625,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-340.25,99.625],[-330,109.75],[-310.75,90]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.741175991881,0.674509983437,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":2,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[0]},{"i":{"x":[0.833],"y":[0.991]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.643]},"o":{"x":[0.167],"y":[0.083]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[0.762]},"o":{"x":[0.167],"y":[0.109]},"t":11,"s":[0.106]},{"i":{"x":[0.833],"y":[0.785]},"o":{"x":[0.167],"y":[0.128]},"t":12,"s":[0.452]},{"i":{"x":[0.833],"y":[0.794]},"o":{"x":[0.167],"y":[0.136]},"t":13,"s":[1.095]},{"i":{"x":[0.833],"y":[0.799]},"o":{"x":[0.167],"y":[0.14]},"t":14,"s":[2.108]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.167],"y":[0.142]},"t":15,"s":[3.596]},{"i":{"x":[0.833],"y":[0.803]},"o":{"x":[0.167],"y":[0.143]},"t":16,"s":[5.704]},{"i":{"x":[0.833],"y":[0.806]},"o":{"x":[0.167],"y":[0.144]},"t":17,"s":[8.63]},{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.146]},"t":18,"s":[12.633]},{"i":{"x":[0.833],"y":[0.824]},"o":{"x":[0.167],"y":[0.15]},"t":19,"s":[17.957]},{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.158]},"t":20,"s":[24.59]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.168]},"t":21,"s":[31.96]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.176]},"t":22,"s":[39.178]},{"i":{"x":[0.833],"y":[0.845]},"o":{"x":[0.167],"y":[0.179]},"t":23,"s":[45.679]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.18]},"t":24,"s":[51.339]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.179]},"t":25,"s":[56.239]},{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.178]},"t":26,"s":[60.502]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.177]},"t":27,"s":[64.243]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.177]},"t":28,"s":[67.554]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.176]},"t":29,"s":[70.508]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.176]},"t":30,"s":[73.159]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":31,"s":[75.554]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.175]},"t":32,"s":[77.727]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.175]},"t":33,"s":[79.706]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":34,"s":[81.515]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":35,"s":[83.174]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":36,"s":[84.697]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":37,"s":[86.1]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":38,"s":[87.392]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":39,"s":[88.584]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":40,"s":[89.685]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":41,"s":[90.702]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":42,"s":[91.641]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":43,"s":[92.508]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":44,"s":[93.309]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":45,"s":[94.047]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":46,"s":[94.728]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":47,"s":[95.354]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.174]},"t":48,"s":[95.928]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":49,"s":[96.455]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":50,"s":[96.936]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":51,"s":[97.375]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.176]},"t":52,"s":[97.772]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.176]},"t":53,"s":[98.131]},{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.177]},"t":54,"s":[98.453]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.178]},"t":55,"s":[98.741]},{"i":{"x":[0.833],"y":[0.845]},"o":{"x":[0.167],"y":[0.179]},"t":56,"s":[98.995]},{"i":{"x":[0.833],"y":[0.846]},"o":{"x":[0.167],"y":[0.18]},"t":57,"s":[99.217]},{"i":{"x":[0.833],"y":[0.848]},"o":{"x":[0.167],"y":[0.182]},"t":58,"s":[99.409]},{"i":{"x":[0.833],"y":[0.85]},"o":{"x":[0.167],"y":[0.184]},"t":59,"s":[99.572]},{"i":{"x":[0.833],"y":[0.853]},"o":{"x":[0.167],"y":[0.187]},"t":60,"s":[99.706]},{"i":{"x":[0.833],"y":[0.858]},"o":{"x":[0.167],"y":[0.193]},"t":61,"s":[99.815]},{"i":{"x":[0.833],"y":[0.868]},"o":{"x":[0.167],"y":[0.202]},"t":62,"s":[99.897]},{"i":{"x":[0.833],"y":[0.889]},"o":{"x":[0.167],"y":[0.225]},"t":63,"s":[99.955]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.338]},"t":64,"s":[99.989]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0.001]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[9.325]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.083]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[0.762]},"o":{"x":[0.167],"y":[-23.946]},"t":111,"s":[0.106]},{"i":{"x":[0.833],"y":[0.785]},"o":{"x":[0.167],"y":[0.128]},"t":112,"s":[0.452]},{"i":{"x":[0.833],"y":[0.794]},"o":{"x":[0.167],"y":[0.136]},"t":113,"s":[1.095]},{"i":{"x":[0.833],"y":[0.799]},"o":{"x":[0.167],"y":[0.14]},"t":114,"s":[2.108]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.167],"y":[0.142]},"t":115,"s":[3.596]},{"i":{"x":[0.833],"y":[0.803]},"o":{"x":[0.167],"y":[0.143]},"t":116,"s":[5.704]},{"i":{"x":[0.833],"y":[0.806]},"o":{"x":[0.167],"y":[0.144]},"t":117,"s":[8.63]},{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.146]},"t":118,"s":[12.633]},{"i":{"x":[0.833],"y":[0.824]},"o":{"x":[0.167],"y":[0.15]},"t":119,"s":[17.957]},{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.158]},"t":120,"s":[24.59]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.168]},"t":121,"s":[31.96]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.176]},"t":122,"s":[39.178]},{"i":{"x":[0.833],"y":[0.845]},"o":{"x":[0.167],"y":[0.179]},"t":123,"s":[45.679]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.18]},"t":124,"s":[51.339]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.179]},"t":125,"s":[56.239]},{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.178]},"t":126,"s":[60.502]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.177]},"t":127,"s":[64.243]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.177]},"t":128,"s":[67.554]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.176]},"t":129,"s":[70.508]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.176]},"t":130,"s":[73.159]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":131,"s":[75.554]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.175]},"t":132,"s":[77.727]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.175]},"t":133,"s":[79.706]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":134,"s":[81.515]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":135,"s":[83.174]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":136,"s":[84.697]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":137,"s":[86.1]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":138,"s":[87.392]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":139,"s":[88.584]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":140,"s":[89.685]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":141,"s":[90.702]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":142,"s":[91.641]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":143,"s":[92.508]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":144,"s":[93.309]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":145,"s":[94.047]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":146,"s":[94.728]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":147,"s":[95.354]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.174]},"t":148,"s":[95.928]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":149,"s":[96.455]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":150,"s":[96.936]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":151,"s":[97.375]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.176]},"t":152,"s":[97.772]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.176]},"t":153,"s":[98.131]},{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.177]},"t":154,"s":[98.453]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.178]},"t":155,"s":[98.741]},{"i":{"x":[0.833],"y":[0.845]},"o":{"x":[0.167],"y":[0.179]},"t":156,"s":[98.995]},{"i":{"x":[0.833],"y":[0.846]},"o":{"x":[0.167],"y":[0.18]},"t":157,"s":[99.217]},{"i":{"x":[0.833],"y":[0.848]},"o":{"x":[0.167],"y":[0.182]},"t":158,"s":[99.409]},{"i":{"x":[0.833],"y":[0.85]},"o":{"x":[0.167],"y":[0.184]},"t":159,"s":[99.572]},{"i":{"x":[0.833],"y":[0.853]},"o":{"x":[0.167],"y":[0.187]},"t":160,"s":[99.706]},{"i":{"x":[0.833],"y":[0.858]},"o":{"x":[0.167],"y":[0.193]},"t":161,"s":[99.815]},{"i":{"x":[0.833],"y":[0.868]},"o":{"x":[0.167],"y":[0.202]},"t":162,"s":[99.897]},{"i":{"x":[0.833],"y":[0.889]},"o":{"x":[0.167],"y":[0.225]},"t":163,"s":[99.955]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.338]},"t":164,"s":[99.989]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0.001]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":179,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":181,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":182,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":183,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":184,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":185,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":186,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":188,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":189,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":190,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":191,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":192,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":193,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":195,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":196,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":197,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":198,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":199,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":200,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":202,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":203,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":204,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":205,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":206,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":207,"s":[100]},{"i":{"x":[0.833],"y":[9.333]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[100]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.083]},"t":209,"s":[100]},{"i":{"x":[0.833],"y":[0.643]},"o":{"x":[0.167],"y":[-78.827]},"t":210,"s":[0]},{"i":{"x":[0.833],"y":[0.762]},"o":{"x":[0.167],"y":[0.109]},"t":211,"s":[0.106]},{"i":{"x":[0.833],"y":[0.785]},"o":{"x":[0.167],"y":[0.128]},"t":212,"s":[0.452]},{"i":{"x":[0.833],"y":[0.794]},"o":{"x":[0.167],"y":[0.136]},"t":213,"s":[1.095]},{"i":{"x":[0.833],"y":[0.799]},"o":{"x":[0.167],"y":[0.14]},"t":214,"s":[2.108]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.167],"y":[0.142]},"t":215,"s":[3.596]},{"i":{"x":[0.833],"y":[0.803]},"o":{"x":[0.167],"y":[0.143]},"t":216,"s":[5.704]},{"i":{"x":[0.833],"y":[0.806]},"o":{"x":[0.167],"y":[0.144]},"t":217,"s":[8.63]},{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.146]},"t":218,"s":[12.633]},{"i":{"x":[0.833],"y":[0.824]},"o":{"x":[0.167],"y":[0.15]},"t":219,"s":[17.957]},{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.158]},"t":220,"s":[24.59]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.168]},"t":221,"s":[31.96]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.176]},"t":222,"s":[39.178]},{"i":{"x":[0.833],"y":[0.845]},"o":{"x":[0.167],"y":[0.179]},"t":223,"s":[45.679]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.18]},"t":224,"s":[51.339]},{"i":{"x":[0.833],"y":[0.844]},"o":{"x":[0.167],"y":[0.179]},"t":225,"s":[56.239]},{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.178]},"t":226,"s":[60.502]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.177]},"t":227,"s":[64.243]},{"i":{"x":[0.833],"y":[0.842]},"o":{"x":[0.167],"y":[0.177]},"t":228,"s":[67.554]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.176]},"t":229,"s":[70.508]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.176]},"t":230,"s":[73.159]},{"i":{"x":[0.833],"y":[0.841]},"o":{"x":[0.167],"y":[0.175]},"t":231,"s":[75.554]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.175]},"t":232,"s":[77.727]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.175]},"t":233,"s":[79.706]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":234,"s":[81.515]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":235,"s":[83.174]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":236,"s":[84.697]},{"i":{"x":[0.833],"y":[0.84]},"o":{"x":[0.167],"y":[0.174]},"t":237,"s":[86.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.174]},"t":238,"s":[87.392]},{"t":239,"s":[88.584]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":240,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"check/Doctor.ai","cl":"ai","tt":1,"tp":1,"refId":"image_9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[274.5,701.25,0],"ix":2,"l":2},"a":{"a":0,"k":[17.5,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"chech circle","refId":"image_10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[274.389,705.114,0],"ix":2,"l":2},"a":{"a":0,"k":[36.888,45.79,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":2,"nm":"chech","refId":"image_11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[274.389,700.321,0],"ix":2,"l":2},"a":{"a":0,"k":[81.085,81.085,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_5","nm":"heartbeat","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[332.625,534.875,0],"ix":2,"l":2},"a":{"a":0,"k":[-267.375,-65.125,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-333.5,-59],[-290.938,-58.563],[-282.5,-68.5],[-273.75,-44],[-263.25,-88.5],[-254.25,-47.75],[-247.25,-59.5],[-201.25,-59.5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.741175991881,0.674509983437,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":65,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":175,"s":[0]},{"t":220,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"t":220,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":240,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"Layer 21/Doctor.ai","cl":"ai","tt":1,"tp":1,"refId":"image_12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[332.25,537,0],"ix":2,"l":2},"a":{"a":0,"k":[64.5,24.5,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.731,0.731,0.667],"y":[1,1,1]},"o":{"x":[1,1,0.333],"y":[0,0,0]},"t":20,"s":[0,0,100]},{"t":30,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"heartbeat","refId":"image_13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[331.975,535.434,0],"ix":2,"l":2},"a":{"a":0,"k":[71.553,59.641,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[0,0,100]},{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.899,0.899,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":220,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":2,"nm":"big circle","refId":"image_14","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[334.488,532.948,0],"ix":2,"l":2},"a":{"a":0,"k":[118.266,118.266,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[0,0,100]},{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":40,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.899,0.899,0.333],"y":[0,0,0]},"t":200,"s":[100,100,100]},{"t":220,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":2,"nm":"medium circle","refId":"image_15","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[469.318,598.138,0],"ix":2,"l":2},"a":{"a":0,"k":[18.152,18.151,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":5,"s":[0,0,100]},{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":25,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.899,0.899,0.333],"y":[0,0,0]},"t":205,"s":[100,100,100]},{"t":225,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":2,"nm":"small circle","refId":"image_16","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[506.877,603.01,0],"ix":2,"l":2},"a":{"a":0,"k":[8.524,8.524,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.101,0.101,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.899,0.899,0.333],"y":[0,0,0]},"t":220,"s":[100,100,100]},{"t":240,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_6","nm":"particles","fr":60,"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"particle 4","refId":"image_17","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.167},"t":0,"s":[172.928,531.574,0],"to":[0.014,0.113,0],"ti":[-0.019,-0.189,0]},{"i":{"x":0.833,"y":0.89},"o":{"x":0.167,"y":0.208},"t":1,"s":[173.015,532.25,0],"to":[0.019,0.189,0],"ti":[-0.001,-0.1,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.341},"t":2,"s":[173.042,532.706,0],"to":[0.001,0.1,0],"ti":[-0.002,0.003,0]},{"i":{"x":0.833,"y":0.71},"o":{"x":0.167,"y":0.157},"t":3,"s":[173.022,532.85,0],"to":[0.002,-0.003,0],"ti":[-0.017,0.096,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.117},"t":4,"s":[173.054,532.686,0],"to":[0.017,-0.096,0],"ti":[-0.027,0.167,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.141},"t":5,"s":[173.126,532.277,0],"to":[0.027,-0.167,0],"ti":[-0.032,0.217,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.153},"t":6,"s":[173.218,531.686,0],"to":[0.032,-0.217,0],"ti":[-0.031,0.247,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.16},"t":7,"s":[173.315,530.976,0],"to":[0.031,-0.247,0],"ti":[-0.026,0.257,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.167},"t":8,"s":[173.402,530.207,0],"to":[0.026,-0.257,0],"ti":[-0.018,0.248,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.173},"t":9,"s":[173.47,529.435,0],"to":[0.018,-0.248,0],"ti":[-0.007,0.221,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.182},"t":10,"s":[173.508,528.718,0],"to":[0.007,-0.221,0],"ti":[0.005,0.176,0]},{"i":{"x":0.833,"y":0.87},"o":{"x":0.167,"y":0.196},"t":11,"s":[173.512,528.109,0],"to":[-0.005,-0.176,0],"ti":[0.018,0.114,0]},{"i":{"x":0.833,"y":0.874},"o":{"x":0.167,"y":0.234},"t":12,"s":[173.478,527.661,0],"to":[-0.018,-0.114,0],"ti":[0.03,0.035,0]},{"i":{"x":0.833,"y":0.709},"o":{"x":0.167,"y":0.246},"t":13,"s":[173.406,527.425,0],"to":[-0.03,-0.035,0],"ti":[0.053,-0.043,0]},{"i":{"x":0.833,"y":0.781},"o":{"x":0.167,"y":0.117},"t":14,"s":[173.297,527.449,0],"to":[-0.053,0.043,0],"ti":[0.116,-0.068,0]},{"i":{"x":0.833,"y":0.806},"o":{"x":0.167,"y":0.135},"t":15,"s":[173.086,527.683,0],"to":[-0.116,0.068,0],"ti":[0.194,-0.048,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.146},"t":16,"s":[172.6,527.859,0],"to":[-0.194,0.048,0],"ti":[0.242,-0.032,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.157},"t":17,"s":[171.924,527.974,0],"to":[-0.242,0.032,0],"ti":[0.263,-0.021,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.164},"t":18,"s":[171.146,528.048,0],"to":[-0.263,0.021,0],"ti":[0.26,-0.016,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.171},"t":19,"s":[170.345,528.098,0],"to":[-0.26,0.016,0],"ti":[0.237,-0.016,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.178},"t":20,"s":[169.586,528.142,0],"to":[-0.237,0.016,0],"ti":[0.199,-0.021,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.187},"t":21,"s":[168.922,528.194,0],"to":[-0.199,0.021,0],"ti":[0.149,-0.03,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.2},"t":22,"s":[168.393,528.267,0],"to":[-0.149,0.03,0],"ti":[0.092,-0.043,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.214},"t":23,"s":[168.029,528.374,0],"to":[-0.092,0.043,0],"ti":[0.031,-0.059,0]},{"i":{"x":0.833,"y":0.79},"o":{"x":0.167,"y":0.179},"t":24,"s":[167.844,528.525,0],"to":[-0.031,0.059,0],"ti":[-0.029,-0.079,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.138},"t":25,"s":[167.844,528.73,0],"to":[0.029,0.079,0],"ti":[-0.084,-0.088,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.147},"t":26,"s":[168.019,528.996,0],"to":[0.084,0.088,0],"ti":[-0.125,-0.051,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.165},"t":27,"s":[168.346,529.259,0],"to":[0.125,0.051,0],"ti":[-0.147,0.024,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.155},"t":28,"s":[168.767,529.3,0],"to":[0.147,-0.024,0],"ti":[-0.153,0.094,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.153},"t":29,"s":[169.227,529.118,0],"to":[0.153,-0.094,0],"ti":[-0.145,0.154,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.156},"t":30,"s":[169.683,528.738,0],"to":[0.145,-0.154,0],"ti":[-0.127,0.203,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.159},"t":31,"s":[170.097,528.193,0],"to":[0.127,-0.203,0],"ti":[-0.102,0.238,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.162},"t":32,"s":[170.446,527.521,0],"to":[0.102,-0.238,0],"ti":[-0.074,0.256,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.167},"t":33,"s":[170.711,526.768,0],"to":[0.074,-0.256,0],"ti":[-0.045,0.255,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.172},"t":34,"s":[170.888,525.988,0],"to":[0.045,-0.255,0],"ti":[-0.018,0.232,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.18},"t":35,"s":[170.979,525.24,0],"to":[0.018,-0.232,0],"ti":[0.003,0.186,0]},{"i":{"x":0.833,"y":0.878},"o":{"x":0.167,"y":0.198},"t":36,"s":[170.996,524.594,0],"to":[-0.003,-0.186,0],"ti":[0.014,0.114,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.262},"t":37,"s":[170.963,524.123,0],"to":[-0.014,-0.114,0],"ti":[0.012,0.007,0]},{"i":{"x":0.833,"y":0.621},"o":{"x":0.167,"y":0.187},"t":38,"s":[170.911,523.91,0],"to":[-0.012,-0.007,0],"ti":[-0.006,-0.133,0]},{"i":{"x":0.833,"y":0.793},"o":{"x":0.167,"y":0.107},"t":39,"s":[170.89,524.08,0],"to":[0.006,0.133,0],"ti":[-0.03,-0.259,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.14},"t":40,"s":[170.949,524.709,0],"to":[0.03,0.259,0],"ti":[-0.047,-0.333,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.155},"t":41,"s":[171.069,525.636,0],"to":[0.047,0.333,0],"ti":[-0.058,-0.36,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.165},"t":42,"s":[171.231,526.708,0],"to":[0.058,0.36,0],"ti":[-0.064,-0.348,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.174},"t":43,"s":[171.418,527.797,0],"to":[0.064,0.348,0],"ti":[-0.064,-0.303,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.184},"t":44,"s":[171.612,528.794,0],"to":[0.064,0.303,0],"ti":[-0.059,-0.234,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.199},"t":45,"s":[171.8,529.615,0],"to":[0.059,0.234,0],"ti":[-0.05,-0.147,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.236},"t":46,"s":[171.966,530.197,0],"to":[0.05,0.147,0],"ti":[-0.037,-0.051,0]},{"i":{"x":0.833,"y":0.714},"o":{"x":0.167,"y":0.314},"t":47,"s":[172.098,530.5,0],"to":[0.037,0.051,0],"ti":[-0.02,0.047,0]},{"i":{"x":0.833,"y":0.758},"o":{"x":0.167,"y":0.118},"t":48,"s":[172.185,530.505,0],"to":[0.02,-0.047,0],"ti":[0,0.14,0]},{"i":{"x":0.833,"y":0.804},"o":{"x":0.167,"y":0.127},"t":49,"s":[172.218,530.217,0],"to":[0,-0.14,0],"ti":[0.023,0.217,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.145},"t":50,"s":[172.188,529.663,0],"to":[-0.023,-0.217,0],"ti":[0.049,0.255,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.161},"t":51,"s":[172.08,528.918,0],"to":[-0.049,-0.255,0],"ti":[0.066,0.255,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.17},"t":52,"s":[171.896,528.135,0],"to":[-0.066,-0.255,0],"ti":[0.067,0.235,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.177},"t":53,"s":[171.687,527.388,0],"to":[-0.067,-0.235,0],"ti":[0.055,0.2,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.186},"t":54,"s":[171.497,526.728,0],"to":[-0.055,-0.2,0],"ti":[0.033,0.156,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.198},"t":55,"s":[171.359,526.189,0],"to":[-0.033,-0.156,0],"ti":[0.005,0.108,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.214},"t":56,"s":[171.298,525.792,0],"to":[-0.005,-0.108,0],"ti":[-0.025,0.062,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.205},"t":57,"s":[171.326,525.539,0],"to":[0.025,-0.062,0],"ti":[-0.054,0.023,0]},{"i":{"x":0.833,"y":0.806},"o":{"x":0.167,"y":0.154},"t":58,"s":[171.447,525.419,0],"to":[0.054,-0.023,0],"ti":[-0.08,-0.004,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.146},"t":59,"s":[171.652,525.402,0],"to":[0.08,0.004,0],"ti":[-0.098,-0.014,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.156},"t":60,"s":[171.925,525.444,0],"to":[0.098,0.014,0],"ti":[-0.104,-0.001,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.166},"t":61,"s":[172.237,525.485,0],"to":[0.104,0.001,0],"ti":[-0.095,0.024,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.178},"t":62,"s":[172.551,525.448,0],"to":[0.095,-0.024,0],"ti":[-0.064,0.008,0]},{"i":{"x":0.833,"y":0.789},"o":{"x":0.167,"y":0.234},"t":63,"s":[172.806,525.338,0],"to":[0.064,-0.008,0],"ti":[-0.02,-0.049,0]},{"i":{"x":0.833,"y":0.776},"o":{"x":0.167,"y":0.138},"t":64,"s":[172.932,525.402,0],"to":[0.02,0.049,0],"ti":[0.024,-0.1,0]},{"i":{"x":0.833,"y":0.803},"o":{"x":0.167,"y":0.133},"t":65,"s":[172.924,525.633,0],"to":[-0.024,0.1,0],"ti":[0.065,-0.142,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.144},"t":66,"s":[172.788,526.004,0],"to":[-0.065,0.142,0],"ti":[0.101,-0.172,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.152},"t":67,"s":[172.534,526.483,0],"to":[-0.101,0.172,0],"ti":[0.129,-0.19,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.159},"t":68,"s":[172.182,527.036,0],"to":[-0.129,0.19,0],"ti":[0.148,-0.196,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.164},"t":69,"s":[171.759,527.626,0],"to":[-0.148,0.196,0],"ti":[0.154,-0.188,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.171},"t":70,"s":[171.297,528.213,0],"to":[-0.154,0.188,0],"ti":[0.146,-0.166,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.18},"t":71,"s":[170.836,528.755,0],"to":[-0.146,0.166,0],"ti":[0.121,-0.128,0]},{"i":{"x":0.833,"y":0.88},"o":{"x":0.167,"y":0.199},"t":72,"s":[170.422,529.206,0],"to":[-0.121,0.128,0],"ti":[0.077,-0.073,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.271},"t":73,"s":[170.11,529.52,0],"to":[-0.077,0.073,0],"ti":[0.018,-0.002,0]},{"i":{"x":0.833,"y":0.676},"o":{"x":0.167,"y":0.213},"t":74,"s":[169.96,529.645,0],"to":[-0.018,0.002,0],"ti":[-0.026,0.077,0]},{"i":{"x":0.833,"y":0.793},"o":{"x":0.167,"y":0.112},"t":75,"s":[170,529.532,0],"to":[0.026,-0.077,0],"ti":[-0.042,0.145,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.139},"t":76,"s":[170.117,529.186,0],"to":[0.042,-0.145,0],"ti":[-0.042,0.197,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.151},"t":77,"s":[170.255,528.661,0],"to":[0.042,-0.197,0],"ti":[-0.031,0.232,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.158},"t":78,"s":[170.372,528.006,0],"to":[0.031,-0.232,0],"ti":[-0.011,0.251,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.163},"t":79,"s":[170.44,527.271,0],"to":[0.011,-0.251,0],"ti":[0.015,0.255,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.167},"t":80,"s":[170.436,526.502,0],"to":[-0.015,-0.255,0],"ti":[0.043,0.245,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.171},"t":81,"s":[170.35,525.742,0],"to":[-0.043,-0.245,0],"ti":[0.07,0.222,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.174},"t":82,"s":[170.179,525.032,0],"to":[-0.07,-0.222,0],"ti":[0.093,0.187,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.179},"t":83,"s":[169.93,524.41,0],"to":[-0.093,-0.187,0],"ti":[0.109,0.14,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.184},"t":84,"s":[169.621,523.912,0],"to":[-0.109,-0.14,0],"ti":[0.114,0.082,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.191},"t":85,"s":[169.277,523.571,0],"to":[-0.114,-0.082,0],"ti":[0.103,0.023,0]},{"i":{"x":0.833,"y":0.868},"o":{"x":0.167,"y":0.195},"t":86,"s":[168.935,523.418,0],"to":[-0.103,-0.023,0],"ti":[0.07,-0.016,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.225},"t":87,"s":[168.657,523.434,0],"to":[-0.07,0.016,0],"ti":[0.023,-0.045,0]},{"i":{"x":0.833,"y":0.761},"o":{"x":0.167,"y":0.154},"t":88,"s":[168.518,523.515,0],"to":[-0.023,0.045,0],"ti":[-0.02,-0.089,0]},{"i":{"x":0.833,"y":0.788},"o":{"x":0.167,"y":0.128},"t":89,"s":[168.516,523.706,0],"to":[0.02,0.089,0],"ti":[-0.058,-0.143,0]},{"i":{"x":0.833,"y":0.804},"o":{"x":0.167,"y":0.137},"t":90,"s":[168.637,524.049,0],"to":[0.058,0.143,0],"ti":[-0.089,-0.202,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.145},"t":91,"s":[168.862,524.566,0],"to":[0.089,0.202,0],"ti":[-0.111,-0.26,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.151},"t":92,"s":[169.168,525.262,0],"to":[0.111,0.26,0],"ti":[-0.123,-0.31,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.156},"t":93,"s":[169.528,526.125,0],"to":[0.123,0.31,0],"ti":[-0.123,-0.347,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.161},"t":94,"s":[169.907,527.123,0],"to":[0.123,0.347,0],"ti":[-0.111,-0.366,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.166},"t":95,"s":[170.268,528.209,0],"to":[0.111,0.366,0],"ti":[-0.083,-0.359,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.173},"t":96,"s":[170.57,529.317,0],"to":[0.083,0.359,0],"ti":[-0.038,-0.321,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.184},"t":97,"s":[170.764,530.362,0],"to":[0.038,0.321,0],"ti":[0.007,-0.261,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.19},"t":98,"s":[170.799,531.244,0],"to":[-0.007,0.261,0],"ti":[-0.004,-0.22,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.172},"t":99,"s":[170.724,531.927,0],"to":[0.004,0.22,0],"ti":[-0.061,-0.195,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.174},"t":100,"s":[170.826,532.567,0],"to":[0.061,0.195,0],"ti":[-0.108,-0.148,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.177},"t":101,"s":[171.089,533.097,0],"to":[0.108,0.148,0],"ti":[-0.142,-0.085,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.172},"t":102,"s":[171.474,533.457,0],"to":[0.142,0.085,0],"ti":[-0.164,-0.013,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.163},"t":103,"s":[171.942,533.609,0],"to":[0.164,0.013,0],"ti":[-0.172,0.06,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.156},"t":104,"s":[172.455,533.537,0],"to":[0.172,-0.06,0],"ti":[-0.169,0.126,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.156},"t":105,"s":[172.976,533.251,0],"to":[0.169,-0.126,0],"ti":[-0.153,0.178,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.161},"t":106,"s":[173.467,532.782,0],"to":[0.153,-0.178,0],"ti":[-0.125,0.207,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.168},"t":107,"s":[173.892,532.185,0],"to":[0.125,-0.207,0],"ti":[-0.085,0.207,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.18},"t":108,"s":[174.215,531.538,0],"to":[0.085,-0.207,0],"ti":[-0.033,0.17,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.206},"t":109,"s":[174.4,530.941,0],"to":[0.033,-0.17,0],"ti":[0.031,0.108,0]},{"i":{"x":0.833,"y":0.776},"o":{"x":0.167,"y":0.199},"t":110,"s":[174.412,530.52,0],"to":[-0.031,-0.108,0],"ti":[0.1,0.092,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.133},"t":111,"s":[174.213,530.294,0],"to":[-0.1,-0.092,0],"ti":[0.157,0.121,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.148},"t":112,"s":[173.809,529.969,0],"to":[-0.157,-0.121,0],"ti":[0.191,0.139,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.158},"t":113,"s":[173.27,529.568,0],"to":[-0.191,-0.139,0],"ti":[0.206,0.144,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.165},"t":114,"s":[172.661,529.134,0],"to":[-0.206,-0.144,0],"ti":[0.204,0.138,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.172},"t":115,"s":[172.035,528.704,0],"to":[-0.204,-0.138,0],"ti":[0.187,0.123,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.178},"t":116,"s":[171.439,528.308,0],"to":[-0.187,-0.123,0],"ti":[0.16,0.101,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.186},"t":117,"s":[170.911,527.968,0],"to":[-0.16,-0.101,0],"ti":[0.124,0.076,0]},{"i":{"x":0.833,"y":0.868},"o":{"x":0.167,"y":0.199},"t":118,"s":[170.48,527.701,0],"to":[-0.124,-0.076,0],"ti":[0.084,0.048,0]},{"i":{"x":0.833,"y":0.892},"o":{"x":0.167,"y":0.226},"t":119,"s":[170.165,527.514,0],"to":[-0.084,-0.048,0],"ti":[0.041,0.022,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.364},"t":120,"s":[169.978,527.41,0],"to":[-0.041,-0.022,0],"ti":[-0.002,-0.002,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.152},"t":121,"s":[169.921,527.383,0],"to":[0.002,0.002,0],"ti":[-0.022,-0.01,0]},{"i":{"x":0.833,"y":0.645},"o":{"x":0.167,"y":0.154},"t":122,"s":[169.988,527.421,0],"to":[0.022,0.01,0],"ti":[0.027,0.028,0]},{"i":{"x":0.833,"y":0.759},"o":{"x":0.167,"y":0.109},"t":123,"s":[170.056,527.44,0],"to":[-0.027,-0.028,0],"ti":[0.111,0.09,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.127},"t":124,"s":[169.827,527.252,0],"to":[-0.111,-0.09,0],"ti":[0.164,0.135,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.149},"t":125,"s":[169.39,526.9,0],"to":[-0.164,-0.135,0],"ti":[0.185,0.162,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.161},"t":126,"s":[168.845,526.44,0],"to":[-0.185,-0.162,0],"ti":[0.179,0.173,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.17},"t":127,"s":[168.281,525.925,0],"to":[-0.179,-0.173,0],"ti":[0.151,0.17,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.18},"t":128,"s":[167.771,525.4,0],"to":[-0.151,-0.17,0],"ti":[0.107,0.153,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.191},"t":129,"s":[167.373,524.907,0],"to":[-0.107,-0.153,0],"ti":[0.049,0.125,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.206},"t":130,"s":[167.132,524.482,0],"to":[-0.049,-0.125,0],"ti":[-0.015,0.087,0]},{"i":{"x":0.833,"y":0.801},"o":{"x":0.167,"y":0.192},"t":131,"s":[167.076,524.157,0],"to":[0.015,-0.087,0],"ti":[-0.083,0.042,0]},{"i":{"x":0.833,"y":0.788},"o":{"x":0.167,"y":0.143},"t":132,"s":[167.223,523.957,0],"to":[0.083,-0.042,0],"ti":[-0.148,-0.01,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.137},"t":133,"s":[167.572,523.906,0],"to":[0.148,0.01,0],"ti":[-0.198,-0.056,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.15},"t":134,"s":[168.111,524.018,0],"to":[0.198,0.056,0],"ti":[-0.201,-0.06,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.183},"t":135,"s":[168.76,524.239,0],"to":[0.201,0.06,0],"ti":[-0.164,-0.036,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.194},"t":136,"s":[169.317,524.377,0],"to":[0.164,0.036,0],"ti":[-0.117,-0.023,0]},{"i":{"x":0.833,"y":0.875},"o":{"x":0.167,"y":0.211},"t":137,"s":[169.741,524.456,0],"to":[0.117,0.023,0],"ti":[-0.067,-0.02,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.25},"t":138,"s":[170.017,524.512,0],"to":[0.067,0.02,0],"ti":[-0.018,-0.025,0]},{"i":{"x":0.833,"y":0.753},"o":{"x":0.167,"y":0.202},"t":139,"s":[170.142,524.574,0],"to":[0.018,0.025,0],"ti":[0.026,-0.038,0]},{"i":{"x":0.833,"y":0.789},"o":{"x":0.167,"y":0.126},"t":140,"s":[170.125,524.665,0],"to":[-0.026,0.038,0],"ti":[0.06,-0.056,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.138},"t":141,"s":[169.987,524.802,0],"to":[-0.06,0.056,0],"ti":[0.082,-0.076,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.15},"t":142,"s":[169.762,524.999,0],"to":[-0.082,0.076,0],"ti":[0.085,-0.098,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.159},"t":143,"s":[169.497,525.26,0],"to":[-0.085,0.098,0],"ti":[0.067,-0.119,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.165},"t":144,"s":[169.251,525.587,0],"to":[-0.067,0.119,0],"ti":[0.023,-0.137,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.163},"t":145,"s":[169.095,525.973,0],"to":[-0.023,0.137,0],"ti":[-0.04,-0.147,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.157},"t":146,"s":[169.112,526.409,0],"to":[0.04,0.147,0],"ti":[-0.081,-0.135,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.176},"t":147,"s":[169.334,526.855,0],"to":[0.081,0.135,0],"ti":[-0.09,-0.1,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.185},"t":148,"s":[169.598,527.216,0],"to":[0.09,0.1,0],"ti":[-0.093,-0.056,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.186},"t":149,"s":[169.876,527.455,0],"to":[0.093,0.056,0],"ti":[-0.091,-0.008,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.173},"t":150,"s":[170.155,527.552,0],"to":[0.091,0.008,0],"ti":[-0.087,0.041,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.156},"t":151,"s":[170.423,527.501,0],"to":[0.087,-0.041,0],"ti":[-0.08,0.085,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.151},"t":152,"s":[170.675,527.309,0],"to":[0.08,-0.085,0],"ti":[-0.072,0.12,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.155},"t":153,"s":[170.905,526.993,0],"to":[0.072,-0.12,0],"ti":[-0.064,0.143,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.161},"t":154,"s":[171.11,526.587,0],"to":[0.064,-0.143,0],"ti":[-0.056,0.149,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.17},"t":155,"s":[171.29,526.135,0],"to":[0.056,-0.149,0],"ti":[-0.05,0.134,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.184},"t":156,"s":[171.448,525.693,0],"to":[0.05,-0.134,0],"ti":[-0.046,0.093,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.218},"t":157,"s":[171.591,525.332,0],"to":[0.046,-0.093,0],"ti":[-0.043,0.034,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.236},"t":158,"s":[171.725,525.135,0],"to":[0.043,-0.034,0],"ti":[-0.035,-0.002,0]},{"i":{"x":0.833,"y":0.893},"o":{"x":0.167,"y":0.215},"t":159,"s":[171.851,525.131,0],"to":[0.035,0.002,0],"ti":[-0.016,-0.003,0]},{"i":{"x":0.833,"y":0.638},"o":{"x":0.167,"y":0.377},"t":160,"s":[171.932,525.15,0],"to":[0.016,0.003,0],"ti":[0.009,0.007,0]},{"i":{"x":0.833,"y":0.725},"o":{"x":0.167,"y":0.108},"t":161,"s":[171.945,525.15,0],"to":[-0.009,-0.007,0],"ti":[0.037,0.023,0]},{"i":{"x":0.833,"y":0.785},"o":{"x":0.167,"y":0.12},"t":162,"s":[171.878,525.108,0],"to":[-0.037,-0.023,0],"ti":[0.065,0.043,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.136},"t":163,"s":[171.726,525.01,0],"to":[-0.065,-0.043,0],"ti":[0.091,0.065,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.146},"t":164,"s":[171.491,524.848,0],"to":[-0.091,-0.065,0],"ti":[0.112,0.085,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.152},"t":165,"s":[171.183,524.621,0],"to":[-0.112,-0.085,0],"ti":[0.126,0.103,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.158},"t":166,"s":[170.82,524.336,0],"to":[-0.126,-0.103,0],"ti":[0.13,0.114,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.165},"t":167,"s":[170.427,524.006,0],"to":[-0.13,-0.114,0],"ti":[0.123,0.117,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.172},"t":168,"s":[170.038,523.652,0],"to":[-0.123,-0.117,0],"ti":[0.1,0.11,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.185},"t":169,"s":[169.692,523.301,0],"to":[-0.1,-0.11,0],"ti":[0.054,0.098,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.198},"t":170,"s":[169.438,522.989,0],"to":[-0.054,-0.098,0],"ti":[-0.025,0.096,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.148},"t":171,"s":[169.368,522.711,0],"to":[0.025,-0.096,0],"ti":[-0.11,0.086,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.147},"t":172,"s":[169.588,522.411,0],"to":[0.11,-0.086,0],"ti":[-0.17,0.043,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.153},"t":173,"s":[170.027,522.196,0],"to":[0.17,-0.043,0],"ti":[-0.206,-0.026,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.154},"t":174,"s":[170.609,522.156,0],"to":[0.206,0.026,0],"ti":[-0.22,-0.11,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.154},"t":175,"s":[171.265,522.352,0],"to":[0.22,0.11,0],"ti":[-0.215,-0.199,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.154},"t":176,"s":[171.932,522.815,0],"to":[0.215,0.199,0],"ti":[-0.192,-0.284,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.156},"t":177,"s":[172.555,523.547,0],"to":[0.192,0.284,0],"ti":[-0.154,-0.355,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.159},"t":178,"s":[173.085,524.52,0],"to":[0.154,0.355,0],"ti":[-0.103,-0.402,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.163},"t":179,"s":[173.48,525.678,0],"to":[0.103,0.402,0],"ti":[-0.042,-0.415,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.169},"t":180,"s":[173.705,526.932,0],"to":[0.042,0.415,0],"ti":[0.028,-0.384,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":181,"s":[173.732,528.168,0],"to":[-0.028,0.384,0],"ti":[0.094,-0.322,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.18},"t":182,"s":[173.539,529.238,0],"to":[-0.094,0.322,0],"ti":[0.123,-0.291,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.165},"t":183,"s":[173.17,530.098,0],"to":[-0.123,0.291,0],"ti":[0.122,-0.283,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.173},"t":184,"s":[172.798,530.983,0],"to":[-0.122,0.283,0],"ti":[0.118,-0.242,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.185},"t":185,"s":[172.439,531.795,0],"to":[-0.118,0.242,0],"ti":[0.114,-0.173,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.199},"t":186,"s":[172.091,532.434,0],"to":[-0.114,0.173,0],"ti":[0.111,-0.087,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.205},"t":187,"s":[171.753,532.833,0],"to":[-0.111,0.087,0],"ti":[0.109,0.006,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.165},"t":188,"s":[171.423,532.955,0],"to":[-0.109,-0.006,0],"ti":[0.107,0.096,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.142},"t":189,"s":[171.1,532.796,0],"to":[-0.107,-0.096,0],"ti":[0.107,0.172,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.147},"t":190,"s":[170.78,532.38,0],"to":[-0.107,-0.172,0],"ti":[0.108,0.224,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.156},"t":191,"s":[170.459,531.765,0],"to":[-0.108,-0.224,0],"ti":[0.11,0.241,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.167},"t":192,"s":[170.135,531.038,0],"to":[-0.11,-0.241,0],"ti":[0.114,0.214,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.183},"t":193,"s":[169.801,530.318,0],"to":[-0.114,-0.214,0],"ti":[0.113,0.151,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.199},"t":194,"s":[169.453,529.755,0],"to":[-0.113,-0.151,0],"ti":[0.088,0.119,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.177},"t":195,"s":[169.123,529.412,0],"to":[-0.088,-0.119,0],"ti":[0.043,0.127,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.173},"t":196,"s":[168.923,529.04,0],"to":[-0.043,-0.127,0],"ti":[-0.002,0.128,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.169},"t":197,"s":[168.863,528.65,0],"to":[0.002,-0.128,0],"ti":[-0.043,0.12,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.166},"t":198,"s":[168.933,528.273,0],"to":[0.043,-0.12,0],"ti":[-0.078,0.105,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":199,"s":[169.119,527.932,0],"to":[0.078,-0.105,0],"ti":[-0.105,0.087,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.164},"t":200,"s":[169.401,527.641,0],"to":[0.105,-0.087,0],"ti":[-0.122,0.066,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.167},"t":201,"s":[169.751,527.411,0],"to":[0.122,-0.066,0],"ti":[-0.127,0.046,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.172},"t":202,"s":[170.135,527.243,0],"to":[0.127,-0.046,0],"ti":[-0.117,0.029,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.182},"t":203,"s":[170.513,527.132,0],"to":[0.117,-0.029,0],"ti":[-0.091,0.017,0]},{"i":{"x":0.833,"y":0.89},"o":{"x":0.167,"y":0.208},"t":204,"s":[170.839,527.068,0],"to":[0.091,-0.017,0],"ti":[-0.046,0.012,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.344},"t":205,"s":[171.059,527.03,0],"to":[0.046,-0.012,0],"ti":[0.008,0.005,0]},{"i":{"x":0.833,"y":0.737},"o":{"x":0.167,"y":0.136},"t":206,"s":[171.112,526.994,0],"to":[-0.008,-0.005,0],"ti":[0.026,-0.04,0]},{"i":{"x":0.833,"y":0.775},"o":{"x":0.167,"y":0.122},"t":207,"s":[171.009,527.001,0],"to":[-0.026,0.04,0],"ti":[0.004,-0.107,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.132},"t":208,"s":[170.959,527.234,0],"to":[-0.004,0.107,0],"ti":[-0.024,-0.156,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.147},"t":209,"s":[170.988,527.644,0],"to":[0.024,0.156,0],"ti":[-0.052,-0.184,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.156},"t":210,"s":[171.103,528.168,0],"to":[0.052,0.184,0],"ti":[-0.079,-0.195,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.162},"t":211,"s":[171.302,528.748,0],"to":[0.079,0.195,0],"ti":[-0.103,-0.189,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.167},"t":212,"s":[171.579,529.335,0],"to":[0.103,0.189,0],"ti":[-0.12,-0.17,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.172},"t":213,"s":[171.918,529.883,0],"to":[0.12,0.17,0],"ti":[-0.13,-0.138,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.177},"t":214,"s":[172.301,530.354,0],"to":[0.13,0.138,0],"ti":[-0.13,-0.097,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.185},"t":215,"s":[172.701,530.714,0],"to":[0.13,0.097,0],"ti":[-0.118,-0.047,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.194},"t":216,"s":[173.083,530.935,0],"to":[0.118,0.047,0],"ti":[-0.092,0.009,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.191},"t":217,"s":[173.409,530.996,0],"to":[0.092,-0.009,0],"ti":[-0.043,0.061,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.165},"t":218,"s":[173.633,530.881,0],"to":[0.043,-0.061,0],"ti":[0.034,0.082,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.147},"t":219,"s":[173.668,530.629,0],"to":[-0.034,-0.082,0],"ti":[0.113,0.077,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.142},"t":220,"s":[173.427,530.389,0],"to":[-0.113,-0.077,0],"ti":[0.164,0.073,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.153},"t":221,"s":[172.99,530.165,0],"to":[-0.164,-0.073,0],"ti":[0.19,0.071,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.162},"t":222,"s":[172.44,529.951,0],"to":[-0.19,-0.071,0],"ti":[0.193,0.07,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.169},"t":223,"s":[171.849,529.742,0],"to":[-0.193,-0.07,0],"ti":[0.177,0.071,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.177},"t":224,"s":[171.28,529.532,0],"to":[-0.177,-0.071,0],"ti":[0.146,0.073,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.186},"t":225,"s":[170.785,529.317,0],"to":[-0.146,-0.073,0],"ti":[0.102,0.076,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.194},"t":226,"s":[170.406,529.093,0],"to":[-0.102,-0.076,0],"ti":[0.048,0.08,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.189},"t":227,"s":[170.176,528.859,0],"to":[-0.048,-0.08,0],"ti":[-0.011,0.085,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.157},"t":228,"s":[170.117,528.611,0],"to":[0.011,-0.085,0],"ti":[-0.073,0.09,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.142},"t":229,"s":[170.242,528.348,0],"to":[0.073,-0.09,0],"ti":[-0.128,0.1,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.146},"t":230,"s":[170.553,528.069,0],"to":[0.128,-0.1,0],"ti":[-0.155,0.123,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.158},"t":231,"s":[171.011,527.748,0],"to":[0.155,-0.123,0],"ti":[-0.151,0.143,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.167},"t":232,"s":[171.483,527.334,0],"to":[0.151,-0.143,0],"ti":[-0.133,0.145,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.176},"t":233,"s":[171.916,526.888,0],"to":[0.133,-0.145,0],"ti":[-0.106,0.131,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.186},"t":234,"s":[172.28,526.463,0],"to":[0.106,-0.131,0],"ti":[-0.074,0.105,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.202},"t":235,"s":[172.552,526.103,0],"to":[0.074,-0.105,0],"ti":[-0.04,0.071,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.237},"t":236,"s":[172.722,525.836,0],"to":[0.04,-0.071,0],"ti":[-0.008,0.033,0]},{"i":{"x":0.833,"y":0.766},"o":{"x":0.167,"y":0.321},"t":237,"s":[172.789,525.678,0],"to":[0.008,-0.033,0],"ti":[0.019,-0.003,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.129},"t":238,"s":[172.767,525.635,0],"to":[-0.019,0.003,0],"ti":[0.015,-0.01,0]},{"t":239,"s":[172.678,525.697,0]}],"ix":2,"l":2},"a":{"a":0,"k":[23.989,31.397,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"particle 3","refId":"image_18","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.167},"t":0,"s":[715.716,551.731,0],"to":[0.077,-0.077,0],"ti":[-0.179,0.159,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.152},"t":1,"s":[716.175,551.272,0],"to":[0.179,-0.159,0],"ti":[-0.224,0.166,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.158},"t":2,"s":[716.787,550.775,0],"to":[0.224,-0.166,0],"ti":[-0.256,0.159,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.163},"t":3,"s":[717.517,550.278,0],"to":[0.256,-0.159,0],"ti":[-0.27,0.141,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.169},"t":4,"s":[718.321,549.819,0],"to":[0.27,-0.141,0],"ti":[-0.264,0.111,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.176},"t":5,"s":[719.14,549.432,0],"to":[0.264,-0.111,0],"ti":[-0.232,0.069,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.189},"t":6,"s":[719.904,549.155,0],"to":[0.232,-0.069,0],"ti":[-0.17,0.015,0]},{"i":{"x":0.833,"y":0.876},"o":{"x":0.167,"y":0.217},"t":7,"s":[720.531,549.021,0],"to":[0.17,-0.015,0],"ti":[-0.068,-0.033,0]},{"i":{"x":0.833,"y":0.731},"o":{"x":0.167,"y":0.255},"t":8,"s":[720.924,549.064,0],"to":[0.068,0.033,0],"ti":[0.068,-0.042,0]},{"i":{"x":0.833,"y":0.776},"o":{"x":0.167,"y":0.121},"t":9,"s":[720.938,549.217,0],"to":[-0.068,0.042,0],"ti":[0.19,-0.025,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.133},"t":10,"s":[720.519,549.315,0],"to":[-0.19,0.025,0],"ti":[0.273,-0.014,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.15},"t":11,"s":[719.795,549.369,0],"to":[-0.273,0.014,0],"ti":[0.319,-0.007,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.16},"t":12,"s":[718.88,549.397,0],"to":[-0.319,0.007,0],"ti":[0.332,-0.005,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.167},"t":13,"s":[717.881,549.412,0],"to":[-0.332,0.005,0],"ti":[0.315,-0.007,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.175},"t":14,"s":[716.891,549.428,0],"to":[-0.315,0.007,0],"ti":[0.273,-0.013,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.185},"t":15,"s":[715.991,549.455,0],"to":[-0.273,0.013,0],"ti":[0.21,-0.021,0]},{"i":{"x":0.833,"y":0.872},"o":{"x":0.167,"y":0.201},"t":16,"s":[715.251,549.504,0],"to":[-0.21,0.021,0],"ti":[0.129,-0.032,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.238},"t":17,"s":[714.731,549.582,0],"to":[-0.129,0.032,0],"ti":[0.035,-0.045,0]},{"i":{"x":0.833,"y":0.724},"o":{"x":0.167,"y":0.212},"t":18,"s":[714.476,549.698,0],"to":[-0.035,0.045,0],"ti":[-0.069,-0.06,0]},{"i":{"x":0.833,"y":0.79},"o":{"x":0.167,"y":0.119},"t":19,"s":[714.522,549.854,0],"to":[0.069,0.06,0],"ti":[-0.164,-0.066,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.138},"t":20,"s":[714.892,550.057,0],"to":[0.164,0.066,0],"ti":[-0.21,-0.043,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.166},"t":21,"s":[715.508,550.249,0],"to":[0.21,0.043,0],"ti":[-0.207,-0.001,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.173},"t":22,"s":[716.152,550.316,0],"to":[0.207,0.001,0],"ti":[-0.182,0.04,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":23,"s":[716.748,550.256,0],"to":[0.182,-0.04,0],"ti":[-0.142,0.077,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.179},"t":24,"s":[717.243,550.078,0],"to":[0.142,-0.077,0],"ti":[-0.093,0.109,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.173},"t":25,"s":[717.599,549.793,0],"to":[0.093,-0.109,0],"ti":[-0.04,0.134,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.164},"t":26,"s":[717.798,549.422,0],"to":[0.04,-0.134,0],"ti":[0.01,0.149,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.16},"t":27,"s":[717.84,548.991,0],"to":[-0.01,-0.149,0],"ti":[0.052,0.152,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.162},"t":28,"s":[717.739,548.531,0],"to":[-0.052,-0.152,0],"ti":[0.079,0.141,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.17},"t":29,"s":[717.53,548.08,0],"to":[-0.079,-0.141,0],"ti":[0.087,0.115,0]},{"i":{"x":0.833,"y":0.872},"o":{"x":0.167,"y":0.186},"t":30,"s":[717.264,547.684,0],"to":[-0.087,-0.115,0],"ti":[0.068,0.07,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.239},"t":31,"s":[717.011,547.392,0],"to":[-0.068,-0.07,0],"ti":[0.033,-0.008,0]},{"i":{"x":0.833,"y":0.661},"o":{"x":0.167,"y":0.174},"t":32,"s":[716.856,547.262,0],"to":[-0.033,0.008,0],"ti":[0.014,-0.126,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.111},"t":33,"s":[716.815,547.439,0],"to":[-0.014,0.126,0],"ti":[0.013,-0.235,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.142},"t":34,"s":[716.772,548.02,0],"to":[-0.013,0.235,0],"ti":[0.01,-0.296,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.157},"t":35,"s":[716.736,548.851,0],"to":[-0.01,0.296,0],"ti":[0.004,-0.313,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.167},"t":36,"s":[716.714,549.794,0],"to":[-0.004,0.313,0],"ti":[-0.003,-0.296,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.177},"t":37,"s":[716.712,550.732,0],"to":[0.003,0.296,0],"ti":[-0.011,-0.25,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.189},"t":38,"s":[716.733,551.569,0],"to":[0.011,0.25,0],"ti":[-0.018,-0.182,0]},{"i":{"x":0.833,"y":0.88},"o":{"x":0.167,"y":0.21},"t":39,"s":[716.776,552.23,0],"to":[0.018,0.182,0],"ti":[-0.024,-0.1,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.273},"t":40,"s":[716.841,552.661,0],"to":[0.024,0.1,0],"ti":[-0.028,-0.01,0]},{"i":{"x":0.833,"y":0.704},"o":{"x":0.167,"y":0.19},"t":41,"s":[716.922,552.83,0],"to":[0.028,0.01,0],"ti":[-0.03,0.08,0]},{"i":{"x":0.833,"y":0.783},"o":{"x":0.167,"y":0.116},"t":42,"s":[717.012,552.724,0],"to":[0.03,-0.08,0],"ti":[-0.027,0.163,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.135},"t":43,"s":[717.1,552.352,0],"to":[0.027,-0.163,0],"ti":[-0.024,0.226,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.151},"t":44,"s":[717.176,551.744,0],"to":[0.024,-0.226,0],"ti":[-0.029,0.246,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.168},"t":45,"s":[717.246,550.996,0],"to":[0.029,-0.246,0],"ti":[-0.04,0.23,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.176},"t":46,"s":[717.351,550.265,0],"to":[0.04,-0.23,0],"ti":[-0.051,0.196,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.184},"t":47,"s":[717.489,549.614,0],"to":[0.051,-0.196,0],"ti":[-0.06,0.15,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.192},"t":48,"s":[717.656,549.087,0],"to":[0.06,-0.15,0],"ti":[-0.067,0.098,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.2},"t":49,"s":[717.849,548.713,0],"to":[0.067,-0.098,0],"ti":[-0.073,0.045,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.191},"t":50,"s":[718.06,548.5,0],"to":[0.073,-0.045,0],"ti":[-0.075,-0.003,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.164},"t":51,"s":[718.285,548.443,0],"to":[0.075,0.003,0],"ti":[-0.075,-0.04,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.156},"t":52,"s":[718.513,548.517,0],"to":[0.075,0.04,0],"ti":[-0.072,-0.06,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.164},"t":53,"s":[718.736,548.682,0],"to":[0.072,0.06,0],"ti":[-0.064,-0.059,0]},{"i":{"x":0.833,"y":0.866},"o":{"x":0.167,"y":0.184},"t":54,"s":[718.943,548.879,0],"to":[0.064,0.059,0],"ti":[-0.053,-0.029,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.221},"t":55,"s":[719.123,549.034,0],"to":[0.053,0.029,0],"ti":[-0.032,0.013,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.186},"t":56,"s":[719.261,549.054,0],"to":[0.032,-0.013,0],"ti":[0.003,0.021,0]},{"i":{"x":0.833,"y":0.731},"o":{"x":0.167,"y":0.196},"t":57,"s":[719.317,548.957,0],"to":[-0.003,-0.021,0],"ti":[0.044,0.001,0]},{"i":{"x":0.833,"y":0.789},"o":{"x":0.167,"y":0.121},"t":58,"s":[719.243,548.927,0],"to":[-0.044,-0.001,0],"ti":[0.08,-0.016,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.138},"t":59,"s":[719.052,548.954,0],"to":[-0.08,0.016,0],"ti":[0.108,-0.028,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.149},"t":60,"s":[718.764,549.023,0],"to":[-0.108,0.028,0],"ti":[0.13,-0.035,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.156},"t":61,"s":[718.401,549.12,0],"to":[-0.13,0.035,0],"ti":[0.143,-0.037,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.162},"t":62,"s":[717.986,549.23,0],"to":[-0.143,0.037,0],"ti":[0.147,-0.034,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.168},"t":63,"s":[717.544,549.341,0],"to":[-0.147,0.034,0],"ti":[0.141,-0.028,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.174},"t":64,"s":[717.105,549.437,0],"to":[-0.141,0.028,0],"ti":[0.124,-0.017,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.184},"t":65,"s":[716.699,549.507,0],"to":[-0.124,0.017,0],"ti":[0.096,-0.001,0]},{"i":{"x":0.833,"y":0.868},"o":{"x":0.167,"y":0.202},"t":66,"s":[716.36,549.536,0],"to":[-0.096,0.001,0],"ti":[0.056,0.018,0]},{"i":{"x":0.833,"y":0.803},"o":{"x":0.167,"y":0.226},"t":67,"s":[716.122,549.513,0],"to":[-0.056,-0.018,0],"ti":[0.003,0.043,0]},{"i":{"x":0.833,"y":0.77},"o":{"x":0.167,"y":0.145},"t":68,"s":[716.024,549.425,0],"to":[-0.003,-0.043,0],"ti":[-0.052,0.069,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.131},"t":69,"s":[716.107,549.257,0],"to":[0.052,-0.069,0],"ti":[-0.086,0.09,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.151},"t":70,"s":[716.336,549.014,0],"to":[0.086,-0.09,0],"ti":[-0.092,0.102,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.165},"t":71,"s":[716.621,548.72,0],"to":[0.092,-0.102,0],"ti":[-0.076,0.108,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.175},"t":72,"s":[716.888,548.401,0],"to":[0.076,-0.108,0],"ti":[-0.044,0.107,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.18},"t":73,"s":[717.079,548.075,0],"to":[0.044,-0.107,0],"ti":[-0.001,0.101,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.173},"t":74,"s":[717.153,547.76,0],"to":[0.001,-0.101,0],"ti":[0.049,0.091,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.157},"t":75,"s":[717.083,547.47,0],"to":[-0.049,-0.091,0],"ti":[0.098,0.077,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.15},"t":76,"s":[716.861,547.216,0],"to":[-0.098,-0.077,0],"ti":[0.142,0.062,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.152},"t":77,"s":[716.494,547.007,0],"to":[-0.142,-0.062,0],"ti":[0.176,0.045,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.157},"t":78,"s":[716.007,546.846,0],"to":[-0.176,-0.045,0],"ti":[0.193,0.028,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.164},"t":79,"s":[715.439,546.737,0],"to":[-0.193,-0.028,0],"ti":[0.187,0.016,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.177},"t":80,"s":[714.847,546.677,0],"to":[-0.187,-0.016,0],"ti":[0.155,0.009,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.195},"t":81,"s":[714.317,546.64,0],"to":[-0.155,-0.009,0],"ti":[0.109,-0.005,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.21},"t":82,"s":[713.919,546.62,0],"to":[-0.109,0.005,0],"ti":[0.061,-0.036,0]},{"i":{"x":0.833,"y":0.792},"o":{"x":0.167,"y":0.189},"t":83,"s":[713.665,546.672,0],"to":[-0.061,0.036,0],"ti":[0.014,-0.079,0]},{"i":{"x":0.833,"y":0.788},"o":{"x":0.167,"y":0.139},"t":84,"s":[713.556,546.839,0],"to":[-0.014,0.079,0],"ti":[-0.028,-0.128,0]},{"i":{"x":0.833,"y":0.804},"o":{"x":0.167,"y":0.137},"t":85,"s":[713.582,547.146,0],"to":[0.028,0.128,0],"ti":[-0.063,-0.177,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.145},"t":86,"s":[713.726,547.604,0],"to":[0.063,0.177,0],"ti":[-0.087,-0.221,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.152},"t":87,"s":[713.961,548.207,0],"to":[0.087,0.221,0],"ti":[-0.097,-0.256,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.159},"t":88,"s":[714.248,548.932,0],"to":[0.097,0.256,0],"ti":[-0.09,-0.276,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.165},"t":89,"s":[714.542,549.743,0],"to":[0.09,0.276,0],"ti":[-0.062,-0.275,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.173},"t":90,"s":[714.787,550.586,0],"to":[0.062,0.275,0],"ti":[-0.012,-0.248,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":91,"s":[714.917,551.391,0],"to":[0.012,0.248,0],"ti":[0.041,-0.202,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.185},"t":92,"s":[714.857,552.072,0],"to":[-0.041,0.202,0],"ti":[0.042,-0.16,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.191},"t":93,"s":[714.672,552.602,0],"to":[-0.042,0.16,0],"ti":[0.003,-0.118,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.211},"t":94,"s":[714.604,553.031,0],"to":[-0.003,0.118,0],"ti":[-0.037,-0.06,0]},{"i":{"x":0.833,"y":0.791},"o":{"x":0.167,"y":0.203},"t":95,"s":[714.657,553.307,0],"to":[0.037,0.06,0],"ti":[-0.073,0.007,0]},{"i":{"x":0.833,"y":0.782},"o":{"x":0.167,"y":0.139},"t":96,"s":[714.824,553.39,0],"to":[0.073,-0.007,0],"ti":[-0.103,0.076,0]},{"i":{"x":0.833,"y":0.803},"o":{"x":0.167,"y":0.135},"t":97,"s":[715.092,553.265,0],"to":[0.103,-0.076,0],"ti":[-0.126,0.141,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.145},"t":98,"s":[715.442,552.933,0],"to":[0.126,-0.141,0],"ti":[-0.14,0.196,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.153},"t":99,"s":[715.847,552.416,0],"to":[0.14,-0.196,0],"ti":[-0.142,0.233,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.161},"t":100,"s":[716.279,551.758,0],"to":[0.142,-0.233,0],"ti":[-0.132,0.245,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.169},"t":101,"s":[716.7,551.02,0],"to":[0.132,-0.245,0],"ti":[-0.106,0.227,0]},{"i":{"x":0.833,"y":0.866},"o":{"x":0.167,"y":0.183},"t":102,"s":[717.068,550.285,0],"to":[0.106,-0.227,0],"ti":[-0.063,0.172,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.219},"t":103,"s":[717.335,549.655,0],"to":[0.063,-0.172,0],"ti":[0.007,0.091,0]},{"i":{"x":0.833,"y":0.743},"o":{"x":0.167,"y":0.234},"t":104,"s":[717.448,549.253,0],"to":[-0.007,-0.091,0],"ti":[0.106,0.026,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.123},"t":105,"s":[717.292,549.112,0],"to":[-0.106,-0.026,0],"ti":[0.194,-0.016,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.141},"t":106,"s":[716.811,549.096,0],"to":[-0.194,0.016,0],"ti":[0.244,-0.058,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.154},"t":107,"s":[716.126,549.207,0],"to":[-0.244,0.058,0],"ti":[0.261,-0.099,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.162},"t":108,"s":[715.345,549.445,0],"to":[-0.261,0.099,0],"ti":[0.249,-0.135,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.168},"t":109,"s":[714.562,549.799,0],"to":[-0.249,0.135,0],"ti":[0.214,-0.164,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.173},"t":110,"s":[713.852,550.252,0],"to":[-0.214,0.164,0],"ti":[0.162,-0.183,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":111,"s":[713.277,550.781,0],"to":[-0.162,0.183,0],"ti":[0.098,-0.19,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.179},"t":112,"s":[712.879,551.351,0],"to":[-0.098,0.19,0],"ti":[0.027,-0.183,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.179},"t":113,"s":[712.689,551.923,0],"to":[-0.027,0.183,0],"ti":[-0.045,-0.158,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.173},"t":114,"s":[712.717,552.449,0],"to":[0.045,0.158,0],"ti":[-0.114,-0.113,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.163},"t":115,"s":[712.96,552.872,0],"to":[0.114,0.113,0],"ti":[-0.149,-0.04,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":116,"s":[713.399,553.129,0],"to":[0.149,0.04,0],"ti":[-0.111,0.059,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.176},"t":117,"s":[713.853,553.113,0],"to":[0.111,-0.059,0],"ti":[-0.043,0.155,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.142},"t":118,"s":[714.067,552.773,0],"to":[0.043,-0.155,0],"ti":[0.001,0.224,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.148},"t":119,"s":[714.113,552.185,0],"to":[-0.001,-0.224,0],"ti":[0.024,0.269,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.157},"t":120,"s":[714.06,551.428,0],"to":[-0.024,-0.269,0],"ti":[0.027,0.29,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.164},"t":121,"s":[713.97,550.572,0],"to":[-0.027,-0.29,0],"ti":[0.014,0.29,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.17},"t":122,"s":[713.898,549.685,0],"to":[-0.014,-0.29,0],"ti":[-0.014,0.27,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.176},"t":123,"s":[713.889,548.83,0],"to":[0.014,-0.27,0],"ti":[-0.053,0.232,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.18},"t":124,"s":[713.982,548.063,0],"to":[0.053,-0.232,0],"ti":[-0.1,0.177,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.179},"t":125,"s":[714.206,547.438,0],"to":[0.1,-0.177,0],"ti":[-0.154,0.106,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.166},"t":126,"s":[714.584,547.004,0],"to":[0.154,-0.106,0],"ti":[-0.211,0.021,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.151},"t":127,"s":[715.131,546.803,0],"to":[0.211,-0.021,0],"ti":[-0.247,-0.051,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.159},"t":128,"s":[715.852,546.875,0],"to":[0.247,0.051,0],"ti":[-0.218,-0.062,0]},{"i":{"x":0.833,"y":0.866},"o":{"x":0.167,"y":0.201},"t":129,"s":[716.615,547.106,0],"to":[0.218,0.062,0],"ti":[-0.146,-0.037,0]},{"i":{"x":0.833,"y":0.882},"o":{"x":0.167,"y":0.222},"t":130,"s":[717.163,547.248,0],"to":[0.146,0.037,0],"ti":[-0.076,-0.023,0]},{"i":{"x":0.833,"y":0.868},"o":{"x":0.167,"y":0.286},"t":131,"s":[717.494,547.33,0],"to":[0.076,0.023,0],"ti":[-0.013,-0.018,0]},{"i":{"x":0.833,"y":0.706},"o":{"x":0.167,"y":0.225},"t":132,"s":[717.622,547.384,0],"to":[0.013,0.018,0],"ti":[0.041,-0.021,0]},{"i":{"x":0.833,"y":0.791},"o":{"x":0.167,"y":0.116},"t":133,"s":[717.571,547.437,0],"to":[-0.041,0.021,0],"ti":[0.082,-0.032,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.138},"t":134,"s":[717.377,547.513,0],"to":[-0.082,0.032,0],"ti":[0.106,-0.047,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.153},"t":135,"s":[717.082,547.627,0],"to":[-0.106,0.047,0],"ti":[0.11,-0.066,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.164},"t":136,"s":[716.743,547.794,0],"to":[-0.11,0.066,0],"ti":[0.09,-0.087,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.172},"t":137,"s":[716.424,548.022,0],"to":[-0.09,0.087,0],"ti":[0.045,-0.108,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.168},"t":138,"s":[716.201,548.314,0],"to":[-0.045,0.108,0],"ti":[-0.032,-0.128,0]},{"i":{"x":0.833,"y":0.79},"o":{"x":0.167,"y":0.147},"t":139,"s":[716.157,548.67,0],"to":[0.032,0.128,0],"ti":[-0.135,-0.142,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.138},"t":140,"s":[716.39,549.082,0],"to":[0.135,0.142,0],"ti":[-0.231,-0.139,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.151},"t":141,"s":[716.968,549.522,0],"to":[0.231,0.139,0],"ti":[-0.284,-0.116,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.163},"t":142,"s":[717.778,549.917,0],"to":[0.284,0.116,0],"ti":[-0.29,-0.08,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.174},"t":143,"s":[718.67,550.219,0],"to":[0.29,0.08,0],"ti":[-0.261,-0.036,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.185},"t":144,"s":[719.521,550.398,0],"to":[0.261,0.036,0],"ti":[-0.204,0.011,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.197},"t":145,"s":[720.235,550.437,0],"to":[0.204,-0.011,0],"ti":[-0.13,0.057,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.203},"t":146,"s":[720.746,550.332,0],"to":[0.13,-0.057,0],"ti":[-0.047,0.097,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.17},"t":147,"s":[721.013,550.094,0],"to":[0.047,-0.097,0],"ti":[0.036,0.125,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.146},"t":148,"s":[721.025,549.751,0],"to":[-0.036,-0.125,0],"ti":[0.108,0.138,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.149},"t":149,"s":[720.798,549.342,0],"to":[-0.108,-0.138,0],"ti":[0.162,0.13,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.159},"t":150,"s":[720.375,548.922,0],"to":[-0.162,-0.13,0],"ti":[0.187,0.097,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.172},"t":151,"s":[719.828,548.561,0],"to":[-0.187,-0.097,0],"ti":[0.176,0.045,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.189},"t":152,"s":[719.256,548.341,0],"to":[-0.176,-0.045,0],"ti":[0.139,0.004,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.197},"t":153,"s":[718.773,548.293,0],"to":[-0.139,-0.004,0],"ti":[0.098,-0.014,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.205},"t":154,"s":[718.419,548.315,0],"to":[-0.098,0.014,0],"ti":[0.06,-0.024,0]},{"i":{"x":0.833,"y":0.867},"o":{"x":0.167,"y":0.218},"t":155,"s":[718.186,548.378,0],"to":[-0.06,0.024,0],"ti":[0.026,-0.027,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.223},"t":156,"s":[718.061,548.461,0],"to":[-0.026,0.027,0],"ti":[-0.001,-0.024,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.181},"t":157,"s":[718.029,548.542,0],"to":[0.001,0.024,0],"ti":[-0.02,-0.017,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.153},"t":158,"s":[718.068,548.606,0],"to":[0.02,0.017,0],"ti":[-0.031,-0.005,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.16},"t":159,"s":[718.151,548.642,0],"to":[0.031,0.005,0],"ti":[-0.03,0.008,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.172},"t":160,"s":[718.251,548.638,0],"to":[0.03,-0.008,0],"ti":[-0.017,0.023,0]},{"i":{"x":0.833,"y":0.78},"o":{"x":0.167,"y":0.163},"t":161,"s":[718.33,548.592,0],"to":[0.017,-0.023,0],"ti":[0.01,0.038,0]},{"i":{"x":0.833,"y":0.766},"o":{"x":0.167,"y":0.134},"t":162,"s":[718.351,548.499,0],"to":[-0.01,-0.038,0],"ti":[0.052,0.052,0]},{"i":{"x":0.833,"y":0.785},"o":{"x":0.167,"y":0.129},"t":163,"s":[718.269,548.362,0],"to":[-0.052,-0.052,0],"ti":[0.103,0.072,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.136},"t":164,"s":[718.037,548.186,0],"to":[-0.103,-0.072,0],"ti":[0.135,0.101,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.153},"t":165,"s":[717.652,547.93,0],"to":[-0.135,-0.101,0],"ti":[0.14,0.115,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.17},"t":166,"s":[717.225,547.577,0],"to":[-0.14,-0.115,0],"ti":[0.127,0.094,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.189},"t":167,"s":[716.814,547.241,0],"to":[-0.127,-0.094,0],"ti":[0.102,0.048,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.213},"t":168,"s":[716.463,547.011,0],"to":[-0.102,-0.048,0],"ti":[0.068,-0.015,0]},{"i":{"x":0.833,"y":0.775},"o":{"x":0.167,"y":0.184},"t":169,"s":[716.204,546.952,0],"to":[-0.068,0.015,0],"ti":[0.031,-0.088,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.132},"t":170,"s":[716.054,547.103,0],"to":[-0.031,0.088,0],"ti":[-0.007,-0.161,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.136},"t":171,"s":[716.02,547.479,0],"to":[0.007,0.161,0],"ti":[-0.039,-0.226,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.147},"t":172,"s":[716.093,548.068,0],"to":[0.039,0.226,0],"ti":[-0.063,-0.275,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.155},"t":173,"s":[716.254,548.836,0],"to":[0.063,0.275,0],"ti":[-0.073,-0.3,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.164},"t":174,"s":[716.469,549.721,0],"to":[0.073,0.3,0],"ti":[-0.066,-0.291,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":175,"s":[716.692,550.635,0],"to":[0.066,0.291,0],"ti":[-0.054,-0.264,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.176},"t":176,"s":[716.865,551.469,0],"to":[0.054,0.264,0],"ti":[-0.063,-0.255,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.162},"t":177,"s":[717.014,552.218,0],"to":[0.063,0.255,0],"ti":[-0.078,-0.247,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.175},"t":178,"s":[717.244,552.999,0],"to":[0.078,0.247,0],"ti":[-0.069,-0.206,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.192},"t":179,"s":[717.481,553.701,0],"to":[0.069,0.206,0],"ti":[-0.043,-0.141,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.23},"t":180,"s":[717.66,554.237,0],"to":[0.043,0.141,0],"ti":[-0.003,-0.062,0]},{"i":{"x":0.833,"y":0.706},"o":{"x":0.167,"y":0.321},"t":181,"s":[717.737,554.549,0],"to":[0.003,0.062,0],"ti":[0.044,0.023,0]},{"i":{"x":0.833,"y":0.756},"o":{"x":0.167,"y":0.116},"t":182,"s":[717.679,554.607,0],"to":[-0.044,-0.023,0],"ti":[0.092,0.104,0]},{"i":{"x":0.833,"y":0.801},"o":{"x":0.167,"y":0.126},"t":183,"s":[717.475,554.409,0],"to":[-0.092,-0.104,0],"ti":[0.137,0.172,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.143},"t":184,"s":[717.127,553.981,0],"to":[-0.137,-0.172,0],"ti":[0.172,0.216,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.155},"t":185,"s":[716.655,553.379,0],"to":[-0.172,-0.216,0],"ti":[0.193,0.228,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.166},"t":186,"s":[716.095,552.686,0],"to":[-0.193,-0.228,0],"ti":[0.193,0.197,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.182},"t":187,"s":[715.499,552.013,0],"to":[-0.193,-0.197,0],"ti":[0.162,0.141,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.202},"t":188,"s":[714.938,551.502,0],"to":[-0.162,-0.141,0],"ti":[0.1,0.113,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.195},"t":189,"s":[714.525,551.168,0],"to":[-0.1,-0.113,0],"ti":[0.031,0.111,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.185},"t":190,"s":[714.337,550.823,0],"to":[-0.031,-0.111,0],"ti":[-0.024,0.098,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.171},"t":191,"s":[714.337,550.502,0],"to":[0.024,-0.098,0],"ti":[-0.066,0.077,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.164},"t":192,"s":[714.483,550.235,0],"to":[0.066,-0.077,0],"ti":[-0.094,0.05,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.163},"t":193,"s":[714.734,550.042,0],"to":[0.094,-0.05,0],"ti":[-0.107,0.021,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.167},"t":194,"s":[715.047,549.935,0],"to":[0.107,-0.021,0],"ti":[-0.105,-0.006,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.173},"t":195,"s":[715.377,549.915,0],"to":[0.105,0.006,0],"ti":[-0.088,-0.029,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.183},"t":196,"s":[715.679,549.973,0],"to":[0.088,0.029,0],"ti":[-0.056,-0.045,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.197},"t":197,"s":[715.908,550.091,0],"to":[0.056,0.045,0],"ti":[-0.008,-0.05,0]},{"i":{"x":0.833,"y":0.77},"o":{"x":0.167,"y":0.177},"t":198,"s":[716.015,550.243,0],"to":[0.008,0.05,0],"ti":[0.057,-0.041,0]},{"i":{"x":0.833,"y":0.775},"o":{"x":0.167,"y":0.13},"t":199,"s":[715.953,550.39,0],"to":[-0.057,0.041,0],"ti":[0.129,-0.037,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.132},"t":200,"s":[715.672,550.486,0],"to":[-0.129,0.037,0],"ti":[0.171,-0.079,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.149},"t":201,"s":[715.181,550.611,0],"to":[-0.171,0.079,0],"ti":[0.165,-0.144,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.161},"t":202,"s":[714.648,550.961,0],"to":[-0.165,0.144,0],"ti":[0.126,-0.187,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.168},"t":203,"s":[714.19,551.472,0],"to":[-0.126,0.187,0],"ti":[0.061,-0.211,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.169},"t":204,"s":[713.895,552.084,0],"to":[-0.061,0.211,0],"ti":[-0.018,-0.217,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.165},"t":205,"s":[713.821,552.738,0],"to":[0.018,0.217,0],"ti":[-0.102,-0.208,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.159},"t":206,"s":[714.001,553.387,0],"to":[0.102,0.208,0],"ti":[-0.183,-0.185,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.157},"t":207,"s":[714.435,553.987,0],"to":[0.183,0.185,0],"ti":[-0.251,-0.152,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.159},"t":208,"s":[715.1,554.5,0],"to":[0.251,0.152,0],"ti":[-0.295,-0.108,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.163},"t":209,"s":[715.939,554.896,0],"to":[0.295,0.108,0],"ti":[-0.308,-0.058,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.171},"t":210,"s":[716.872,555.15,0],"to":[0.308,0.058,0],"ti":[-0.279,-0.003,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.184},"t":211,"s":[717.786,555.245,0],"to":[0.279,0.003,0],"ti":[-0.201,0.055,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.206},"t":212,"s":[718.543,555.169,0],"to":[0.201,-0.055,0],"ti":[-0.093,0.11,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.183},"t":213,"s":[718.99,554.918,0],"to":[0.093,-0.11,0],"ti":[0.009,0.157,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.147},"t":214,"s":[719.103,554.51,0],"to":[-0.009,-0.157,0],"ti":[0.093,0.195,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.146},"t":215,"s":[718.935,553.975,0],"to":[-0.093,-0.195,0],"ti":[0.158,0.223,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.153},"t":216,"s":[718.543,553.342,0],"to":[-0.158,-0.223,0],"ti":[0.202,0.241,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.159},"t":217,"s":[717.987,552.639,0],"to":[-0.202,-0.241,0],"ti":[0.225,0.248,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.164},"t":218,"s":[717.33,551.898,0],"to":[-0.225,-0.248,0],"ti":[0.226,0.246,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.17},"t":219,"s":[716.636,551.149,0],"to":[-0.226,-0.246,0],"ti":[0.204,0.234,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.177},"t":220,"s":[715.974,550.422,0],"to":[-0.204,-0.234,0],"ti":[0.157,0.211,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.187},"t":221,"s":[715.414,549.748,0],"to":[-0.157,-0.211,0],"ti":[0.086,0.177,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.202},"t":222,"s":[715.029,549.158,0],"to":[-0.086,-0.177,0],"ti":[-0.011,0.133,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.189},"t":223,"s":[714.897,548.685,0],"to":[0.011,-0.133,0],"ti":[-0.11,0.089,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.147},"t":224,"s":[715.096,548.36,0],"to":[0.11,-0.089,0],"ti":[-0.155,0.067,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.168},"t":225,"s":[715.559,548.148,0],"to":[0.155,-0.067,0],"ti":[-0.148,0.057,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.176},"t":226,"s":[716.023,547.955,0],"to":[0.148,-0.057,0],"ti":[-0.133,0.039,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.183},"t":227,"s":[716.45,547.805,0],"to":[0.133,-0.039,0],"ti":[-0.111,0.016,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.19},"t":228,"s":[716.819,547.718,0],"to":[0.111,-0.016,0],"ti":[-0.086,-0.009,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.191},"t":229,"s":[717.115,547.706,0],"to":[0.086,0.009,0],"ti":[-0.06,-0.034,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.178},"t":230,"s":[717.334,547.773,0],"to":[0.06,0.034,0],"ti":[-0.037,-0.057,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.161},"t":231,"s":[717.477,547.913,0],"to":[0.037,0.057,0],"ti":[-0.019,-0.074,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.157},"t":232,"s":[717.557,548.115,0],"to":[0.019,0.074,0],"ti":[-0.009,-0.083,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.163},"t":233,"s":[717.592,548.358,0],"to":[0.009,0.083,0],"ti":[-0.009,-0.081,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.175},"t":234,"s":[717.609,548.613,0],"to":[0.009,0.081,0],"ti":[-0.023,-0.065,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.186},"t":235,"s":[717.646,548.842,0],"to":[0.023,0.065,0],"ti":[-0.037,-0.048,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.171},"t":236,"s":[717.745,549.002,0],"to":[0.037,0.048,0],"ti":[-0.022,-0.058,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.151},"t":237,"s":[717.867,549.131,0],"to":[0.022,0.058,0],"ti":[0.014,-0.08,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.15},"t":238,"s":[717.875,549.351,0],"to":[-0.014,0.08,0],"ti":[0.015,-0.044,0]},{"t":239,"s":[717.784,549.612,0]}],"ix":2,"l":2},"a":{"a":0,"k":[22.329,22.98,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"particle 2","refId":"image_19","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.167},"t":0,"s":[206.867,900.949,0],"to":[0.109,-0.016,0],"ti":[-0.176,0.038,0]},{"i":{"x":0.833,"y":0.89},"o":{"x":0.167,"y":0.214},"t":1,"s":[207.522,900.855,0],"to":[0.176,-0.038,0],"ti":[-0.075,0.038,0]},{"i":{"x":0.833,"y":0.766},"o":{"x":0.167,"y":0.343},"t":2,"s":[207.921,900.721,0],"to":[0.075,-0.038,0],"ti":[0.032,0.016,0]},{"i":{"x":0.833,"y":0.767},"o":{"x":0.167,"y":0.129},"t":3,"s":[207.97,900.624,0],"to":[-0.032,-0.016,0],"ti":[0.113,-0.01,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.13},"t":4,"s":[207.727,900.626,0],"to":[-0.113,0.01,0],"ti":[0.162,-0.023,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.151},"t":5,"s":[207.292,900.685,0],"to":[-0.162,0.023,0],"ti":[0.183,-0.025,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.164},"t":6,"s":[206.755,900.764,0],"to":[-0.183,0.025,0],"ti":[0.179,-0.016,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.174},"t":7,"s":[206.196,900.832,0],"to":[-0.179,0.016,0],"ti":[0.155,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.187},"t":8,"s":[205.682,900.863,0],"to":[-0.155,0,0],"ti":[0.114,0.023,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.202},"t":9,"s":[205.269,900.833,0],"to":[-0.114,-0.023,0],"ti":[0.06,0.052,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.189},"t":10,"s":[205,900.724,0],"to":[-0.06,-0.052,0],"ti":[-0.003,0.085,0]},{"i":{"x":0.833,"y":0.784},"o":{"x":0.167,"y":0.142},"t":11,"s":[204.909,900.521,0],"to":[0.003,-0.085,0],"ti":[-0.071,0.121,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.136},"t":12,"s":[205.017,900.214,0],"to":[0.071,-0.121,0],"ti":[-0.14,0.158,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.142},"t":13,"s":[205.334,899.795,0],"to":[0.14,-0.158,0],"ti":[-0.19,0.172,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.162},"t":14,"s":[205.859,899.265,0],"to":[0.19,-0.172,0],"ti":[-0.19,0.139,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.188},"t":15,"s":[206.472,898.765,0],"to":[0.19,-0.139,0],"ti":[-0.153,0.092,0]},{"i":{"x":0.833,"y":0.868},"o":{"x":0.167,"y":0.2},"t":16,"s":[207,898.429,0],"to":[0.153,-0.092,0],"ti":[-0.102,0.058,0]},{"i":{"x":0.833,"y":0.882},"o":{"x":0.167,"y":0.227},"t":17,"s":[207.392,898.214,0],"to":[0.102,-0.058,0],"ti":[-0.043,0.037,0]},{"i":{"x":0.833,"y":0.785},"o":{"x":0.167,"y":0.282},"t":18,"s":[207.615,898.08,0],"to":[0.043,-0.037,0],"ti":[0.019,0.029,0]},{"i":{"x":0.833,"y":0.756},"o":{"x":0.167,"y":0.136},"t":19,"s":[207.651,897.99,0],"to":[-0.019,-0.029,0],"ti":[0.076,0.033,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.127},"t":20,"s":[207.504,897.905,0],"to":[-0.076,-0.033,0],"ti":[0.124,0.049,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.142},"t":21,"s":[207.193,897.789,0],"to":[-0.124,-0.049,0],"ti":[0.156,0.076,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.152},"t":22,"s":[206.759,897.61,0],"to":[-0.156,-0.076,0],"ti":[0.166,0.114,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":23,"s":[206.257,897.333,0],"to":[-0.166,-0.114,0],"ti":[0.148,0.162,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.161},"t":24,"s":[205.763,896.928,0],"to":[-0.148,-0.162,0],"ti":[0.096,0.219,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.158},"t":25,"s":[205.37,896.364,0],"to":[-0.096,-0.219,0],"ti":[0.038,0.253,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.167},"t":26,"s":[205.189,895.614,0],"to":[-0.038,-0.253,0],"ti":[0.021,0.229,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.187},"t":27,"s":[205.144,894.848,0],"to":[-0.021,-0.229,0],"ti":[0.03,0.188,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.181},"t":28,"s":[205.063,894.237,0],"to":[-0.03,-0.188,0],"ti":[0.035,0.164,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.174},"t":29,"s":[204.962,893.722,0],"to":[-0.035,-0.164,0],"ti":[0.034,0.158,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.167},"t":30,"s":[204.855,893.251,0],"to":[-0.034,-0.158,0],"ti":[0.031,0.165,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.161},"t":31,"s":[204.755,892.777,0],"to":[-0.031,-0.165,0],"ti":[0.024,0.184,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.157},"t":32,"s":[204.671,892.263,0],"to":[-0.024,-0.184,0],"ti":[0.016,0.212,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.155},"t":33,"s":[204.609,891.676,0],"to":[-0.016,-0.212,0],"ti":[0.007,0.247,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.155},"t":34,"s":[204.574,890.992,0],"to":[-0.007,-0.247,0],"ti":[-0.002,0.288,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.155},"t":35,"s":[204.567,890.192,0],"to":[0.002,-0.288,0],"ti":[-0.011,0.331,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.156},"t":36,"s":[204.588,889.265,0],"to":[0.011,-0.331,0],"ti":[-0.018,0.374,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.158},"t":37,"s":[204.632,888.206,0],"to":[0.018,-0.374,0],"ti":[-0.028,0.408,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.162},"t":38,"s":[204.694,887.019,0],"to":[0.028,-0.408,0],"ti":[-0.045,0.418,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.167},"t":39,"s":[204.798,885.756,0],"to":[0.045,-0.418,0],"ti":[-0.063,0.403,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.171},"t":40,"s":[204.964,884.512,0],"to":[0.063,-0.403,0],"ti":[-0.076,0.374,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.174},"t":41,"s":[205.175,883.337,0],"to":[0.076,-0.374,0],"ti":[-0.083,0.336,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":42,"s":[205.417,882.267,0],"to":[0.083,-0.336,0],"ti":[-0.086,0.292,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":43,"s":[205.675,881.324,0],"to":[0.086,-0.292,0],"ti":[-0.085,0.249,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.181},"t":44,"s":[205.935,880.513,0],"to":[0.085,-0.249,0],"ti":[-0.08,0.211,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.18},"t":45,"s":[206.185,879.828,0],"to":[0.08,-0.211,0],"ti":[-0.071,0.184,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.177},"t":46,"s":[206.415,879.245,0],"to":[0.071,-0.184,0],"ti":[-0.06,0.171,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.17},"t":47,"s":[206.613,878.726,0],"to":[0.06,-0.171,0],"ti":[-0.045,0.179,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.16},"t":48,"s":[206.773,878.218,0],"to":[0.045,-0.179,0],"ti":[-0.028,0.211,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.151},"t":49,"s":[206.885,877.655,0],"to":[0.028,-0.211,0],"ti":[-0.008,0.239,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.163},"t":50,"s":[206.944,876.953,0],"to":[0.008,-0.239,0],"ti":[0.016,0.225,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.182},"t":51,"s":[206.933,876.22,0],"to":[-0.016,-0.225,0],"ti":[0.037,0.195,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.174},"t":52,"s":[206.85,875.606,0],"to":[-0.037,-0.195,0],"ti":[0.054,0.182,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.167},"t":53,"s":[206.71,875.052,0],"to":[-0.054,-0.182,0],"ti":[0.066,0.185,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.162},"t":54,"s":[206.527,874.512,0],"to":[-0.066,-0.185,0],"ti":[0.073,0.199,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.159},"t":55,"s":[206.315,873.945,0],"to":[-0.073,-0.199,0],"ti":[0.075,0.222,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":56,"s":[206.089,873.321,0],"to":[-0.075,-0.222,0],"ti":[0.072,0.25,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":57,"s":[205.865,872.616,0],"to":[-0.072,-0.25,0],"ti":[0.065,0.282,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.159},"t":58,"s":[205.654,871.819,0],"to":[-0.065,-0.282,0],"ti":[0.053,0.314,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.16},"t":59,"s":[205.473,870.924,0],"to":[-0.053,-0.314,0],"ti":[0.037,0.343,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.161},"t":60,"s":[205.335,869.936,0],"to":[-0.037,-0.343,0],"ti":[0.015,0.366,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.163},"t":61,"s":[205.254,868.868,0],"to":[-0.015,-0.366,0],"ti":[-0.021,0.377,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.165},"t":62,"s":[205.244,867.742,0],"to":[0.021,-0.377,0],"ti":[-0.072,0.374,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":63,"s":[205.383,866.604,0],"to":[0.072,-0.374,0],"ti":[-0.106,0.36,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.169},"t":64,"s":[205.674,865.497,0],"to":[0.106,-0.36,0],"ti":[-0.109,0.342,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.172},"t":65,"s":[206.016,864.441,0],"to":[0.109,-0.342,0],"ti":[-0.088,0.32,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":66,"s":[206.326,863.446,0],"to":[0.088,-0.32,0],"ti":[-0.048,0.298,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.175},"t":67,"s":[206.541,862.519,0],"to":[0.048,-0.298,0],"ti":[0.003,0.277,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.173},"t":68,"s":[206.615,861.658,0],"to":[-0.003,-0.277,0],"ti":[0.06,0.259,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.167},"t":69,"s":[206.523,860.858,0],"to":[-0.06,-0.259,0],"ti":[0.116,0.247,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.162},"t":70,"s":[206.256,860.105,0],"to":[-0.116,-0.247,0],"ti":[0.166,0.242,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.16},"t":71,"s":[205.825,859.379,0],"to":[-0.166,-0.242,0],"ti":[0.202,0.247,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.16},"t":72,"s":[205.262,858.654,0],"to":[-0.202,-0.247,0],"ti":[0.219,0.263,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.162},"t":73,"s":[204.614,857.899,0],"to":[-0.219,-0.263,0],"ti":[0.215,0.269,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.171},"t":74,"s":[203.95,857.074,0],"to":[-0.215,-0.269,0],"ti":[0.199,0.236,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.183},"t":75,"s":[203.322,856.283,0],"to":[-0.199,-0.236,0],"ti":[0.174,0.185,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.187},"t":76,"s":[202.754,855.658,0],"to":[-0.174,-0.185,0],"ti":[0.14,0.143,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.192},"t":77,"s":[202.278,855.173,0],"to":[-0.14,-0.143,0],"ti":[0.102,0.112,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.197},"t":78,"s":[201.913,854.798,0],"to":[-0.102,-0.112,0],"ti":[0.062,0.09,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.198},"t":79,"s":[201.668,854.503,0],"to":[-0.062,-0.09,0],"ti":[0.025,0.079,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.184},"t":80,"s":[201.54,854.257,0],"to":[-0.025,-0.079,0],"ti":[-0.004,0.078,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.161},"t":81,"s":[201.515,854.03,0],"to":[0.004,-0.078,0],"ti":[-0.024,0.089,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.151},"t":82,"s":[201.567,853.788,0],"to":[0.024,-0.089,0],"ti":[-0.029,0.11,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.15},"t":83,"s":[201.658,853.498,0],"to":[0.029,-0.11,0],"ti":[-0.016,0.144,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.148},"t":84,"s":[201.741,853.126,0],"to":[0.016,-0.144,0],"ti":[0.019,0.189,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.146},"t":85,"s":[201.755,852.636,0],"to":[-0.019,-0.189,0],"ti":[0.054,0.237,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.152},"t":86,"s":[201.627,851.991,0],"to":[-0.054,-0.237,0],"ti":[0.052,0.271,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":87,"s":[201.429,851.215,0],"to":[-0.052,-0.271,0],"ti":[0.023,0.294,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.161},"t":88,"s":[201.314,850.366,0],"to":[-0.023,-0.294,0],"ti":[-0.01,0.314,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.162},"t":89,"s":[201.293,849.45,0],"to":[0.01,-0.314,0],"ti":[-0.043,0.33,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.162},"t":90,"s":[201.373,848.48,0],"to":[0.043,-0.33,0],"ti":[-0.073,0.341,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.163},"t":91,"s":[201.549,847.469,0],"to":[0.073,-0.341,0],"ti":[-0.099,0.347,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.165},"t":92,"s":[201.812,846.433,0],"to":[0.099,-0.347,0],"ti":[-0.118,0.346,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":93,"s":[202.144,845.39,0],"to":[0.118,-0.346,0],"ti":[-0.127,0.338,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.169},"t":94,"s":[202.519,844.359,0],"to":[0.127,-0.338,0],"ti":[-0.123,0.322,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.172},"t":95,"s":[202.904,843.364,0],"to":[0.123,-0.322,0],"ti":[-0.105,0.297,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.177},"t":96,"s":[203.258,842.43,0],"to":[0.105,-0.297,0],"ti":[-0.069,0.263,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.183},"t":97,"s":[203.532,841.583,0],"to":[0.069,-0.263,0],"ti":[-0.004,0.213,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.193},"t":98,"s":[203.67,840.854,0],"to":[0.004,-0.213,0],"ti":[0.081,0.142,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.179},"t":99,"s":[203.554,840.306,0],"to":[-0.081,-0.142,0],"ti":[0.149,0.06,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.161},"t":100,"s":[203.181,840.001,0],"to":[-0.149,-0.06,0],"ti":[0.182,-0.023,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.156},"t":101,"s":[202.661,839.948,0],"to":[-0.182,0.023,0],"ti":[0.185,-0.103,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.157},"t":102,"s":[202.09,840.141,0],"to":[-0.185,0.103,0],"ti":[0.165,-0.173,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":103,"s":[201.549,840.563,0],"to":[-0.165,0.173,0],"ti":[0.126,-0.23,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.161},"t":104,"s":[201.1,841.179,0],"to":[-0.126,0.23,0],"ti":[0.074,-0.269,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.163},"t":105,"s":[200.792,841.943,0],"to":[-0.074,0.269,0],"ti":[0.013,-0.285,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.167},"t":106,"s":[200.658,842.793,0],"to":[-0.013,0.285,0],"ti":[-0.05,-0.273,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.171},"t":107,"s":[200.712,843.652,0],"to":[0.05,0.273,0],"ti":[-0.11,-0.229,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":108,"s":[200.955,844.432,0],"to":[0.11,0.229,0],"ti":[-0.163,-0.149,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":109,"s":[201.372,845.028,0],"to":[0.163,0.149,0],"ti":[-0.182,-0.037,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.181},"t":110,"s":[201.931,845.323,0],"to":[0.182,0.037,0],"ti":[-0.153,0.077,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.166},"t":111,"s":[202.463,845.25,0],"to":[0.153,-0.077,0],"ti":[-0.111,0.172,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.148},"t":112,"s":[202.846,844.863,0],"to":[0.111,-0.172,0],"ti":[-0.084,0.25,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.15},"t":113,"s":[203.127,844.215,0],"to":[0.084,-0.25,0],"ti":[-0.07,0.309,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.155},"t":114,"s":[203.349,843.361,0],"to":[0.07,-0.309,0],"ti":[-0.069,0.347,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.16},"t":115,"s":[203.549,842.361,0],"to":[0.069,-0.347,0],"ti":[-0.077,0.363,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.165},"t":116,"s":[203.762,841.28,0],"to":[0.077,-0.363,0],"ti":[-0.095,0.357,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.17},"t":117,"s":[204.014,840.181,0],"to":[0.095,-0.357,0],"ti":[-0.12,0.324,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.175},"t":118,"s":[204.332,839.14,0],"to":[0.12,-0.324,0],"ti":[-0.15,0.264,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.18},"t":119,"s":[204.733,838.237,0],"to":[0.15,-0.264,0],"ti":[-0.185,0.18,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.18},"t":120,"s":[205.232,837.555,0],"to":[0.185,-0.18,0],"ti":[-0.222,0.066,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.167},"t":121,"s":[205.841,837.16,0],"to":[0.222,-0.066,0],"ti":[-0.221,-0.04,0]},{"i":{"x":0.833,"y":0.872},"o":{"x":0.167,"y":0.176},"t":122,"s":[206.564,837.157,0],"to":[0.221,0.04,0],"ti":[-0.141,-0.081,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.239},"t":123,"s":[207.167,837.399,0],"to":[0.141,0.081,0],"ti":[-0.027,-0.081,0]},{"i":{"x":0.833,"y":0.783},"o":{"x":0.167,"y":0.192},"t":124,"s":[207.408,837.644,0],"to":[0.027,0.081,0],"ti":[0.071,-0.082,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.135},"t":125,"s":[207.328,837.887,0],"to":[-0.071,0.082,0],"ti":[0.152,-0.083,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.141},"t":126,"s":[206.979,838.134,0],"to":[-0.152,0.083,0],"ti":[0.212,-0.085,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.151},"t":127,"s":[206.417,838.386,0],"to":[-0.212,0.085,0],"ti":[0.248,-0.089,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.159},"t":128,"s":[205.708,838.647,0],"to":[-0.248,0.089,0],"ti":[0.259,-0.094,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.167},"t":129,"s":[204.926,838.92,0],"to":[-0.259,0.094,0],"ti":[0.241,-0.101,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.176},"t":130,"s":[204.152,839.212,0],"to":[-0.241,0.101,0],"ti":[0.193,-0.111,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.188},"t":131,"s":[203.477,839.529,0],"to":[-0.193,0.111,0],"ti":[0.11,-0.124,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.196},"t":132,"s":[202.997,839.878,0],"to":[-0.11,0.124,0],"ti":[-0.009,-0.139,0]},{"i":{"x":0.833,"y":0.771},"o":{"x":0.167,"y":0.155},"t":133,"s":[202.818,840.27,0],"to":[0.009,0.139,0],"ti":[-0.159,-0.163,0]},{"i":{"x":0.833,"y":0.803},"o":{"x":0.167,"y":0.131},"t":134,"s":[203.054,840.714,0],"to":[0.159,0.163,0],"ti":[-0.297,-0.193,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.144},"t":135,"s":[203.775,841.25,0],"to":[0.297,0.193,0],"ti":[-0.379,-0.211,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.158},"t":136,"s":[204.835,841.871,0],"to":[0.379,0.211,0],"ti":[-0.405,-0.211,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.167},"t":137,"s":[206.05,842.515,0],"to":[0.405,0.211,0],"ti":[-0.384,-0.197,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.176},"t":138,"s":[207.263,843.136,0],"to":[0.384,0.197,0],"ti":[-0.327,-0.173,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.186},"t":139,"s":[208.353,843.697,0],"to":[0.327,0.173,0],"ti":[-0.245,-0.144,0]},{"i":{"x":0.833,"y":0.868},"o":{"x":0.167,"y":0.2},"t":140,"s":[209.227,844.176,0],"to":[0.245,0.144,0],"ti":[-0.148,-0.113,0]},{"i":{"x":0.833,"y":0.87},"o":{"x":0.167,"y":0.226},"t":141,"s":[209.825,844.562,0],"to":[0.148,0.113,0],"ti":[-0.046,-0.085,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.232},"t":142,"s":[210.116,844.857,0],"to":[0.046,0.085,0],"ti":[0.05,-0.064,0]},{"i":{"x":0.833,"y":0.787},"o":{"x":0.167,"y":0.142},"t":143,"s":[210.103,845.075,0],"to":[-0.05,0.064,0],"ti":[0.13,-0.054,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.137},"t":144,"s":[209.818,845.243,0],"to":[-0.13,0.054,0],"ti":[0.183,-0.059,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.151},"t":145,"s":[209.324,845.4,0],"to":[-0.183,0.059,0],"ti":[0.189,-0.079,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.173},"t":146,"s":[208.718,845.598,0],"to":[-0.189,0.079,0],"ti":[0.141,-0.106,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.185},"t":147,"s":[208.192,845.872,0],"to":[-0.141,0.106,0],"ti":[0.076,-0.14,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.165},"t":148,"s":[207.87,846.234,0],"to":[-0.076,0.14,0],"ti":[0.017,-0.18,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.152},"t":149,"s":[207.736,846.711,0],"to":[-0.017,0.18,0],"ti":[-0.035,-0.224,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.15},"t":150,"s":[207.77,847.317,0],"to":[0.035,0.224,0],"ti":[-0.076,-0.268,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.153},"t":151,"s":[207.945,848.056,0],"to":[0.076,0.268,0],"ti":[-0.104,-0.307,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.157},"t":152,"s":[208.226,848.922,0],"to":[0.104,0.307,0],"ti":[-0.117,-0.339,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.161},"t":153,"s":[208.57,849.897,0],"to":[0.117,0.339,0],"ti":[-0.113,-0.359,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.165},"t":154,"s":[208.929,850.953,0],"to":[0.113,0.359,0],"ti":[-0.089,-0.365,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.169},"t":155,"s":[209.247,852.051,0],"to":[0.089,0.365,0],"ti":[-0.043,-0.352,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.174},"t":156,"s":[209.462,853.142,0],"to":[0.043,0.352,0],"ti":[0.028,-0.318,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.177},"t":157,"s":[209.504,854.165,0],"to":[-0.028,0.318,0],"ti":[0.122,-0.272,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.166},"t":158,"s":[209.295,855.049,0],"to":[-0.122,0.272,0],"ti":[0.214,-0.241,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.157},"t":159,"s":[208.774,855.798,0],"to":[-0.214,0.241,0],"ti":[0.278,-0.228,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.16},"t":160,"s":[208.01,856.497,0],"to":[-0.278,0.228,0],"ti":[0.309,-0.222,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.164},"t":161,"s":[207.109,857.167,0],"to":[-0.309,0.222,0],"ti":[0.312,-0.223,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.168},"t":162,"s":[206.159,857.832,0],"to":[-0.312,0.223,0],"ti":[0.293,-0.229,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.171},"t":163,"s":[205.237,858.506,0],"to":[-0.293,0.229,0],"ti":[0.256,-0.239,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":164,"s":[204.402,859.206,0],"to":[-0.256,0.239,0],"ti":[0.207,-0.252,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.173},"t":165,"s":[203.7,859.941,0],"to":[-0.207,0.252,0],"ti":[0.15,-0.267,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.171},"t":166,"s":[203.16,860.719,0],"to":[-0.15,0.267,0],"ti":[0.091,-0.284,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.167},"t":167,"s":[202.799,861.546,0],"to":[-0.091,0.284,0],"ti":[0.034,-0.3,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.164},"t":168,"s":[202.615,862.421,0],"to":[-0.034,0.3,0],"ti":[-0.015,-0.314,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.163},"t":169,"s":[202.595,863.344,0],"to":[0.015,0.314,0],"ti":[-0.075,-0.327,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.16},"t":170,"s":[202.708,864.308,0],"to":[0.075,0.327,0],"ti":[-0.156,-0.331,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.159},"t":171,"s":[203.044,865.305,0],"to":[0.156,0.331,0],"ti":[-0.225,-0.321,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.164},"t":172,"s":[203.647,866.294,0],"to":[0.225,0.321,0],"ti":[-0.257,-0.298,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.169},"t":173,"s":[204.396,867.23,0],"to":[0.257,0.298,0],"ti":[-0.256,-0.265,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.175},"t":174,"s":[205.187,868.079,0],"to":[0.256,0.265,0],"ti":[-0.231,-0.228,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.182},"t":175,"s":[205.935,868.822,0],"to":[0.231,0.228,0],"ti":[-0.186,-0.191,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.189},"t":176,"s":[206.571,869.449,0],"to":[0.186,0.191,0],"ti":[-0.127,-0.156,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.198},"t":177,"s":[207.048,869.965,0],"to":[0.127,0.156,0],"ti":[-0.061,-0.13,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.198},"t":178,"s":[207.333,870.388,0],"to":[0.061,0.13,0],"ti":[0.006,-0.116,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.169},"t":179,"s":[207.414,870.746,0],"to":[-0.006,0.116,0],"ti":[0.069,-0.118,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.147},"t":180,"s":[207.295,871.083,0],"to":[-0.069,0.118,0],"ti":[0.121,-0.14,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.145},"t":181,"s":[206.999,871.453,0],"to":[-0.121,0.14,0],"ti":[0.133,-0.155,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.174},"t":182,"s":[206.568,871.922,0],"to":[-0.133,0.155,0],"ti":[0.085,-0.134,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.213},"t":183,"s":[206.202,872.383,0],"to":[-0.085,0.134,0],"ti":[0.021,-0.112,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.178},"t":184,"s":[206.055,872.728,0],"to":[-0.021,0.112,0],"ti":[-0.029,-0.12,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.149},"t":185,"s":[206.079,873.056,0],"to":[0.029,0.12,0],"ti":[-0.062,-0.151,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.146},"t":186,"s":[206.227,873.447,0],"to":[0.062,0.151,0],"ti":[-0.081,-0.198,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.148},"t":187,"s":[206.453,873.961,0],"to":[0.081,0.198,0],"ti":[-0.086,-0.255,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.151},"t":188,"s":[206.715,874.635,0],"to":[0.086,0.255,0],"ti":[-0.076,-0.314,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.154},"t":189,"s":[206.967,875.488,0],"to":[0.076,0.314,0],"ti":[-0.052,-0.369,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.157},"t":190,"s":[207.169,876.518,0],"to":[0.052,0.369,0],"ti":[-0.015,-0.413,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.16},"t":191,"s":[207.279,877.701,0],"to":[0.015,0.413,0],"ti":[0.036,-0.439,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.163},"t":192,"s":[207.257,878.993,0],"to":[-0.036,0.439,0],"ti":[0.099,-0.44,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.166},"t":193,"s":[207.065,880.332,0],"to":[-0.099,0.44,0],"ti":[0.177,-0.434,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.161},"t":194,"s":[206.666,881.633,0],"to":[-0.177,0.434,0],"ti":[0.252,-0.448,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.158},"t":195,"s":[206.001,882.934,0],"to":[-0.252,0.448,0],"ti":[0.287,-0.467,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.165},"t":196,"s":[205.152,884.32,0],"to":[-0.287,0.467,0],"ti":[0.275,-0.47,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.17},"t":197,"s":[204.277,885.737,0],"to":[-0.275,0.47,0],"ti":[0.225,-0.459,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.174},"t":198,"s":[203.504,887.139,0],"to":[-0.225,0.459,0],"ti":[0.15,-0.438,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":199,"s":[202.925,888.492,0],"to":[-0.15,0.438,0],"ti":[0.06,-0.411,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.176},"t":200,"s":[202.603,889.77,0],"to":[-0.06,0.411,0],"ti":[-0.036,-0.379,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.172},"t":201,"s":[202.567,890.956,0],"to":[0.036,0.379,0],"ti":[-0.124,-0.346,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":202,"s":[202.816,892.042,0],"to":[0.124,0.346,0],"ti":[-0.197,-0.315,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.165},"t":203,"s":[203.314,893.031,0],"to":[0.197,0.315,0],"ti":[-0.241,-0.29,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.166},"t":204,"s":[203.995,893.935,0],"to":[0.241,0.29,0],"ti":[-0.247,-0.273,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.171},"t":205,"s":[204.76,894.772,0],"to":[0.247,0.273,0],"ti":[-0.199,-0.241,0]},{"i":{"x":0.833,"y":0.876},"o":{"x":0.167,"y":0.195},"t":206,"s":[205.477,895.575,0],"to":[0.199,0.241,0],"ti":[-0.108,-0.165,0]},{"i":{"x":0.833,"y":0.881},"o":{"x":0.167,"y":0.255},"t":207,"s":[205.956,896.218,0],"to":[0.108,0.165,0],"ti":[-0.012,-0.074,0]},{"i":{"x":0.833,"y":0.749},"o":{"x":0.167,"y":0.279},"t":208,"s":[206.126,896.565,0],"to":[0.012,0.074,0],"ti":[0.069,0,0]},{"i":{"x":0.833,"y":0.781},"o":{"x":0.167,"y":0.125},"t":209,"s":[206.029,896.664,0],"to":[-0.069,0,0],"ti":[0.133,0.058,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.134},"t":210,"s":[205.712,896.563,0],"to":[-0.133,-0.058,0],"ti":[0.18,0.098,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.149},"t":211,"s":[205.229,896.314,0],"to":[-0.18,-0.098,0],"ti":[0.206,0.12,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.16},"t":212,"s":[204.634,895.972,0],"to":[-0.206,-0.12,0],"ti":[0.211,0.123,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.17},"t":213,"s":[203.993,895.593,0],"to":[-0.211,-0.123,0],"ti":[0.192,0.105,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.184},"t":214,"s":[203.371,895.236,0],"to":[-0.192,-0.105,0],"ti":[0.148,0.067,0]},{"i":{"x":0.833,"y":0.879},"o":{"x":0.167,"y":0.213},"t":215,"s":[202.841,894.96,0],"to":[-0.148,-0.067,0],"ti":[0.077,0.008,0]},{"i":{"x":0.833,"y":0.706},"o":{"x":0.167,"y":0.269},"t":216,"s":[202.482,894.831,0],"to":[-0.077,-0.008,0],"ti":[-0.022,-0.074,0]},{"i":{"x":0.833,"y":0.773},"o":{"x":0.167,"y":0.116},"t":217,"s":[202.377,894.913,0],"to":[0.022,0.074,0],"ti":[-0.119,-0.156,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.132},"t":218,"s":[202.613,895.275,0],"to":[0.119,0.156,0],"ti":[-0.166,-0.2,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.16},"t":219,"s":[203.093,895.848,0],"to":[0.166,0.2,0],"ti":[-0.171,-0.21,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.166},"t":220,"s":[203.608,896.472,0],"to":[0.171,0.21,0],"ti":[-0.165,-0.208,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.171},"t":221,"s":[204.119,897.108,0],"to":[0.165,0.208,0],"ti":[-0.151,-0.196,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.175},"t":222,"s":[204.598,897.721,0],"to":[0.151,0.196,0],"ti":[-0.13,-0.177,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.18},"t":223,"s":[205.023,898.285,0],"to":[0.13,0.177,0],"ti":[-0.107,-0.152,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.185},"t":224,"s":[205.379,898.781,0],"to":[0.107,0.152,0],"ti":[-0.083,-0.124,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.19},"t":225,"s":[205.663,899.195,0],"to":[0.083,0.124,0],"ti":[-0.061,-0.095,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.197},"t":226,"s":[205.876,899.522,0],"to":[0.061,0.095,0],"ti":[-0.045,-0.067,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.203},"t":227,"s":[206.031,899.762,0],"to":[0.045,0.067,0],"ti":[-0.037,-0.043,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.199},"t":228,"s":[206.147,899.925,0],"to":[0.037,0.043,0],"ti":[-0.039,-0.026,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.169},"t":229,"s":[206.25,900.023,0],"to":[0.039,0.026,0],"ti":[-0.033,-0.008,0]},{"i":{"x":0.833,"y":0.784},"o":{"x":0.167,"y":0.234},"t":230,"s":[206.378,900.081,0],"to":[0.033,0.008,0],"ti":[0.002,0.016,0]},{"i":{"x":0.833,"y":0.759},"o":{"x":0.167,"y":0.136},"t":231,"s":[206.448,900.072,0],"to":[-0.002,-0.016,0],"ti":[0.047,0.035,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.127},"t":232,"s":[206.364,899.983,0],"to":[-0.047,-0.035,0],"ti":[0.08,0.039,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":233,"s":[206.164,899.863,0],"to":[-0.08,-0.039,0],"ti":[0.101,0.032,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.159},"t":234,"s":[205.885,899.748,0],"to":[-0.101,-0.032,0],"ti":[0.11,0.018,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.166},"t":235,"s":[205.56,899.668,0],"to":[-0.11,-0.018,0],"ti":[0.109,-0.002,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.171},"t":236,"s":[205.224,899.642,0],"to":[-0.109,0.002,0],"ti":[0.098,-0.023,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.176},"t":237,"s":[204.906,899.678,0],"to":[-0.098,0.023,0],"ti":[0.078,-0.041,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.18},"t":238,"s":[204.635,899.777,0],"to":[-0.078,0.041,0],"ti":[0.033,-0.025,0]},{"t":239,"s":[204.436,899.927,0]}],"ix":2,"l":2},"a":{"a":0,"k":[94.354,84.798,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":2,"nm":"particle 1","refId":"image_20","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"t":0,"s":[987.769,902.246,0],"to":[0.027,0.063,0],"ti":[-0.069,-0.115,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[987.928,902.622,0],"to":[0.069,0.115,0],"ti":[-0.102,-0.085,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.166},"t":2,"s":[988.184,902.934,0],"to":[0.102,0.085,0],"ti":[-0.133,-0.04,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.159},"t":3,"s":[988.538,903.132,0],"to":[0.133,0.04,0],"ti":[-0.159,0.017,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.153},"t":4,"s":[988.981,903.176,0],"to":[0.159,-0.017,0],"ti":[-0.177,0.082,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.151},"t":5,"s":[989.493,903.033,0],"to":[0.177,-0.082,0],"ti":[-0.182,0.154,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.152},"t":6,"s":[990.041,902.681,0],"to":[0.182,-0.154,0],"ti":[-0.171,0.228,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.154},"t":7,"s":[990.584,902.108,0],"to":[0.171,-0.228,0],"ti":[-0.149,0.243,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.183},"t":8,"s":[991.068,901.315,0],"to":[0.149,-0.243,0],"ti":[-0.121,0.17,0]},{"i":{"x":0.833,"y":0.875},"o":{"x":0.167,"y":0.219},"t":9,"s":[991.476,900.649,0],"to":[0.121,-0.17,0],"ti":[-0.088,0.077,0]},{"i":{"x":0.833,"y":0.87},"o":{"x":0.167,"y":0.251},"t":10,"s":[991.796,900.293,0],"to":[0.088,-0.077,0],"ti":[-0.049,0.003,0]},{"i":{"x":0.833,"y":0.782},"o":{"x":0.167,"y":0.232},"t":11,"s":[992.006,900.187,0],"to":[0.049,-0.003,0],"ti":[-0.008,-0.049,0]},{"i":{"x":0.833,"y":0.796},"o":{"x":0.167,"y":0.135},"t":12,"s":[992.093,900.272,0],"to":[0.008,0.049,0],"ti":[0.032,-0.081,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.141},"t":13,"s":[992.055,900.483,0],"to":[-0.032,0.081,0],"ti":[0.067,-0.09,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.155},"t":14,"s":[991.903,900.756,0],"to":[-0.067,0.09,0],"ti":[0.093,-0.076,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.166},"t":15,"s":[991.656,901.023,0],"to":[-0.093,0.076,0],"ti":[0.107,-0.038,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.173},"t":16,"s":[991.346,901.212,0],"to":[-0.107,0.038,0],"ti":[0.105,0.024,0]},{"i":{"x":0.833,"y":0.793},"o":{"x":0.167,"y":0.162},"t":17,"s":[991.015,901.252,0],"to":[-0.105,-0.024,0],"ti":[0.083,0.112,0]},{"i":{"x":0.833,"y":0.781},"o":{"x":0.167,"y":0.139},"t":18,"s":[990.717,901.067,0],"to":[-0.083,-0.112,0],"ti":[0.039,0.226,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.134},"t":19,"s":[990.515,900.58,0],"to":[-0.039,-0.226,0],"ti":[0.008,0.309,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.157},"t":20,"s":[990.482,899.712,0],"to":[-0.008,-0.309,0],"ti":[0.023,0.315,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.174},"t":21,"s":[990.467,898.726,0],"to":[-0.023,-0.315,0],"ti":[0.057,0.287,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.173},"t":22,"s":[990.344,897.823,0],"to":[-0.057,-0.287,0],"ti":[0.088,0.26,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.171},"t":23,"s":[990.124,897.005,0],"to":[-0.088,-0.26,0],"ti":[0.114,0.236,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.17},"t":24,"s":[989.817,896.263,0],"to":[-0.114,-0.236,0],"ti":[0.134,0.217,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.168},"t":25,"s":[989.441,895.588,0],"to":[-0.134,-0.217,0],"ti":[0.147,0.204,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[989.014,894.962,0],"to":[-0.147,-0.204,0],"ti":[0.151,0.198,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.167},"t":27,"s":[988.561,894.366,0],"to":[-0.151,-0.198,0],"ti":[0.147,0.203,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.166},"t":28,"s":[988.106,893.771,0],"to":[-0.147,-0.203,0],"ti":[0.132,0.219,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.164},"t":29,"s":[987.679,893.147,0],"to":[-0.132,-0.219,0],"ti":[0.105,0.249,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.16},"t":30,"s":[987.314,892.456,0],"to":[-0.105,-0.249,0],"ti":[0.066,0.293,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.156},"t":31,"s":[987.046,891.656,0],"to":[-0.066,-0.293,0],"ti":[0.014,0.339,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.158},"t":32,"s":[986.916,890.7,0],"to":[-0.014,-0.339,0],"ti":[-0.04,0.365,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.163},"t":33,"s":[986.962,889.622,0],"to":[0.04,-0.365,0],"ti":[-0.081,0.367,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":34,"s":[987.156,888.511,0],"to":[0.081,-0.367,0],"ti":[-0.107,0.353,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.17},"t":35,"s":[987.449,887.421,0],"to":[0.107,-0.353,0],"ti":[-0.12,0.329,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.173},"t":36,"s":[987.8,886.391,0],"to":[0.12,-0.329,0],"ti":[-0.121,0.297,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.176},"t":37,"s":[988.17,885.448,0],"to":[0.121,-0.297,0],"ti":[-0.111,0.263,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":38,"s":[988.524,884.606,0],"to":[0.111,-0.263,0],"ti":[-0.092,0.231,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.18},"t":39,"s":[988.835,883.868,0],"to":[0.092,-0.231,0],"ti":[-0.066,0.204,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.179},"t":40,"s":[989.077,883.221,0],"to":[0.066,-0.204,0],"ti":[-0.034,0.188,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.174},"t":41,"s":[989.23,882.642,0],"to":[0.034,-0.188,0],"ti":[0.003,0.185,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.164},"t":42,"s":[989.28,882.095,0],"to":[-0.003,-0.185,0],"ti":[0.042,0.201,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.154},"t":43,"s":[989.214,881.531,0],"to":[-0.042,-0.201,0],"ti":[0.082,0.196,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.173},"t":44,"s":[989.028,880.89,0],"to":[-0.082,-0.196,0],"ti":[0.115,0.152,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.18},"t":45,"s":[988.719,880.352,0],"to":[-0.115,-0.152,0],"ti":[0.131,0.112,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.172},"t":46,"s":[988.336,879.981,0],"to":[-0.131,-0.112,0],"ti":[0.129,0.102,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.169},"t":47,"s":[987.935,879.68,0],"to":[-0.129,-0.102,0],"ti":[0.115,0.116,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.165},"t":48,"s":[987.559,879.368,0],"to":[-0.115,-0.116,0],"ti":[0.091,0.148,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.158},"t":49,"s":[987.245,878.984,0],"to":[-0.091,-0.148,0],"ti":[0.061,0.193,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.152},"t":50,"s":[987.014,878.48,0],"to":[-0.061,-0.193,0],"ti":[0.028,0.246,0]},{"i":{"x":0.833,"y":0.817},"o":{"x":0.167,"y":0.151},"t":51,"s":[986.88,877.824,0],"to":[-0.028,-0.246,0],"ti":[-0.003,0.302,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.153},"t":52,"s":[986.846,877.001,0],"to":[0.003,-0.302,0],"ti":[-0.03,0.354,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.156},"t":53,"s":[986.901,876.013,0],"to":[0.03,-0.354,0],"ti":[-0.049,0.397,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.159},"t":54,"s":[987.026,874.878,0],"to":[0.049,-0.397,0],"ti":[-0.056,0.427,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.163},"t":55,"s":[987.192,873.628,0],"to":[0.056,-0.427,0],"ti":[-0.089,0.433,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.166},"t":56,"s":[987.361,872.315,0],"to":[0.089,-0.433,0],"ti":[-0.159,0.416,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.166},"t":57,"s":[987.727,871.028,0],"to":[0.159,-0.416,0],"ti":[-0.21,0.386,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.17},"t":58,"s":[988.315,869.82,0],"to":[0.21,-0.386,0],"ti":[-0.217,0.352,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.174},"t":59,"s":[988.985,868.711,0],"to":[0.217,-0.352,0],"ti":[-0.19,0.317,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.179},"t":60,"s":[989.619,867.708,0],"to":[0.19,-0.317,0],"ti":[-0.137,0.283,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.183},"t":61,"s":[990.125,866.811,0],"to":[0.137,-0.283,0],"ti":[-0.066,0.253,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.182},"t":62,"s":[990.44,866.012,0],"to":[0.066,-0.253,0],"ti":[0.013,0.231,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.171},"t":63,"s":[990.524,865.292,0],"to":[-0.013,-0.231,0],"ti":[0.093,0.22,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.159},"t":64,"s":[990.361,864.624,0],"to":[-0.093,-0.22,0],"ti":[0.165,0.223,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.154},"t":65,"s":[989.964,863.971,0],"to":[-0.165,-0.223,0],"ti":[0.22,0.242,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.155},"t":66,"s":[989.37,863.288,0],"to":[-0.22,-0.242,0],"ti":[0.25,0.28,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.157},"t":67,"s":[988.642,862.52,0],"to":[-0.25,-0.28,0],"ti":[0.252,0.278,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.178},"t":68,"s":[987.868,861.609,0],"to":[-0.252,-0.278,0],"ti":[0.231,0.203,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.194},"t":69,"s":[987.127,860.854,0],"to":[-0.231,-0.203,0],"ti":[0.191,0.122,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.199},"t":70,"s":[986.481,860.393,0],"to":[-0.191,-0.122,0],"ti":[0.138,0.075,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.212},"t":71,"s":[985.979,860.121,0],"to":[-0.138,-0.075,0],"ti":[0.076,0.056,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.228},"t":72,"s":[985.655,859.945,0],"to":[-0.076,-0.056,0],"ti":[0.013,0.062,0]},{"i":{"x":0.833,"y":0.772},"o":{"x":0.167,"y":0.163},"t":73,"s":[985.523,859.786,0],"to":[-0.013,-0.062,0],"ti":[-0.045,0.089,0]},{"i":{"x":0.833,"y":0.792},"o":{"x":0.167,"y":0.131},"t":74,"s":[985.578,859.574,0],"to":[0.045,-0.089,0],"ti":[-0.093,0.132,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.139},"t":75,"s":[985.795,859.255,0],"to":[0.093,-0.132,0],"ti":[-0.123,0.188,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.146},"t":76,"s":[986.134,858.783,0],"to":[0.123,-0.188,0],"ti":[-0.129,0.252,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.151},"t":77,"s":[986.532,858.128,0],"to":[0.129,-0.252,0],"ti":[-0.106,0.321,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.154},"t":78,"s":[986.91,857.269,0],"to":[0.106,-0.321,0],"ti":[-0.048,0.391,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.155},"t":79,"s":[987.17,856.2,0],"to":[0.048,-0.391,0],"ti":[0.032,0.438,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.161},"t":80,"s":[987.196,854.926,0],"to":[-0.032,-0.438,0],"ti":[0.096,0.447,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":81,"s":[986.978,853.569,0],"to":[-0.096,-0.447,0],"ti":[0.13,0.43,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.17},"t":82,"s":[986.621,852.243,0],"to":[-0.13,-0.43,0],"ti":[0.143,0.399,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.173},"t":83,"s":[986.196,850.992,0],"to":[-0.143,-0.399,0],"ti":[0.137,0.361,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.177},"t":84,"s":[985.763,849.846,0],"to":[-0.137,-0.361,0],"ti":[0.117,0.318,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.18},"t":85,"s":[985.372,848.826,0],"to":[-0.117,-0.318,0],"ti":[0.087,0.276,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":86,"s":[985.059,847.936,0],"to":[-0.087,-0.276,0],"ti":[0.049,0.238,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.182},"t":87,"s":[984.852,847.171,0],"to":[-0.049,-0.238,0],"ti":[0.009,0.208,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.177},"t":88,"s":[984.763,846.509,0],"to":[-0.009,-0.208,0],"ti":[-0.03,0.192,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.168},"t":89,"s":[984.797,845.92,0],"to":[0.03,-0.192,0],"ti":[-0.065,0.193,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.159},"t":90,"s":[984.944,845.358,0],"to":[0.065,-0.193,0],"ti":[-0.091,0.214,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.154},"t":91,"s":[985.185,844.764,0],"to":[0.091,-0.214,0],"ti":[-0.098,0.236,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.165},"t":92,"s":[985.488,844.071,0],"to":[0.098,-0.236,0],"ti":[-0.089,0.224,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.18},"t":93,"s":[985.773,843.349,0],"to":[0.089,-0.224,0],"ti":[-0.082,0.181,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.19},"t":94,"s":[986.024,842.729,0],"to":[0.082,-0.181,0],"ti":[-0.083,0.122,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.201},"t":95,"s":[986.266,842.266,0],"to":[0.083,-0.122,0],"ti":[-0.089,0.054,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.19},"t":96,"s":[986.519,841.997,0],"to":[0.089,-0.054,0],"ti":[-0.099,-0.016,0]},{"i":{"x":0.833,"y":0.8},"o":{"x":0.167,"y":0.152},"t":97,"s":[986.798,841.94,0],"to":[0.099,0.016,0],"ti":[-0.113,-0.082,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.143},"t":98,"s":[987.114,842.093,0],"to":[0.113,0.082,0],"ti":[-0.127,-0.138,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.149},"t":99,"s":[987.473,842.432,0],"to":[0.127,0.138,0],"ti":[-0.141,-0.176,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.156},"t":100,"s":[987.876,842.919,0],"to":[0.141,0.176,0],"ti":[-0.153,-0.191,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.164},"t":101,"s":[988.319,843.49,0],"to":[0.153,0.191,0],"ti":[-0.161,-0.177,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.173},"t":102,"s":[988.793,844.067,0],"to":[0.161,0.177,0],"ti":[-0.164,-0.125,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.185},"t":103,"s":[989.286,844.55,0],"to":[0.164,0.125,0],"ti":[-0.166,-0.057,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.175},"t":104,"s":[989.78,844.819,0],"to":[0.166,0.057,0],"ti":[-0.167,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.167},"t":105,"s":[990.285,844.892,0],"to":[0.167,0,0],"ti":[-0.16,0.051,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.165},"t":106,"s":[990.785,844.818,0],"to":[0.16,-0.051,0],"ti":[-0.144,0.103,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.161},"t":107,"s":[991.247,844.587,0],"to":[0.144,-0.103,0],"ti":[-0.121,0.152,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":108,"s":[991.647,844.201,0],"to":[0.121,-0.152,0],"ti":[-0.094,0.195,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.159},"t":109,"s":[991.97,843.673,0],"to":[0.094,-0.195,0],"ti":[-0.067,0.227,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.161},"t":110,"s":[992.211,843.03,0],"to":[0.067,-0.227,0],"ti":[-0.042,0.245,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.165},"t":111,"s":[992.372,842.309,0],"to":[0.042,-0.245,0],"ti":[-0.023,0.245,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.171},"t":112,"s":[992.465,841.559,0],"to":[0.023,-0.245,0],"ti":[-0.013,0.222,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.181},"t":113,"s":[992.512,840.841,0],"to":[0.013,-0.222,0],"ti":[-0.014,0.172,0]},{"i":{"x":0.833,"y":0.88},"o":{"x":0.167,"y":0.203},"t":114,"s":[992.542,840.229,0],"to":[0.014,-0.172,0],"ti":[-0.029,0.093,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.272},"t":115,"s":[992.596,839.807,0],"to":[0.029,-0.093,0],"ti":[-0.002,0.028,0]},{"i":{"x":0.833,"y":0.587},"o":{"x":0.167,"y":0.21},"t":116,"s":[992.716,839.668,0],"to":[0.002,-0.028,0],"ti":[0.099,0.017,0]},{"i":{"x":0.833,"y":0.785},"o":{"x":0.167,"y":0.104},"t":117,"s":[992.606,839.641,0],"to":[-0.099,-0.017,0],"ti":[0.208,0.033,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.136},"t":118,"s":[992.121,839.567,0],"to":[-0.208,-0.033,0],"ti":[0.287,0.05,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.15},"t":119,"s":[991.356,839.443,0],"to":[-0.287,-0.05,0],"ti":[0.338,0.069,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.158},"t":120,"s":[990.397,839.267,0],"to":[-0.338,-0.069,0],"ti":[0.361,0.086,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.164},"t":121,"s":[989.328,839.027,0],"to":[-0.361,-0.086,0],"ti":[0.358,0.097,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.17},"t":122,"s":[988.23,838.749,0],"to":[-0.358,-0.097,0],"ti":[0.331,0.101,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.176},"t":123,"s":[987.178,838.447,0],"to":[-0.331,-0.101,0],"ti":[0.281,0.099,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.185},"t":124,"s":[986.244,838.14,0],"to":[-0.281,-0.099,0],"ti":[0.209,0.086,0]},{"i":{"x":0.833,"y":0.881},"o":{"x":0.167,"y":0.204},"t":125,"s":[985.494,837.852,0],"to":[-0.209,-0.086,0],"ti":[0.116,0.061,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.276},"t":126,"s":[984.992,837.621,0],"to":[-0.116,-0.061,0],"ti":[0.005,0.02,0]},{"i":{"x":0.833,"y":0.639},"o":{"x":0.167,"y":0.193},"t":127,"s":[984.797,837.488,0],"to":[-0.005,-0.02,0],"ti":[-0.114,-0.053,0]},{"i":{"x":0.833,"y":0.784},"o":{"x":0.167,"y":0.108},"t":128,"s":[984.962,837.5,0],"to":[0.114,0.053,0],"ti":[-0.212,-0.149,0]},{"i":{"x":0.833,"y":0.815},"o":{"x":0.167,"y":0.136},"t":129,"s":[985.482,837.804,0],"to":[0.212,0.149,0],"ti":[-0.271,-0.23,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.152},"t":130,"s":[986.237,838.397,0],"to":[0.271,0.23,0],"ti":[-0.293,-0.28,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.161},"t":131,"s":[987.107,839.183,0],"to":[0.293,0.28,0],"ti":[-0.285,-0.304,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.168},"t":132,"s":[987.993,840.078,0],"to":[0.285,0.304,0],"ti":[-0.253,-0.305,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.174},"t":133,"s":[988.815,841.007,0],"to":[0.253,0.305,0],"ti":[-0.203,-0.287,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.181},"t":134,"s":[989.51,841.908,0],"to":[0.203,0.287,0],"ti":[-0.142,-0.253,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.188},"t":135,"s":[990.035,842.727,0],"to":[0.142,0.253,0],"ti":[-0.076,-0.207,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.198},"t":136,"s":[990.364,843.424,0],"to":[0.076,0.207,0],"ti":[-0.011,-0.152,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.206},"t":137,"s":[990.492,843.967,0],"to":[0.011,0.152,0],"ti":[0.047,-0.093,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.19},"t":138,"s":[990.431,844.336,0],"to":[-0.047,0.093,0],"ti":[0.091,-0.032,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.158},"t":139,"s":[990.211,844.524,0],"to":[-0.091,0.032,0],"ti":[0.101,0.024,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.17},"t":140,"s":[989.884,844.53,0],"to":[-0.101,-0.024,0],"ti":[0.073,0.058,0]},{"i":{"x":0.833,"y":0.866},"o":{"x":0.167,"y":0.188},"t":141,"s":[989.603,844.383,0],"to":[-0.073,-0.058,0],"ti":[0.031,0.058,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.219},"t":142,"s":[989.448,844.184,0],"to":[-0.031,-0.058,0],"ti":[-0.009,0.029,0]},{"i":{"x":0.833,"y":0.716},"o":{"x":0.167,"y":0.209},"t":143,"s":[989.417,844.034,0],"to":[0.009,-0.029,0],"ti":[-0.046,-0.022,0]},{"i":{"x":0.833,"y":0.762},"o":{"x":0.167,"y":0.118},"t":144,"s":[989.504,844.011,0],"to":[0.046,0.022,0],"ti":[-0.078,-0.088,0]},{"i":{"x":0.833,"y":0.794},"o":{"x":0.167,"y":0.128},"t":145,"s":[989.696,844.169,0],"to":[0.078,0.088,0],"ti":[-0.101,-0.16,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.14},"t":146,"s":[989.971,844.539,0],"to":[0.101,0.16,0],"ti":[-0.114,-0.232,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.148},"t":147,"s":[990.303,845.131,0],"to":[0.114,0.232,0],"ti":[-0.115,-0.294,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.154},"t":148,"s":[990.657,845.93,0],"to":[0.115,0.294,0],"ti":[-0.101,-0.341,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.16},"t":149,"s":[990.994,846.898,0],"to":[0.101,0.341,0],"ti":[-0.07,-0.362,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.167},"t":150,"s":[991.264,847.974,0],"to":[0.07,0.362,0],"ti":[-0.02,-0.353,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.174},"t":151,"s":[991.416,849.072,0],"to":[0.02,0.353,0],"ti":[0.054,-0.342,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.162},"t":152,"s":[991.386,850.09,0],"to":[-0.054,0.342,0],"ti":[0.139,-0.357,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.156},"t":153,"s":[991.093,851.126,0],"to":[-0.139,0.357,0],"ti":[0.213,-0.369,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.161},"t":154,"s":[990.552,852.233,0],"to":[-0.213,0.369,0],"ti":[0.268,-0.359,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.164},"t":155,"s":[989.818,853.338,0],"to":[-0.268,0.359,0],"ti":[0.304,-0.333,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.168},"t":156,"s":[988.947,854.386,0],"to":[-0.304,0.333,0],"ti":[0.324,-0.297,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.17},"t":157,"s":[987.991,855.336,0],"to":[-0.324,0.297,0],"ti":[0.326,-0.255,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.173},"t":158,"s":[987.004,856.165,0],"to":[-0.326,0.255,0],"ti":[0.312,-0.212,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.176},"t":159,"s":[986.035,856.864,0],"to":[-0.312,0.212,0],"ti":[0.281,-0.175,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.18},"t":160,"s":[985.134,857.44,0],"to":[-0.281,0.175,0],"ti":[0.235,-0.148,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.186},"t":161,"s":[984.348,857.916,0],"to":[-0.235,0.148,0],"ti":[0.174,-0.136,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.19},"t":162,"s":[983.724,858.329,0],"to":[-0.174,0.136,0],"ti":[0.097,-0.145,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.18},"t":163,"s":[983.307,858.734,0],"to":[-0.097,0.145,0],"ti":[-0.012,-0.167,0]},{"i":{"x":0.833,"y":0.794},"o":{"x":0.167,"y":0.154},"t":164,"s":[983.141,859.2,0],"to":[0.012,0.167,0],"ti":[-0.148,-0.186,0]},{"i":{"x":0.833,"y":0.807},"o":{"x":0.167,"y":0.14},"t":165,"s":[983.38,859.737,0],"to":[0.148,0.186,0],"ti":[-0.269,-0.201,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.147},"t":166,"s":[984.031,860.318,0],"to":[0.269,0.201,0],"ti":[-0.357,-0.213,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.154},"t":167,"s":[984.993,860.94,0],"to":[0.357,0.213,0],"ti":[-0.413,-0.224,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.16},"t":168,"s":[986.17,861.598,0],"to":[0.413,0.224,0],"ti":[-0.44,-0.233,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.164},"t":169,"s":[987.471,862.286,0],"to":[0.44,0.233,0],"ti":[-0.438,-0.239,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.169},"t":170,"s":[988.808,862.996,0],"to":[0.438,0.239,0],"ti":[-0.409,-0.242,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.173},"t":171,"s":[990.098,863.721,0],"to":[0.409,0.242,0],"ti":[-0.355,-0.242,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.178},"t":172,"s":[991.263,864.449,0],"to":[0.355,0.242,0],"ti":[-0.276,-0.238,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.185},"t":173,"s":[992.226,865.172,0],"to":[0.276,0.238,0],"ti":[-0.174,-0.229,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.191},"t":174,"s":[992.917,865.875,0],"to":[0.174,0.229,0],"ti":[-0.052,-0.215,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.185},"t":175,"s":[993.271,866.545,0],"to":[0.052,0.215,0],"ti":[0.03,-0.165,0]},{"i":{"x":0.833,"y":0.888},"o":{"x":0.167,"y":0.217},"t":176,"s":[993.229,867.167,0],"to":[-0.03,0.165,0],"ti":[0.031,-0.082,0]},{"i":{"x":0.833,"y":0.889},"o":{"x":0.167,"y":0.33},"t":177,"s":[993.094,867.534,0],"to":[-0.031,0.082,0],"ti":[0.011,-0.027,0]},{"i":{"x":0.833,"y":0.737},"o":{"x":0.167,"y":0.338},"t":178,"s":[993.045,867.656,0],"to":[-0.011,0.027,0],"ti":[0.006,-0.022,0]},{"i":{"x":0.833,"y":0.693},"o":{"x":0.167,"y":0.122},"t":179,"s":[993.031,867.697,0],"to":[-0.006,0.022,0],"ti":[0.013,-0.056,0]},{"i":{"x":0.833,"y":0.756},"o":{"x":0.167,"y":0.114},"t":180,"s":[993.011,867.789,0],"to":[-0.013,0.056,0],"ti":[0.029,-0.119,0]},{"i":{"x":0.833,"y":0.785},"o":{"x":0.167,"y":0.126},"t":181,"s":[992.954,868.034,0],"to":[-0.029,0.119,0],"ti":[0.053,-0.201,0]},{"i":{"x":0.833,"y":0.801},"o":{"x":0.167,"y":0.136},"t":182,"s":[992.835,868.504,0],"to":[-0.053,0.201,0],"ti":[0.08,-0.293,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.144},"t":183,"s":[992.638,869.242,0],"to":[-0.08,0.293,0],"ti":[0.107,-0.384,0]},{"i":{"x":0.833,"y":0.819},"o":{"x":0.167,"y":0.149},"t":184,"s":[992.357,870.263,0],"to":[-0.107,0.384,0],"ti":[0.133,-0.465,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.154},"t":185,"s":[991.993,871.547,0],"to":[-0.133,0.465,0],"ti":[0.154,-0.524,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.159},"t":186,"s":[991.557,873.05,0],"to":[-0.154,0.524,0],"ti":[0.168,-0.554,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.165},"t":187,"s":[991.067,874.694,0],"to":[-0.168,0.554,0],"ti":[0.197,-0.548,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":188,"s":[990.547,876.374,0],"to":[-0.197,0.548,0],"ti":[0.24,-0.519,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.169},"t":189,"s":[989.886,877.985,0],"to":[-0.24,0.519,0],"ti":[0.259,-0.478,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.173},"t":190,"s":[989.104,879.487,0],"to":[-0.259,0.478,0],"ti":[0.24,-0.432,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.177},"t":191,"s":[988.331,880.855,0],"to":[-0.24,0.432,0],"ti":[0.192,-0.384,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":192,"s":[987.664,882.079,0],"to":[-0.192,0.384,0],"ti":[0.125,-0.338,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.184},"t":193,"s":[987.178,883.159,0],"to":[-0.125,0.338,0],"ti":[0.047,-0.298,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.181},"t":194,"s":[986.917,884.107,0],"to":[-0.047,0.298,0],"ti":[-0.033,-0.268,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.171},"t":195,"s":[986.899,884.948,0],"to":[0.033,0.268,0],"ti":[-0.105,-0.252,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.162},"t":196,"s":[987.115,885.715,0],"to":[0.105,0.252,0],"ti":[-0.161,-0.253,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":197,"s":[987.53,886.458,0],"to":[0.161,0.253,0],"ti":[-0.19,-0.276,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.158},"t":198,"s":[988.079,887.235,0],"to":[0.19,0.276,0],"ti":[-0.185,-0.325,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.158},"t":199,"s":[988.671,888.117,0],"to":[0.185,0.325,0],"ti":[-0.145,-0.337,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.18},"t":200,"s":[989.19,889.182,0],"to":[0.145,0.337,0],"ti":[-0.089,-0.27,0]},{"i":{"x":0.833,"y":0.867},"o":{"x":0.167,"y":0.207},"t":201,"s":[989.539,890.141,0],"to":[0.089,0.27,0],"ti":[-0.037,-0.178,0]},{"i":{"x":0.833,"y":0.872},"o":{"x":0.167,"y":0.223},"t":202,"s":[989.722,890.803,0],"to":[0.037,0.178,0],"ti":[0.007,-0.101,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.237},"t":203,"s":[989.76,891.211,0],"to":[-0.007,0.101,0],"ti":[0.042,-0.041,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.184},"t":204,"s":[989.679,891.412,0],"to":[-0.042,0.041,0],"ti":[0.068,0.001,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.147},"t":205,"s":[989.505,891.458,0],"to":[-0.068,-0.001,0],"ti":[0.082,0.024,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.156},"t":206,"s":[989.271,891.405,0],"to":[-0.082,-0.024,0],"ti":[0.085,0.027,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.173},"t":207,"s":[989.011,891.313,0],"to":[-0.085,-0.027,0],"ti":[0.074,0.008,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.191},"t":208,"s":[988.763,891.243,0],"to":[-0.074,-0.008,0],"ti":[0.048,-0.034,0]},{"i":{"x":0.833,"y":0.752},"o":{"x":0.167,"y":0.161},"t":209,"s":[988.569,891.265,0],"to":[-0.048,0.034,0],"ti":[0.007,-0.101,0]},{"i":{"x":0.833,"y":0.765},"o":{"x":0.167,"y":0.125},"t":210,"s":[988.474,891.448,0],"to":[-0.007,0.101,0],"ti":[-0.05,-0.193,0]},{"i":{"x":0.833,"y":0.81},"o":{"x":0.167,"y":0.129},"t":211,"s":[988.525,891.869,0],"to":[0.05,0.193,0],"ti":[-0.094,-0.279,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.148},"t":212,"s":[988.773,892.604,0],"to":[0.094,0.279,0],"ti":[-0.096,-0.319,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.166},"t":213,"s":[989.092,893.545,0],"to":[0.096,0.319,0],"ti":[-0.07,-0.315,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.173},"t":214,"s":[989.35,894.517,0],"to":[0.07,0.315,0],"ti":[-0.036,-0.286,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.18},"t":215,"s":[989.514,895.435,0],"to":[0.036,0.286,0],"ti":[0.004,-0.239,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":216,"s":[989.564,896.234,0],"to":[-0.004,0.239,0],"ti":[0.044,-0.18,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.193},"t":217,"s":[989.492,896.869,0],"to":[-0.044,0.18,0],"ti":[0.08,-0.116,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.187},"t":218,"s":[989.303,897.314,0],"to":[-0.08,0.116,0],"ti":[0.11,-0.054,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.169},"t":219,"s":[989.01,897.565,0],"to":[-0.11,0.054,0],"ti":[0.129,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.16},"t":220,"s":[988.642,897.636,0],"to":[-0.129,0,0],"ti":[0.133,0.04,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.164},"t":221,"s":[988.236,897.563,0],"to":[-0.133,-0.04,0],"ti":[0.118,0.058,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.181},"t":222,"s":[987.845,897.398,0],"to":[-0.118,-0.058,0],"ti":[0.08,0.048,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.237},"t":223,"s":[987.53,897.217,0],"to":[-0.08,-0.048,0],"ti":[0.041,0.043,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.178},"t":224,"s":[987.365,897.11,0],"to":[-0.041,-0.043,0],"ti":[0.021,0.062,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.148},"t":225,"s":[987.283,896.959,0],"to":[-0.021,-0.062,0],"ti":[0.004,0.066,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.186},"t":226,"s":[987.238,896.74,0],"to":[-0.004,-0.066,0],"ti":[-0.022,0.039,0]},{"i":{"x":0.833,"y":0.765},"o":{"x":0.167,"y":0.196},"t":227,"s":[987.261,896.561,0],"to":[0.022,-0.039,0],"ti":[-0.053,-0.011,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.129},"t":228,"s":[987.372,896.505,0],"to":[0.053,0.011,0],"ti":[-0.086,-0.075,0]},{"i":{"x":0.833,"y":0.793},"o":{"x":0.167,"y":0.128},"t":229,"s":[987.581,896.628,0],"to":[0.086,0.075,0],"ti":[-0.117,-0.145,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.139},"t":230,"s":[987.889,896.958,0],"to":[0.117,0.145,0],"ti":[-0.143,-0.212,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.148},"t":231,"s":[988.285,897.5,0],"to":[0.143,0.212,0],"ti":[-0.161,-0.266,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.155},"t":232,"s":[988.749,898.23,0],"to":[0.161,0.266,0],"ti":[-0.167,-0.299,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.163},"t":233,"s":[989.251,899.098,0],"to":[0.167,0.299,0],"ti":[-0.158,-0.303,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.172},"t":234,"s":[989.751,900.026,0],"to":[0.158,0.303,0],"ti":[-0.131,-0.268,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.187},"t":235,"s":[990.199,900.914,0],"to":[0.131,0.268,0],"ti":[-0.12,-0.241,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.164},"t":236,"s":[990.536,901.636,0],"to":[0.12,0.241,0],"ti":[-0.147,-0.259,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.154},"t":237,"s":[990.919,902.361,0],"to":[0.147,0.259,0],"ti":[-0.176,-0.282,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.162},"t":238,"s":[991.42,903.192,0],"to":[0.176,0.282,0],"ti":[-0.092,-0.144,0]},{"t":239,"s":[991.974,904.054,0]}],"ix":2,"l":2},"a":{"a":0,"k":[94.354,84.798,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]},{"id":"comp_7","nm":"hands","fr":60,"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"right hand","refId":"image_21","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[-5]},{"t":239,"s":[5]}],"ix":10},"p":{"a":0,"k":[731.256,691.973,0],"ix":2,"l":2},"a":{"a":0,"k":[12.127,1.208,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"left hand","refId":"image_22","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[-5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":120,"s":[5]},{"t":239,"s":[-5]}],"ix":10},"p":{"a":0,"k":[463.313,691.723,0],"ix":2,"l":2},"a":{"a":0,"k":[395.376,0.958,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":240,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Doctor","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[600,600,0],"ix":2,"l":2},"a":{"a":0,"k":[600,600,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1200,"h":1200,"ip":0,"op":240,"st":0,"bm":0}],"markers":[],"props":{}} \ No newline at end of file diff --git a/frontend/react-code/src/assets/react.svg b/frontend/react-code/src/assets/react.svg new file mode 100644 index 0000000000000000000000000000000000000000..6c87de9bb3358469122cc991d5cf578927246184 --- /dev/null +++ b/frontend/react-code/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/react-code/src/components/About.jsx b/frontend/react-code/src/components/About.jsx new file mode 100644 index 0000000000000000000000000000000000000000..77195dbdf99f07f90a2be7a797306c9155942451 --- /dev/null +++ b/frontend/react-code/src/components/About.jsx @@ -0,0 +1,644 @@ +import React from "react"; + +const About = () => { + return ( + <> +
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+ + + + Why Choose MediScape? + + + +

+ Mediscape stands out with its cutting-edge AI technology that + integrates seamlessly into your workflow, offering + comprehensive tools for handwriting analysis, disease + detection, and symptom-based diagnostics. +

+

+ Our platform is designed to enhance accuracy and efficiency + while ensuring robust data security and compliance with + healthcare regulations. With future-ready solutions and a + dedicated support team, Mediscape provides a transformative + healthcare automation experience that keeps you ahead in the + field of medical technology. +

+
+
+
+
+
+ + ); +}; + +export default About; diff --git a/frontend/react-code/src/components/Contact.jsx b/frontend/react-code/src/components/Contact.jsx new file mode 100644 index 0000000000000000000000000000000000000000..4f221487eb61660c4426c69d01601e621ed8831a --- /dev/null +++ b/frontend/react-code/src/components/Contact.jsx @@ -0,0 +1,74 @@ +import React from "react"; + +const Contact = () => { + return ( +
+
+
+
+
+
+
+ ContactUs tailwind section +

+ Contact us +

+
+
+
+
+

+ Send Us A Message +

+ + + + + + + + + +
+
+
+
+
+ ); +}; + +export default Contact; diff --git a/frontend/react-code/src/components/Faq.jsx b/frontend/react-code/src/components/Faq.jsx new file mode 100644 index 0000000000000000000000000000000000000000..d0054944e032be080bd619e9ef6d14b73415e248 --- /dev/null +++ b/frontend/react-code/src/components/Faq.jsx @@ -0,0 +1,118 @@ +import React, { useState } from "react"; + +const Faq = () => { + const [faq, setFaq] = useState([ + { + question: "What is Mediscape?", + answer: + "Mediscape is an AI-powered healthcare automation system designed to assist doctors with various tasks, such as analyzing handwritten notes, detecting diseases from medical images, and providing diagnostic insights based on symptoms. Our platform integrates advanced AI technology to streamline workflows and enhance patient care.", + open: false, + }, + { + question: "How does Mediscape analyze doctor handwriting?", + answer: + "Mediscape uses state-of-the-art optical character recognition (OCR) and machine learning algorithms to accurately digitize and interpret handwritten notes. This feature helps doctors save time and reduces errors in patient record management by converting handwritten text into easily searchable digital documents.", + open: false, + }, + { + question: "Can Mediscape detect all types of diseases from images?", + answer: + "While Mediscape is equipped with advanced AI models capable of identifying and classifying a wide range of diseases from medical images, its accuracy is continually being improved. Our system is trained on extensive datasets to provide reliable diagnostic suggestions, but it is always recommended to use it in conjunction with professional medical judgment.", + open: false, + }, + { + question: "What future features can I expect from Mediscape?", + answer: + "We are continuously working on expanding Mediscapes capabilities. Upcoming features include drug analysis, which will assist in understanding drug interactions and effects, and an outbreak detection system that will help identify and respond to potential health crises quickly and effectively.", + open: false, + }, + ]); + + const toggleFaq = (index) => { + setFaq( + faq.map((item, i) => { + if (i === index) { + item.open = !item.open; + } else { + item.open = false; + } + + return item; + }) + ); + }; + + return ( +
+
+
+ + + + Frequenty Asked Questions + + +

+
+ +
+ {faq.map((item, index) => ( +
+ + +
+

+
+
+ ))} +
+ +

+ Didn’t find the answer you are looking for?{" "} + + Contact our support + +

+
+
+ ); +}; + +export default Faq; diff --git a/frontend/react-code/src/components/Feature.jsx b/frontend/react-code/src/components/Feature.jsx new file mode 100644 index 0000000000000000000000000000000000000000..f3439557039d5f7a14fa48bfdff30b642a6768f6 --- /dev/null +++ b/frontend/react-code/src/components/Feature.jsx @@ -0,0 +1,386 @@ +import React from "react"; + +const Feature = () => { + return ( +
+
+
+
+ + + + Features We Provide + + +

+ World's most advanced Healthcare Automation System +

+
+ +
+
+ + + + + +

+ Doctor Handwriting Analysis +

+

+ Automatically extract and digitize doctor notes from handwritten + images to streamline record-keeping and analysis. +

+
+ +
+ + + + + + + +

+ Disease Detection and Classification +

+

+ Utilize AI to analyze medical images for rapid and accurate + disease identification and classification. +

+
+ +
+ + + + + + +

+ Symptom Analysis +

+

+ Input symptom images and text to receive quick, AI-driven + diagnostic suggestions, improving diagnosis speed and accuracy. +

+
+ +
+ + + + + + + +

+ Data Security and Compliance +

+

+ Ensure patient data is secure and complies with all relevant + healthcare regulations and standards. +

+
+ +
+ + + + +

+ User Friendly Interface +

+

+ Navigate our intuitive interface with ease, designed to + integrate seamlessly into your existing workflow. +

+
+ +
+ + + + +

+ Future Ready Technology +

+

+ Our roadmap includes powerful features like drug analysis and + outbreak detection to help you stay ahead of healthcare + challenges. +

+
+
+
+
+ +
+
+
+ + + + How does it work? + + +
+ +
+
+ +
+ +
+
+
+ + {" "} + 1{" "} + +
+

+ Upload Images and Text +

+

+ Easily upload images of handwritten notes, medical images, or + symptom descriptions. +

+
+ +
+
+ + {" "} + 2{" "} + +
+

+ AI Powered Analysis +

+

+ Our advanced AI algorithms analyze the inputs to extract + meaningful insights and identify patterns. +

+
+ +
+
+ + {" "} + 3{" "} + +
+

+ Instant Results +

+

+ Receive instant, accurate results on disease classification + and potential diagnoses to assist in decision-making. +

+
+
+
+
+
+
+ ); +}; + +export default Feature; diff --git a/frontend/react-code/src/components/Footer.jsx b/frontend/react-code/src/components/Footer.jsx new file mode 100644 index 0000000000000000000000000000000000000000..1205119be98e101b9fe99da3bca0554722507842 --- /dev/null +++ b/frontend/react-code/src/components/Footer.jsx @@ -0,0 +1,123 @@ +import React from "react"; + +const Footer = () => { + return ( +
+ +
+ ); +}; + +export default Footer; diff --git a/frontend/react-code/src/components/Hero.jsx b/frontend/react-code/src/components/Hero.jsx new file mode 100644 index 0000000000000000000000000000000000000000..ec93e2c054cc8874d273da77b8a68e9f6a86f2c5 --- /dev/null +++ b/frontend/react-code/src/components/Hero.jsx @@ -0,0 +1,111 @@ +import React, { useState } from "react"; +import videoSrc from "../assets/falcondemo.mp4"; +import Lottie from "lottie-react"; +import animationData from "../assets/lottie.json"; +const Hero = () => { + return ( +
+
+
+
+

+ Medi + + + Scape + +

+ + +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+ Transforming Healthcare with + + + + AI Automation + + +

+ +

+ Mediscape is designed to streamline your workflow and enhance + patient outcomes. Discover the future of healthcare with our + AI-powered system that turns complex data into actionable + insights. +

+
+ +
+ +
+
+
+
+
+ ); +}; + +export default Hero; diff --git a/frontend/react-code/src/components/Home.jsx b/frontend/react-code/src/components/Home.jsx new file mode 100644 index 0000000000000000000000000000000000000000..f7c3860d00f7be7315b16ad26144c92efe2dfefe --- /dev/null +++ b/frontend/react-code/src/components/Home.jsx @@ -0,0 +1,28 @@ +import React from "react"; +import Hero from "./Hero"; + +import Feature from "./Feature"; + +import Testimonials from "./Testimonials"; +import Faq from "./Faq"; +import Team from "./Team"; +import About from "./About"; +import Pricing from "./Pricing"; +import Contact from "./Contact"; + +const Home = () => { + return ( +
+ + + + + + + + +
+ ); +}; + +export default Home; diff --git a/frontend/react-code/src/components/Navbar.jsx b/frontend/react-code/src/components/Navbar.jsx new file mode 100644 index 0000000000000000000000000000000000000000..51e723e7042814cf350237d67d9580747e175604 --- /dev/null +++ b/frontend/react-code/src/components/Navbar.jsx @@ -0,0 +1,181 @@ +import React from "react"; +import { useState } from "react"; + +const Navbar = () => { + const [expanded, setExpanded] = useState(false); + return ( +
+
+
+ + +
+ +
+ + + + +
+ + {expanded && ( + + )} +
+
+ ); +}; + +export default Navbar; diff --git a/frontend/react-code/src/components/Pricing.jsx b/frontend/react-code/src/components/Pricing.jsx new file mode 100644 index 0000000000000000000000000000000000000000..3e7f16e04f198888b7b58b628f21a1132f7d7394 --- /dev/null +++ b/frontend/react-code/src/components/Pricing.jsx @@ -0,0 +1,224 @@ +import React from "react"; + +const Pricing = () => { + return ( +
+
+
+ + + + Pricing + + +

+ Get familiar with our pricing plans +

+
+ + {/* lg+ */} +
+ + + + + + + + + + + + + {/* Example Row */} + + + + + + + + {/* Repeat for other rows */} + + + {/* Example Row */} + + + + + + + + {/* Repeat for other rows */} + + + {/* Example Row */} + + + + + + + + {/* Repeat for other rows */} + + + {/* Example Row */} + + + + + + + + {/* Repeat for other rows */} + + + {/* Example Row */} + + + + + + + + {/* Repeat for other rows */} + +
+ + {" "} + Free{" "} + +

$0

+

+ Per month +

+
+ + {" "} + Individuals{" "} + +

$150

+

+ Per month +

+
+ + {" "} + Popular{" "} + +

$250

+

+ Per month +

+
+ + {" "} + Enterprise and Hospitals{" "} + +

$850

+

+ Per month +

+
+ Credits + + 200 + + 600 + + 1000 + + 5000 +
+ Access to core features + + ✅ + + ✅ + + ✅ + + ✅ +
+ Advanced Diagnostic tools + + ⌠+ + ✅ + + ✅ + + ✅ +
+ Affiliate Plan + + ⌠+ + ⌠+ + ✅ + + ✅ +
+ Priority Customer Support 24/7 + + ⌠+ + ✅ + + ✅ + + ✅ +
+
+ + {/* xs to lg */} +
+
+
+ Free +

$0

+ + {" "} + Per month{" "} + +
+
+ Team +

$99

+ + {" "} + Per month{" "} + +
+
+ + {" "} + Popular{" "} + +

$150

+ + {" "} + Per month{" "} + +
+
+ + {" "} + Enterprise{" "} + +

$490

+ + {" "} + Per month{" "} + +
+
+
+
+
+ ); +}; + +export default Pricing; diff --git a/frontend/react-code/src/components/Team.jsx b/frontend/react-code/src/components/Team.jsx new file mode 100644 index 0000000000000000000000000000000000000000..86f1d9718bb7328e66a68f55df38dd07c2573d7c --- /dev/null +++ b/frontend/react-code/src/components/Team.jsx @@ -0,0 +1,103 @@ +import React from "react"; + +const Team = () => { + return ( +
+
+
+
+

+ Meet the + + + Team + +

+

+ These people work on making our product best. +

+
+
+
+
+ Vysh image +
+

+ Vyshnavi Doke +

+ + Generative AI Engineer + +
+
+
+ Shayan image +
+

+ Shayan Chakraborty +

+ + Founder + +
+
+
+ Dj image +
+

+ Lethlogonolo Fanampe +

+ + Backend Evangelist + +
+
+
+ Diwakar image +
+

+ Diwakar Mainali +

+ + Co-Founder and CEO + +
+
+
+ Ayesha image +
+

+ Ayesha Virk +

+ + Business Specialist + +
+
+
+
+
+ ); +}; + +export default Team; diff --git a/frontend/react-code/src/components/Testimonials.jsx b/frontend/react-code/src/components/Testimonials.jsx new file mode 100644 index 0000000000000000000000000000000000000000..fd12ae232ee2bff2cb78f12f4673f9d7fe34ded7 --- /dev/null +++ b/frontend/react-code/src/components/Testimonials.jsx @@ -0,0 +1,116 @@ +import React from "react"; + +const TestimonialCard = ({ avatar, name, title, review }) => ( +
+
+
+
+ {[...Array(5)].map((_, i) => ( + + + + ))} +
+ +
+

+ {review} +

+
+
+ +
+ {name} +
+

{name}

+

{title}

+
+
+
+
+); + +const Testimonials = () => { + const testimonials = [ + { + avatar: + "https://plus.unsplash.com/premium_photo-1690407617686-d449aa2aad3c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", + name: "Dr. Sarah Thompson", + title: "Cardiologist", + review: + "Mediscape has revolutionized the way I interact with patient data. The handwriting analysis feature alone has saved me countless hours and improved my accuracy in patient record management.", + }, + { + avatar: + "https://plus.unsplash.com/premium_photo-1661745702156-cd4b0382455f?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", + name: "Dr. John Lee", + title: "General Practitioner", + review: + "The AI-powered disease detection system in Mediscape has become an invaluable tool in my practice. It provides me with accurate insights quickly, allowing me to focus more on patient care", + }, + { + avatar: + "https://images.unsplash.com/photo-1616776005756-4dca36124bf9?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", + name: "Dr. Emily Grant", + title: "General Physician", + review: + "I can't imagine going back to my old methods after using Mediscape. The symptom analysis feature has enhanced my diagnostic capabilities and improved my patient outcomes", + }, + ]; + + return ( +
+
+
+
+ + + + Testimonials + + +
+ + + +
+
+
+
+ +
+ {testimonials.map((testimonial, index) => ( + + ))} +
+
+
+
+
+ ); +}; + +export default Testimonials; diff --git a/frontend/react-code/src/index.css b/frontend/react-code/src/index.css new file mode 100644 index 0000000000000000000000000000000000000000..f7d431e4ff2bb26b5e8f883913a2add63d338064 --- /dev/null +++ b/frontend/react-code/src/index.css @@ -0,0 +1,174 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; +* { + scroll-behavior: smooth; +} +.tracking-in-contract { + -webkit-animation: tracking-in-contract 2s cubic-bezier(0.215, 0.61, 0.355, 1) + both; + animation: tracking-in-contract 2s cubic-bezier(0.215, 0.61, 0.355, 1) both; +} + +@-webkit-keyframes tracking-in-contract { + 0% { + letter-spacing: 1em; + opacity: 0; + } + 40% { + opacity: 0.6; + } + 100% { + letter-spacing: normal; + opacity: 1; + } +} +@keyframes tracking-in-contract { + 0% { + letter-spacing: 1em; + opacity: 0; + } + 40% { + opacity: 0.6; + } + 100% { + letter-spacing: normal; + opacity: 1; + } +} + +.tracking-in-expand { + -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) + both; + animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both; +} + +@-webkit-keyframes tracking-in-expand { + 0% { + letter-spacing: -0.5em; + opacity: 0; + } + 40% { + opacity: 0.6; + } + 100% { + opacity: 1; + } +} +@keyframes tracking-in-expand { + 0% { + letter-spacing: -0.5em; + opacity: 0; + } + 40% { + opacity: 0.6; + } + 100% { + opacity: 1; + } +} +.focus-in-contract { + -webkit-animation: focus-in-contract 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) + both; + animation: focus-in-contract 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; +} + +@-webkit-keyframes focus-in-contract { + 0% { + letter-spacing: 1em; + -webkit-filter: blur(12px); + filter: blur(12px); + opacity: 0; + } + 100% { + -webkit-filter: blur(0px); + filter: blur(0px); + opacity: 1; + } +} +@keyframes focus-in-contract { + 0% { + letter-spacing: 1em; + -webkit-filter: blur(12px); + filter: blur(12px); + opacity: 0; + } + 100% { + -webkit-filter: blur(0px); + filter: blur(0px); + opacity: 1; + } +} +.heartbeat { + -webkit-animation: heartbeat 1.5s ease-in-out infinite both; + animation: heartbeat 1.5s ease-in-out infinite both; +} + +@-webkit-keyframes heartbeat { + from { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -webkit-transform: scale(0.91); + transform: scale(0.91); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -webkit-transform: scale(0.98); + transform: scale(0.98); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -webkit-transform: scale(0.87); + transform: scale(0.87); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@keyframes heartbeat { + from { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -webkit-transform: scale(0.91); + transform: scale(0.91); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -webkit-transform: scale(0.98); + transform: scale(0.98); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -webkit-transform: scale(0.87); + transform: scale(0.87); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} diff --git a/frontend/react-code/src/main.jsx b/frontend/react-code/src/main.jsx new file mode 100644 index 0000000000000000000000000000000000000000..54b39dd1d900e866bb91ee441d372a8924b9d87a --- /dev/null +++ b/frontend/react-code/src/main.jsx @@ -0,0 +1,10 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import App from './App.jsx' +import './index.css' + +ReactDOM.createRoot(document.getElementById('root')).render( + + + , +) diff --git a/frontend/react-code/tailwind.config.js b/frontend/react-code/tailwind.config.js new file mode 100644 index 0000000000000000000000000000000000000000..8f533a0fed0c16a7fe952c9737eabee19bd1de27 --- /dev/null +++ b/frontend/react-code/tailwind.config.js @@ -0,0 +1,10 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./index.html", + "./src/**/*.{js,ts,jsx,tsx}"], + theme: { + extend: {}, + }, + plugins: [], +} + diff --git a/frontend/react-code/vite.config.js b/frontend/react-code/vite.config.js new file mode 100644 index 0000000000000000000000000000000000000000..5a33944a9b41b59a9cf06ee4bb5586c77510f06b --- /dev/null +++ b/frontend/react-code/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], +}) diff --git a/frontend/utils/ai71_utils.py b/frontend/utils/ai71_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..6313977adcf9a09ac7e68d04a78e346ccec74a1b --- /dev/null +++ b/frontend/utils/ai71_utils.py @@ -0,0 +1,34 @@ +from ai71 import AI71 +import os +from dotenv import load_dotenv + +load_dotenv() + +AI71_API_KEY = os.getenv("AI71_API_KEY") +client = AI71(AI71_API_KEY) + +def get_ai71_response(user_input): + system_prompt = """You are an advanced AI assistant specializing in healthcare and prescription analysis. Your role is to: + +1. Analyze prescription images and extracted text to identify medications accurately. +2. Provide detailed information about identified drugs, including their full names, primary uses, common side effects, recommended dosages, and any relevant warnings or precautions. +3. Assist in interpreting unclear or incomplete drug names, offering possible matches and relevant information. +4. Support general healthcare queries, offering informative and helpful responses while maintaining medical accuracy. +5. Aid in potential disease diagnosis based on symptoms, always recommending professional medical consultation. +6. Provide information on public health issues, including outbreak alerts and preventive measures. + +Remember to always prioritize patient safety. Encourage users to consult healthcare professionals for personalized medical advice, diagnosis, or treatment. Your role is to inform and assist, not to replace professional medical consultation.""" + + messages = [ + {"role": "system", "content": system_prompt}, + {"role": "user", "content": user_input} + ] + + response = client.chat.completions.create( + messages=messages, + model="tiiuae/falcon-180B-chat", + stream=False, + max_tokens=500 # Added max_tokens parameter + ) + + return response.choices[0].message.content diff --git a/genai-code/Final_Code_Doctor_Handwriting.ipynb b/genai-code/Final_Code_Doctor_Handwriting.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..9b5834c74b39187ae848e90f3de905ec250bf16f --- /dev/null +++ b/genai-code/Final_Code_Doctor_Handwriting.ipynb @@ -0,0 +1,133 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "dac0e0fe-9d17-4ab1-9f5c-b42bfef7450a", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-sdk in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.31.0)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.6.7)\n", + "Requirement already satisfied: opencv-python>=4.8.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (10.3.0)\n", + "Requirement already satisfied: supervision<1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.22.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (1.26.4)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.2.1)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.7.6)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (9.0.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2024.7.4)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pyyaml>=5.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (6.0.1)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (1.13.1)\n", + "Requirement already satisfied: packaging>=17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses-json>=0.6.0->inference-sdk) (23.2)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (3.0.9)\n", + "Requirement already satisfied: python-dateutil>=2.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (2.9.0.post0)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (1.0.0)\n", + "Requirement already satisfied: typing-extensions>=3.7.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (4.11.0)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil>=2.7->matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.16.0)\n" + ] + } + ], + "source": [ + "!pip install inference-sdk" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b60d9992-2fbf-4e46-b032-3e564ddf4fdf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-cli in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests<=2.31.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.31.0)\n", + "Requirement already satisfied: docker==6.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.1.3)\n", + "Requirement already satisfied: typer==0.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.9.0)\n", + "Requirement already satisfied: rich<=13.5.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (13.3.5)\n", + "Requirement already satisfied: skypilot==0.4.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.4.1)\n", + "Requirement already satisfied: PyYAML>=6.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.0.1)\n", + "Requirement already satisfied: supervision>=0.17.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.22.0)\n", + "Requirement already satisfied: opencv-python>=4.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: tqdm>=4.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.66.4)\n", + "Requirement already satisfied: GPUtil>=1.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.4.0)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (9.0.0)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.2.1)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.6.7)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (10.3.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.26.4)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.7.6)\n", + "Requirement already satisfied: packaging>=14.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (23.2)\n", + "Requirement already satisfied: urllib3>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.26.19)\n", + "Requirement already satisfied: websocket-client>=0.32.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.8.0)\n", + "Requirement already satisfied: pywin32>=304 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (305.1)\n", + "Requirement already satisfied: wheel in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.43.0)\n", + "Requirement already satisfied: cachetools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.3.3)\n", + "Requirement already satisfied: click>=7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (8.1.7)\n", + "Requirement already satisfied: colorama<0.4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.4.4)\n", + "Requirement already satisfied: cryptography in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (42.0.5)\n", + "Requirement already satisfied: jinja2>=3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.1.4)\n", + "Requirement already satisfied: jsonschema in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.19.2)\n", + "Requirement already satisfied: networkx in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.2.1)\n", + "Requirement already satisfied: pandas>=1.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.2.2)\n", + "Requirement already satisfied: pendulum in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.0.0)\n", + "Requirement already satisfied: PrettyTable>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.10.2)\n", + "Requirement already satisfied: python-dotenv in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.21.0)\n", + "Requirement already satisfied: tabulate in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.9.0)\n", + "Requirement already satisfied: typing-extensions in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.11.0)\n", + "Requirement already satisfied: filelock>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.13.1)\n", + "Requirement already satisfied: psutil in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.9.0)\n", + "Requirement already satisfied: pulp in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.9.0)\n", + "Requirement already satisfied: awscli>=1.27.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.33.31)\n", + "Requirement already satisfied: botocore>=1.29.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: boto3>=1.26.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (3.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2024.7.4)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.15.1)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (1.13.1)\n", + "Requirement already satisfied: docutils<0.17,>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.16)\n", + "Requirement already satisfied: s3transfer<0.11.0,>=0.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.10.2)\n", + "Requirement already satisfied: rsa<4.8,>=3.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (4.7.2)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.0.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (2.9.0.post0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jinja2>=3.0->skypilot==0.4.1->inference-cli) (2.1.3)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich<=13.5.2->inference-cli \ No newline at end of file diff --git a/genai-code/PROJECT_OVERVIEW.md b/genai-code/PROJECT_OVERVIEW.md new file mode 100644 index 0000000000000000000000000000000000000000..bbc6c0d3dc2961d72844c0c25cab37dd9bcdfb3d --- /dev/null +++ b/genai-code/PROJECT_OVERVIEW.md @@ -0,0 +1,70 @@ +### Project Overview - Medi Scape +Medi Scape is a healthcare application that allows users to upload prescription images, which are then processed to extract and analyze the text. The key components include image processing, text recognition, and context understanding using machine learning models. + +### Workflow Steps + +1. **User Uploads Prescription Image** + - **Frontend**: User uploads an image via the Streamlit app. + - **Action**: The image is sent to the backend for processing. + +2. **Backend Receives Image** + - **Backend**: The Django server receives the uploaded image. + - **Action**: The backend calls the Doctor's Handwriting Detection API to detect handwriting. + +3. **Doctor's Handwriting Detection API** + - **API**: The uploaded image is processed to detect bounding boxes and classify the handwritten text. + - **Action**: The API returns the bounding boxes and classified text to the backend. + +4. **Backend Calls OCR Model** + - **Backend**: Extract bounding boxes and classes from the API response. + - **Action**: Send the bounding boxes to an OCR model to convert the handwriting to text. + +5. **Backend Processes OCR Text** + - **Backend**: The OCR model returns the detected text. + - **Action**: Send the detected text to the Falcon LLM model via the AI71 API for context understanding. + +6. **Falcon LLM Model via AI71 API** + - **API**: The detected text is processed for context understanding by the Falcon LLM model. + - **Action**: The processed text is returned to the backend. + +7. **Backend Sends Final Results to Frontend** + - **Backend**: The final processed text received from the AI71 API. + - **Action**: Send the final results back to the frontend (Streamlit app) for user display. + +### Checklist / To-Do List + +1. **Frontend Development**: + - [x] Implement image upload functionality in the Streamlit app. + - [x] Ensure the image is correctly sent to the backend. + +2. **Backend Development**: + - [x] Set up Django server to receive and handle uploaded images. + - [x] Integrate Doctor's Handwriting Detection API to process the images. + - [x] Extract bounding boxes and classes from the API response. + - [x] Integrate OCR model to convert bounding boxes to text. + - [x] Process the OCR text using the Falcon LLM model via AI71 API. + - [x] Send the final processed text to the frontend. + +3. **API Integration**: + - [x] Ensure proper integration of the Doctor's Handwriting Detection API. + - [x] Ensure proper integration of the Falcon LLM model via AI71 API. + - [x] Implement fallback solutions (like iframes) for Streamlit if API integration fails. + +4. **Deployment**: + - [x] Deploy the handwriting classification API on HuggingFace. + - [x] Deploy the Streamlit app and ensure it is linked correctly with the backend. + - [x] Hide the HuggingFace name in the deployed interface for security reasons. + +5. **Testing and Validation**: + - [x] Test the entire workflow from image upload to final text display. + - [x] Validate the accuracy of the handwriting detection and OCR models. + - [x] Ensure the Falcon LLM model provides accurate and contextually relevant text analysis. + +6. **Documentation and Communication**: + - [x] Document the workflow and API integration steps. + - [x] Communicate with the team leader for the exact prompt required for the healthcare automation part. + - [x] Keep the team updated on progress and any issues encountered. + +7. **Deadline Management**: + - [x] Ensure all tasks are completed by the deadline (August 6). + diff --git a/genai-code/doc_img_1.jpg b/genai-code/doc_img_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5a94e8efb875c4e21d8fa336c7391d11f3d303f --- /dev/null +++ b/genai-code/doc_img_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a428110a5e3eb680d3fb12153a69896871365366ef66978a76d9f7fc141a0c27 +size 28845 diff --git a/genai-code/img2.jpg b/genai-code/img2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3e0915b13d860192fb2b41f4c3279a424b7a008 --- /dev/null +++ b/genai-code/img2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c935011c307d94c08f2a8249ad3a1c39448de28fd97fa01c4ac4a2ea316afa8a +size 24375 diff --git a/genai-code/testing.ipynb b/genai-code/testing.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..a1cef6ee5f7e90a3967a8a0b03a88e6f759a6316 --- /dev/null +++ b/genai-code/testing.ipynb @@ -0,0 +1,740 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "88064508-3826-44fe-8d47-d287c2ef2a54", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-sdk in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.31.0)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.6.7)\n", + "Requirement already satisfied: opencv-python>=4.8.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (10.3.0)\n", + "Requirement already satisfied: supervision<1.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.22.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (1.26.4)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (2.2.1)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (0.7.6)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-sdk) (9.0.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-sdk) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-sdk) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (3.7)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (1.26.19)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests>=2.0.0->inference-sdk) (2024.7.4)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (4.10.0.84)\n", + "Requirement already satisfied: pyyaml>=5.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (6.0.1)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision<1.0.0->inference-sdk) (1.13.1)\n", + "Requirement already satisfied: packaging>=17.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses-json>=0.6.0->inference-sdk) (23.2)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (3.0.9)\n", + "Requirement already satisfied: python-dateutil>=2.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (2.9.0.post0)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (1.0.0)\n", + "Requirement already satisfied: typing-extensions>=3.7.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-sdk) (4.11.0)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil>=2.7->matplotlib>=3.6.0->supervision<1.0.0->inference-sdk) (1.16.0)\n" + ] + } + ], + "source": [ + "!pip install inference-sdk" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "53c4cdd0-4da1-42a3-a858-d51560afa761", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: inference-cli in c:\\users\\sriram\\anaconda3\\lib\\site-packages (0.9.17)\n", + "Requirement already satisfied: requests<=2.31.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.31.0)\n", + "Requirement already satisfied: docker==6.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.1.3)\n", + "Requirement already satisfied: typer==0.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.9.0)\n", + "Requirement already satisfied: rich<=13.5.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (13.3.5)\n", + "Requirement already satisfied: skypilot==0.4.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.4.1)\n", + "Requirement already satisfied: PyYAML>=6.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (6.0.1)\n", + "Requirement already satisfied: supervision>=0.17.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.22.0)\n", + "Requirement already satisfied: opencv-python>=4.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: tqdm>=4.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (4.66.4)\n", + "Requirement already satisfied: GPUtil>=1.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.4.0)\n", + "Requirement already satisfied: py-cpuinfo>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (9.0.0)\n", + "Requirement already satisfied: aiohttp>=3.9.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (3.9.5)\n", + "Requirement already satisfied: backoff>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (2.2.1)\n", + "Requirement already satisfied: dataclasses-json>=0.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.6.7)\n", + "Requirement already satisfied: pillow>=9.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (10.3.0)\n", + "Requirement already satisfied: numpy>=1.20.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (1.26.4)\n", + "Requirement already satisfied: aioresponses>=0.7.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from inference-cli) (0.7.6)\n", + "Requirement already satisfied: packaging>=14.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (23.2)\n", + "Requirement already satisfied: urllib3>=1.26.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.26.19)\n", + "Requirement already satisfied: websocket-client>=0.32.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (1.8.0)\n", + "Requirement already satisfied: pywin32>=304 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from docker==6.1.3->inference-cli) (305.1)\n", + "Requirement already satisfied: wheel in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.43.0)\n", + "Requirement already satisfied: cachetools in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.3.3)\n", + "Requirement already satisfied: click>=7.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (8.1.7)\n", + "Requirement already satisfied: colorama<0.4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.4.4)\n", + "Requirement already satisfied: cryptography in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (42.0.5)\n", + "Requirement already satisfied: jinja2>=3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.1.4)\n", + "Requirement already satisfied: jsonschema in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.19.2)\n", + "Requirement already satisfied: networkx in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.2.1)\n", + "Requirement already satisfied: pandas>=1.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.2.2)\n", + "Requirement already satisfied: pendulum in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.0.0)\n", + "Requirement already satisfied: PrettyTable>=2.0.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.10.2)\n", + "Requirement already satisfied: python-dotenv in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.21.0)\n", + "Requirement already satisfied: tabulate in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (0.9.0)\n", + "Requirement already satisfied: typing-extensions in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (4.11.0)\n", + "Requirement already satisfied: filelock>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (3.13.1)\n", + "Requirement already satisfied: psutil in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (5.9.0)\n", + "Requirement already satisfied: pulp in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (2.9.0)\n", + "Requirement already satisfied: awscli>=1.27.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.33.31)\n", + "Requirement already satisfied: botocore>=1.29.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: boto3>=1.26.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from skypilot==0.4.1->inference-cli) (1.34.149)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.2.0)\n", + "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (23.1.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.4.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (6.0.4)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from aiohttp>=3.9.0->inference-cli) (1.9.3)\n", + "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (3.21.3)\n", + "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from dataclasses-json>=0.6.0->inference-cli) (0.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (3.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from requests<=2.31.0->inference-cli) (2024.7.4)\n", + "Requirement already satisfied: markdown-it-py<3.0.0,>=2.2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.2.0)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rich<=13.5.2->inference-cli) (2.15.1)\n", + "Requirement already satisfied: defusedxml<0.8.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (0.7.1)\n", + "Requirement already satisfied: matplotlib>=3.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (3.8.4)\n", + "Requirement already satisfied: opencv-python-headless>=4.5.5.64 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (4.10.0.84)\n", + "Requirement already satisfied: scipy<2.0.0,>=1.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from supervision>=0.17.1->inference-cli) (1.13.1)\n", + "Requirement already satisfied: docutils<0.17,>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.16)\n", + "Requirement already satisfied: s3transfer<0.11.0,>=0.10.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.10.2)\n", + "Requirement already satisfied: rsa<4.8,>=3.1.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from awscli>=1.27.10->skypilot==0.4.1->inference-cli) (4.7.2)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.0.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from botocore>=1.29.10->skypilot==0.4.1->inference-cli) (2.9.0.post0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jinja2>=3.0->skypilot==0.4.1->inference-cli) (2.1.3)\n", + "Requirement already satisfied: mdurl~=0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from markdown-it-py<3.0.0,>=2.2.0->rich<=13.5.2->inference-cli) (0.1.0)\n", + "Requirement already satisfied: contourpy>=1.0.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (0.11.0)\n", + "Requirement already satisfied: fonttools>=4.22.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (4.51.0)\n", + "Requirement already satisfied: kiwisolver>=1.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (1.4.4)\n", + "Requirement already satisfied: pyparsing>=2.3.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from matplotlib>=3.6.0->supervision>=0.17.1->inference-cli) (3.0.9)\n", + "Requirement already satisfied: pytz>=2020.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2024.1)\n", + "Requirement already satisfied: tzdata>=2022.7 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pandas>=1.3.0->skypilot==0.4.1->inference-cli) (2023.3)\n", + "Requirement already satisfied: wcwidth in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from PrettyTable>=2.0.0->skypilot==0.4.1->inference-cli) (0.2.5)\n", + "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json>=0.6.0->inference-cli) (1.0.0)\n", + "Requirement already satisfied: cffi>=1.12 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cryptography->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: jsonschema-specifications>=2023.03.6 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (2023.7.1)\n", + "Requirement already satisfied: referencing>=0.28.4 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.30.2)\n", + "Requirement already satisfied: rpds-py>=0.7.1 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from jsonschema->skypilot==0.4.1->inference-cli) (0.10.6)\n", + "Requirement already satisfied: time-machine>=2.6.0 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from pendulum->skypilot==0.4.1->inference-cli) (2.14.2)\n", + "Requirement already satisfied: pycparser in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from cffi>=1.12->cryptography->skypilot==0.4.1->inference-cli) (2.21)\n", + "Requirement already satisfied: six>=1.5 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from python-dateutil<3.0.0,>=2.1->botocore>=1.29.10->skypilot==0.4.1->inference-cli) (1.16.0)\n", + "Requirement already satisfied: pyasn1>=0.1.3 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from rsa<4.8,>=3.1.2->awscli>=1.27.10->skypilot==0.4.1->inference-cli) (0.4.8)\n", + "Command failed. Cause: Error connecting to Docker daemon. Is docker installed and running? See https://www.docker.com/get-started/ for installation instructions.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\SRIRAM\\anaconda3\\Lib\\site-packages\\paramiko\\transport.py:219: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release\n", + " \"class\": algorithms.Blowfish,\n" + ] + } + ], + "source": [ + "!pip install inference-cli && inference server start" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "1081e8e6-62a6-4180-a852-bfec51cbc7f9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "1917837d-170e-4196-8d13-c5e235208867", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-python-headless in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-python-headless) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-python-headless" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "013b6dcf-8021-4101-bc20-969c56f46f92", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: opencv-contrib-python in c:\\users\\sriram\\anaconda3\\lib\\site-packages (4.10.0.84)\n", + "Requirement already satisfied: numpy>=1.21.2 in c:\\users\\sriram\\anaconda3\\lib\\site-packages (from opencv-contrib-python) (1.26.4)\n" + ] + } + ], + "source": [ + "!pip install opencv-contrib-python" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "74a30e15-e6be-4afd-9ddd-6e5216bfac95", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)\n", + "ERROR: No matching distribution found for cv2\n" + ] + } + ], + "source": [ + "!pip install cv2" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "cb410515-925c-426d-bc73-ae3702786ede", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Detected angle: 87.07927703857422\n", + "Corrected angle: 0\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAigAAAEuCAYAAACkvOkFAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOy9d3hcxfU+/m5vqqsuF8kVd2xwN2AbY9MJNQQIMSUfOgk9kEILEEIChC+hhARMC6aZlhCKAZtqg8G9y1WS1bu0q+3z+0O/Mz539u5KsiWtZfZ9Hj2S7s69d2buu/ecOW0MQgiBJJJIIokkkkgiiUMIxkR3IIkkkkgiiSSSSEJFUkFJIokkkkgiiSQOOSQVlCSSSCKJJJJI4pBDUkFJIokkkkgiiSQOOSQVlCSSSCKJJJJI4pBDUkFJIokkkkgiiSQOOSQVlCSSSCKJJJJI4pBDUkFJIokkkkgiiSQOOSQVlCSSSCKJJJJI4pDDj1pBWb9+PS6//HIMGzYMDocDDocDI0aMwJVXXonvv/8+0d3rEzz//PMwGAzYs2dPortyyILmiP/k5ORgzpw5+O9//6tpazAYcPfddyemoweAu+++GwaDIdHd6Hc4nDmRRHzoPXv+s3z58j65f0++sy+55BIUFxf32PV6CuZEdyBR+Mc//oHrrrsORxxxBH79619j7NixMBgM2LJlCxYvXowpU6Zgx44dGDZsWKK7msQhgkWLFmHUqFEQQqCqqgp///vfcfrpp+O9997D6aefnujuJZEAdIUTK1aswMCBAxPc0yR6GvTsVYwZMyYBvTk88aNUUL7++mtcc801OPXUU/Hmm2/CarXKz44//nhce+21eOONN+BwOGJew+v1wul09kV3kzhEMG7cOEyePFn+f9JJJyEzMxOLFy/uNQWlvb1dl4fBYBAGgwFm84/yK3zIoCucmD59ekL6lnxH9S7UZ98ZhBDw+Xxx5UoSWvwoXTwPPPAATCYT/vGPf2iUE47zzjsPhYWFADrMXykpKdiwYQMWLFiA1NRUzJs3DwCwdOlS/OQnP8HAgQNht9sxfPhwXHnllairq5PX+vLLL2EwGLB48eKo+7z44oswGAxYtWoVAGDXrl342c9+hsLCQthsNuTl5WHevHlYu3at5rxXXnkFM2bMQEpKClJSUjBx4kQ8++yz8vOu9CsePvnkE8ybNw9paWlwOp2YNWsWPv300y6d+2OB3W6H1WqFxWKJ2SaWC0XPTFtcXIzTTjsNb731FiZNmgS73Y577rkHy5cvh8FgwEsvvYSbb74ZAwYMgM1mw44dOwB0/Vm9//77mDhxImw2G4YMGYK//vWvBz8JSWigxwnVxUPPftmyZbj66quRnZ2NrKwsnH322aioqNBc77XXXsOCBQtQUFAAh8OB0aNH4/bbb4fH49G0i/WO+uMf/wiz2YyysrKovl522WXIysqCz+fr2UlIAkDHc7/uuuvw9NNPY/To0bDZbHjhhRcAAF999RXmzZuH1NRUOJ1OzJw5E++//37UNVauXIlZs2bBbrejsLAQd9xxB4LBoO79XnvtNcyYMQMulwspKSk48cQTsWbNmqh2zz//PI444gjYbDaMHj0aL774Ys8OvAfxo1NQwuEwli1bhsmTJ6OgoKDL5wUCAZxxxhk4/vjj8e677+Kee+4BAOzcuRMzZszAU089hY8//hh33nknvv32WxxzzDGSSMceeywmTZqEJ554Iuq6f//73zFlyhRMmTIFAHDKKafghx9+wEMPPYSlS5fiqaeewqRJk9DU1CTPufPOO3HRRRehsLAQzz//PN5++20sXLgQe/fulW260q9YePnll7FgwQKkpaXhhRdewOuvvw63240TTzzxR62khMNhhEIhBINBlJeX44YbboDH48GFF17YY/dYvXo1br31VvzqV7/Chx9+iHPOOUd+dscdd6C0tBRPP/00/vOf/yA3N7fLz+rTTz/FT37yE6SmpuLVV1/FX/7yF7z++utYtGhRj/X9x4iD4cQvf/lLWCwWvPLKK3jooYewfPly/PznP9e0KSkpwSmnnIJnn30WH374IW644Qa8/vrruhY7vXfUlVdeCbPZjH/84x+atg0NDXj11Vdx+eWXw263H9wk/EhBz57/hMNhTZt33nkHTz31FO6880589NFHOPbYY/H555/j+OOPR3NzM5599lksXrwYqampOP300/Haa6/Jczdv3ox58+ahqakJzz//PJ5++mmsWbMG9913X1RfHnjgAVxwwQUYM2YMXn/9dbz00ktobW3Fsccei82bN8t2zz//PC699FKMHj0aS5Yswe9//3v88Y9/xGeffdZ7E3UwED8yVFVVCQDiZz/7WdRnoVBIBINB+ROJRIQQQixcuFAAEM8991zca0ci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ujrcc889B9QvQkpKCh5//HEsXLgQDQ0NOPfcc5Gbm4va2lqsW7cOtbW1eOqppzq9zuGIjRs3IhQKAegwl7711ltYunQpzjrrLAwZMkT3nFNOOQVutxuXX3457r33XpjNZjz//PO6aZ/dRXee1R//+EecdNJJmD9/Pm6++WaEw2H8+c9/hsvlQkNDw0H35ceKA+FEVzFz5kxkZmbiqquuwl133QWLxYJ///vfWLduXbevZTKZcO211+I3v/kNXC4XLrnkkoPqWxLaZ88xbNiwuMrpn/70J8yfPx9z587FLbfcAqvViieffBIbN27E4sWLpeLw+9//Hu+99x6OP/543HnnnXA6nXjiiSeiYgCLi4tx77334ne/+x127dola/FUV1fju+++g8vlwj333AOj0Yg//vGP+OUvf4mzzjoL//d//4empibcfffdh66rN8FBugnF2rVrxaWXXiqGDBkibDabsNvtYvjw4eIXv/iF+PTTT2W7hQsXCpfLpXuNzZs3i/nz54vU1FSRmZkpzjvvPFFaWhoVuc9RXFwsRo8eHXW8urpaXHLJJWLUqFHC5XKJlJQUMWHCBPHoo4+KUCikafviiy+KKVOmCLvdLlJSUsSkSZPEokWLut0vvWwSIYT4/PPPxamnnircbrewWCxiwIAB4tRTTxVvvPFG/Ek9DKEXtZ+eni4mTpwoHnnkEeHz+WRbvef+3XffiZkzZwqXyyUGDBgg7rrrLvGvf/1LN4vn1FNPjbo/ZfHEmvuuPqv33ntPTJgwQVitVjF48GDx4IMPxswySiI+DoYTdO6qVas016TnvGzZMnnsm2++ETNmzBBOp1Pk5OSIX/7yl2L16tUCgOb7Hu8dRdizZ48AIK666qqDGvuPHfGyeACIf/7zn0KIjud+7bXX6l7jyy+/FMcff7xwuVzC4XCI6dOni//85z9R7b7++msxffp0YbPZRH5+vrj11lvFM888o/vOfuedd8TcuXNFWlqasNlsoqioSJx77rnik08+0bT717/+JUaMGCGsVqsYOXKkeO6558TChQsPySwegxBC9IkmlASADivJkUceiSeeeALXXHNNoruTRBJJ/Ejw+OOP41e/+hU2btyIsWPHJro7SSTRKZIKSh9h586d2Lt3L37729+itLQUO3bsSJahTiKJJHoda9aswe7du3HllVdi1qxZeOeddxLd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MIiamhp89dVX+POf/4y//vWveO2113DCCSckuotJJAD//Oc/cc011+CII47ArbfeijFjxiAYDOL777/H008/jRUrVuDtt9/u8ftWVFTgnnvuQXFxMSZOnNjj108iif6Iw1ZBGTduHCZPnpzobiRxiELlxznnnIMbb7wRxxxzDM4++2yUlJQc9FbpSfQvrFixAldffTXmz5+Pd955R5PaOX/+fNx888348MMPE9jD3oP4/4PJk0jiUEK/TDO22Wy46667Djo3vKWlBf/3f/+HrKwspKSk4KSTTsL27dt127777ruYMGECbDYbhg4disceewx33323burqk08+iYkTJ8LhcCAzMxPnnnsudu3adUB9vOSSS5CSkoKtW7fixBNPhMvlQkFBAR588EEAwMqVK3HMMcfA5XJh5MiReOGFFzTn19bW4pprrsGYMWOQkpKC3NxcHH/88fjyyy817Ww2G2688UZccsklSE1NRUZGBi666CKsWrUKBoMBzz//vKb9999/jzPOOEMW85o0aRJef/31AxrjgaKneEAYPHgwHn74YbS2tuIf//iHPN6VsXq9Xtxyyy0YMmSIrMY7efJkLF68OO49v/76a2RnZ+O0006Dx+MBAJSUlODCCy9Ebm4ubDYbRo8ejSeeeEKeI4RAXl4err32WnksHA7L1OTq6mp5/JFHHoHZbEZTU1On41Hnc+XKlZg1axbsdjsKCwtxxx13JHzrdxU9yYEHHngABoMBzzzzjO71rFYrzjjjDAAd2UsPPfQQRo0aJXcz/8UvfoHy8nLNOXPmzMG4ceOwatUqHHvssXA6nRg6dCgefPBBmVW1fPlyTJkyBQBw6aWXyvTwu+++W17nvffew4wZM+B0OpGamor58+djxYoVmntdcsklKC4ujuq33nvKYDDguuuuw9NPP43Ro0fDZrPhhRdegM1mwymnnIJjjjkGKSkpSE1NxahRo/Db3/622/PZl+jpd8GPHYfMfCbUwdQLIB/5ypUrRTAY1PyEQiHZLhKJiLlz5wqbzSbuv/9+8fHHH4u77rpLDB06NCoG5YMPPhBGo1HMmTNHvP322+KNN94Q06ZNE8XFxUKdwv/7v/8TFotF3HzzzeLDDz8Ur7zyihg1apTIy8sTVVVVXeo7j0FZuHChsFqtYvTo0eKxxx4TS5cuFZdeeqkAIO644w4xcuRI8eyz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LcOJJ56IE044AR9++KFcxWZmZsJkMuHiiy/WBMByDBkyRP49b948vPvuu/j8888RiUQwZ84cpKamorCwEEuXLsUnn3yCY489VvKuO+PJysqKevZANB8OF5hMJsybNw8ffPABysvL41a4pPdFZWVlVLuKigo5zz0Bfi8VFRUVcnNPALDb7fD7/VHtYi0YYu3BdOmll+LSSy+Fx+PBF198gbvuugunnXYatm/fjqKiogMdShJJdB+J9TAdGJ544glZROmoo44SX3zxhfysq8XOeiMG5auvvhIAxGuvvXZA44oVg6JX3Gv27Nli7NixUceLiorEqaeeKv3O/CcvL08I0VGIymg0ivT0dFFQUCDsdrsYPny4ACD+97//yWv5fD4xduxYAUBYrVZx+umni7KyMjFixAhxyimnHNAYewrxOBAP8fixd+9eMWjQIJGeni5qamqEEOKgxnrDDTcIAMLj8QghtM9y8+bNorCwUEyYMEFTHO6EE04QRx55pIZrsfD666/L4MljjjlGHr/44ovF8ccfL8xmszjhhBOieGC1WmXbSCQi7rrrLsmD2bNni40bN2piUHw+n7juuuuE2+0WBoNBABDffPPNAc1JT+NAeaCHb775RphMJnHSSSfpzn8gEBDvvfee2Lp1qwAQFTj63XffCQDid7/7nTwW63uqxousX79eABBPPvmkpl04HBYDBgwQEydOFJFIRB5va2sTubm5YtasWfLYn/70J2E0GjVxQ36/X7jdbt2YvGuvvVYIEZsDhHfeeUcAEKeddprIysoSTqdTvgsOBfQkBw5nxJMJQnTOAyGEfBf0FQ/6nYLy6quvCovFIv75z3+KzZs3i1//+tfC5XKJvXv3CiH2C6BFixbJaHj+Q4InHA6L4447TthsNvHAAw90K4vnzTffFNOmTRNFRUXCYDBo+nfFFVcIp9Mpbr31VvGf//xHfPbZZ+Lf//63uPrqq6NePip6WkEZO3asuOmmm4TBYBA33XSTWLJkiXjyySdFfn6+yMrKEgaDQSxZskRs2LBBnHPOOcJkMonMzEzx5JNPio8//lhMmDBBmEwmAUDce++9Yu7cueLII48US5cuFTabTSxYsEC88sor4vPPPxdvv/22eOCBB8S5557b5Wd5oOiMA/Gg8uPLL78US5YsETfccINIT08XbrdbfPbZZ7L9Z5991qWxTp06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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import cv2\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "\n", + "def preprocess_image(image_path):\n", + " # Load the image\n", + " image = cv2.imread(image_path)\n", + " \n", + " # Convert to grayscale\n", + " gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)\n", + " plt.subplot(3, 4, 1)\n", + " plt.title(\"Grayscale\")\n", + " plt.imshow(gray, cmap='gray')\n", + " \n", + " # Remove noise\n", + " blurred = cv2.GaussianBlur(gray, (5, 5), 0)\n", + " plt.subplot(3, 4, 2)\n", + " plt.title(\"Blurred\")\n", + " plt.imshow(blurred, cmap='gray')\n", + " \n", + " # Thresholding/Binarization\n", + " _, binary = cv2.threshold(blurred, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)\n", + " plt.subplot(3, 4, 3)\n", + " plt.title(\"Binary\")\n", + " plt.imshow(binary, cmap='gray')\n", + " \n", + " # Dilation and Erosion\n", + " kernel = np.ones((1, 1), np.uint8)\n", + " dilated = cv2.dilate(binary, kernel, iterations=1)\n", + " eroded = cv2.erode(dilated, kernel, iterations=1)\n", + " plt.subplot(3, 4, 4)\n", + " plt.title(\"Eroded\")\n", + " plt.imshow(eroded, cmap='gray')\n", + " \n", + " # Display the original image and the edge-detected image\n", + " edges = cv2.Canny(eroded, 100, 200)\n", + " #plt.subplot(121), plt.imshow(deskewed, cmap='gray')\n", + " #plt.title('Original Image'), plt.xticks([]), plt.yticks([])\n", + " plt.subplot(3,4,5) \n", + " plt.title('Edge Image')\n", + " plt.imshow(edges, cmap='gray')\n", + "\n", + " \n", + " # Deskewing\n", + " coords = np.column_stack(np.where(edges > 0))\n", + " angle = cv2.minAreaRect(coords)[-1]\n", + " print(f\"Detected angle: {angle}\") \n", + " if angle < -45:\n", + " angle = -(90 + angle)\n", + " else:\n", + " angle = -angle\n", + " \n", + " angle = 0\n", + " print(f\"Corrected angle: {angle}\") \n", + " (h, w) = edges.shape[:2]\n", + " center = (w // 2, h // 2)\n", + " M = cv2.getRotationMatrix2D(center, angle, 1.0)\n", + " deskewed = cv2.warpAffine(edges, M, (w, h), flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE)\n", + " plt.subplot(3, 4, 6)\n", + " plt.title(\"Deskewed\")\n", + " plt.imshow(deskewed, cmap='gray')\n", + " \n", + " # Find contours\n", + " contours, hierarchy = cv2.findContours(deskewed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)\n", + "\n", + " # Draw contours on the original image\n", + " contour_image = image.copy()\n", + " cv2.drawContours(contour_image, contours, -1, (0, 255, 0), 2)\n", + " plt.subplot(3, 4, 7)\n", + " plt.title('Contours')\n", + " plt.imshow(cv2.cvtColor(contour_image, cv2.COLOR_BGR2RGB))\n", + "\n", + " plt.show()\n", + " \n", + " return contour_image\n", + "\n", + "# Example usage\n", + "preprocessed_image = preprocess_image('img2.jpg') ##################-----------Input image from user ------------- ####################################################################\n", + "cv2.imwrite('preprocessed_image_2.jpg', preprocessed_image)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "32fdc372-514f-4e01-bbcf-3cb9cb82b483", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAKQAAACrCAYAAADo4zeUAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAA//klEQVR4nO29e5BlZXnv/3nXZd+7d19nuufWM8BwcyaAAwGJXGNQTiBR8Ug0x6NVnvxieUmIWikvlQJTKbFSlZgqE5MT9XhXOJ5AFDUgBIaAAiIIDjPjDDj3S09PX3fv27q+vz82a/W71l5rd/cATjf2t6tr773We1vv+13P+zzPexNSSskKVrBEoJ3uAqxgBSpWCLmCJYUVQq5gSWGFkCtYUlgh5AqWFFYIuYIlhRVCrmBJYYWQK1hSWCHkCpYUVgh5GvH5z3+er3zlK7+WvOr1Orfddhvbt2//teR3qlgh5GnEr5uQn/rUp1YIuYIVLApyBYvCI488Iq+99lpZKpVkPp+Xr3vd6+T3v//98P6tt94qk6r1y1/+sgTk/v37pZRSjoyMSCDyPzIyIqWU8qGHHpKA/PrXvy7/4i/+Qq5evVrmcjl55ZVXyqeffjqS7lVXXSWvuuqqtvze/e53h+nt37+/LS9Avvvd7345quRlxYqEXAQefvhhrr32WmZmZvjSl77Et7/9bbq6urjxxhu58847F5XW3XffzRlnnMFFF13EY489xmOPPcbdd98dCfOJT3yCffv28cUvfpEvfvGLHDt2jKuvvpp9+/YtKq/h4WHuvfdeAN773veG+f3VX/3VotL5dcA43QVYTvjYxz5Gb28v27dvp1QqAXDDDTdw4YUX8tGPfpS3v/3tC07roosuIp/P093dzWWXXZYYZnBwkLvvvhshBACvf/3r2bx5M7fffjtf+MIXFpxXNptl27ZtAKxbty41v6WAFQm5QNRqNZ544gne9ra3hWQE0HWdd73rXRw5coQ9e/a8rHm+853vDMkIMDIywuWXX85DDz30suazlLBCyAViamoKKSXDw8Nt99asWQPAxMTEy5rn0NBQ4rWXO5+lhBVCLhC9vb1omsbx48fb7h07dgyAgYEBcrkcAJZlRcKMj48vOs/R0dHEa/39/eHvXC7Xltep5rcUsELIBaJYLHLppZdy11130Wg0wuu+7/ONb3yDdevWcfbZZ7Nx40YAfvGLX0Ti33PPPW1pZrPZSFpxfPvb30YqK0wOHjzIT37yE66++urw2saNG9m7d2+ElBMTE/zkJz9pywvomN+SwOk285cTtm/fLk3TlJdeeqn8zne+I7/73e/KN77xjVIIIe+44w4ppZQzMzOyr69Pbt26Vd59993ynnvukTfddJPctGlTxO0jZcs1k81m5R133CF/+tOfyl/84hdSyjm3z/r16+Uf/uEfyu9///vym9/8pjzrrLNkV1eXfOGFF8I0Hn30UQnIt73tbfK+++6T3/rWt+SFF14oR0ZGQrdPgJGREXnOOefI++67Tz755JORsiwVrBBykQj8kMViUebzeXnZZZfJe+65JxLmpz/9qbz88stlsViUa9eulbfeeqv84he/2EbIAwcOyOuuu052dXWl+iH/7M/+TA4ODspsNiuvuOIK+bOf/aytTF/96lfleeedJ3O5nDz//PPlnXfeGfFDBnjggQfkRRddJLPZ7JL1QwopV1YdLjVs376da665hu985zu87W1vO93F+bViRYdcwZLCCiFXsKSw0mWvYEnhtErIz3/+82zatIlcLse2bdt45JFHTmdxVrAEcNoIeeedd3LLLbfwyU9+kp///OdcccUVXH/99Rw6dOh0FWkFSwCnrcu+9NJLee1rX8s///M/h9fOO+883vzmN3P77bd3jOv7PseOHaOrqysy1ruCpQkpJbOzs6xZswZN6ywDT8tsH9u2eeqpp/jYxz4WuX7ddde1jTBAaxhOHYk4evQo559//itezhW8vDh8+DDr1q3rGOa0EHJ8fBzP81i9enXk+urVqxPHb2+//XY+9alPtV3/7Gc/Sz6fD9863/cj34UQSCnDzwC+7yOlRNd1gIiU1TQtjBsg+K7repiO7/uR+7I1yJD6zK7romkaQgh830fX9bC8QVpBuTRNQ9O0tjInlSn4VPP3PA/P88J04uULyhD8jpc7eE4hRJiO+rxqHDWuWjee54Xfm80mn/rUp+jq6kqtnwCndT5kvLsNKiGOj3/843z4wx8Of1cqFdavX08+n48QMt6AwXW1QVRyBg3m+37Y4CoRgrBBOmp3ozZI0MDq9Xg6rutG8g4IGY+rliOe/kIJGaTTqd4DQgZlCtIXQkQIGZAr+K4+l1qnQZ0H4VzXbWvThahXp4WQAwMD6LreJg3HxsbapCa0JgYEkwPm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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.subplot(3, 4, 6)\n", + "plt.title(\"output\")\n", + "plt.imshow(preprocessed_image, cmap='gray')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "9498b93c-1da4-4d4d-8189-26b5c4b757eb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'inference_id': '6305015b-5ddc-467e-885d-3420a70ba722', 'time': 0.04288071599967225, 'image': {'width': 640, 'height': 640}, 'predictions': [{'x': 252.0, 'y': 441.0, 'width': 90.0, 'height': 346.0, 'confidence': 0.9406572580337524, 'class': 'r', 'class_id': 51, 'detection_id': 'dc7cbac0-388d-447a-b421-0ecbc4475664'}, {'x': 96.5, 'y': 307.0, 'width': 105.0, 'height': 612.0, 'confidence': 0.9316421151161194, 'class': 'P', 'class_id': 24, 'detection_id': '66c427ca-1f78-42ed-975b-f0e431671502'}, {'x': 456.0, 'y': 448.0, 'width': 66.0, 'height': 302.0, 'confidence': 0.9119941592216492, 'class': 'e', 'class_id': 38, 'detection_id': '2b792c76-9507-4d3e-8a46-86852e95fba5'}, {'x': 528.5, 'y': 313.5, 'width': 51.0, 'height': 607.0, 'confidence': 0.902350902557373, 'class': 'l', 'class_id': 45, 'detection_id': 'd0ce1d99-622c-4190-91da-4f5cf1a599b3'}, {'x': 392.5, 'y': 434.0, 'width': 61.0, 'height': 252.0, 'confidence': 0.8771288394927979, 'class': 'c', 'class_id': 36, 'detection_id': '24df5aee-b964-41da-b9f3-be67845965ca'}, {'x': 154.0, 'y': 462.5, 'width': 90.0, 'height': 307.0, 'confidence': 0.7382596731185913, 'class': 'a', 'class_id': 34, 'detection_id': '2ac9f38b-5225-44cb-8a14-16869a9f692a'}, {'x': 323.0, 'y': 343.0, 'width': 50.0, 'height': 586.0, 'confidence': 0.7118730545043945, 'class': 'i', 'class_id': 42, 'detection_id': '814fd5cf-5fe8-4698-999f-d1c6eb526be0'}]}\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import os\n", + "from PIL import Image\n", + "from inference_sdk import InferenceHTTPClient\n", + "from roboflow import Roboflow\n", + "from PIL import Image\n", + "import supervision as sv\n", + "import cv2\n", + "\n", + "\n", + "CLIENT = InferenceHTTPClient(\n", + " api_url=\"https://detect.roboflow.com\",\n", + " api_key=\"LSbJ0tl3WTLn4Aqar0Sp\"\n", + ")\n", + "\n", + "\n", + "# Load the image\n", + "#doc_img = Image.open(\"preprocessed_image.jpg\")\n", + "\n", + "#preprocessed_image_path = Image.open(preprocessed_image)\n", + "\n", + "# Perform inference\n", + "result_doch1 = CLIENT.infer(preprocessed_image, model_id=\"doctor-s-handwriting/1\")\n", + "\n", + "# Print or process the result\n", + "print(result_doch1)\n", + "\n", + "\n", + "#rf = Roboflow(api_key=\"YkIPrzXAAK6EbPk1Ehjv\")\n", + "#project = rf.workspace().project(\"doctor-s-handwriting/1\")\n", + "#model = project.version(6).model\n", + "\n", + "#result = model.predict(\"preprocessed_image_2.jpg\", confidence=40, overlap=30).json()\n", + "\n", + "labels = [item[\"class\"] for item in result_doch1[\"predictions\"]]\n", + "\n", + "detections = sv.Detections.from_inference(result_doch1)\n", + "\n", + "image_np = np.array(preprocessed_image)\n", + "\n", + "label_annotator = sv.LabelAnnotator()\n", + "bounding_box_annotator = sv.BoxAnnotator()\n", + "\n", + "#image = cv2.imread(preprocessed_image_path)\n", + "\n", + "annotated_image = bounding_box_annotator.annotate(\n", + " scene=image_np, detections=detections)\n", + "annotated_image = label_annotator.annotate(\n", + " scene=annotated_image, detections=detections, labels=labels)\n", + "\n", + "annotated_image_pil = Image.fromarray(annotated_image)\n", + "\n", + "sv.plot_image(image=annotated_image_pil, size=(16, 16))" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "fd5d6ed0-178a-412e-b740-65a7ec1ad9d1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Unsorted Detections and Labels:\n", + "Detection 0: (array([207., 268., 297., 614.]), None, 0.9406572580337524, 51, None, {'class_name': 'r'}) - Label: r\n", + "Detection 1: (array([ 44., 1., 149., 613.]), None, 0.9316421151161194, 24, None, {'class_name': 'P'}) - Label: P\n", + "Detection 2: (array([423., 297., 489., 599.]), None, 0.9119941592216492, 38, None, {'class_name': 'e'}) - Label: e\n", + "Detection 3: (array([503., 10., 554., 617.]), None, 0.902350902557373, 45, None, {'class_name': 'l'}) - Label: l\n", + "Detection 4: (array([362., 308., 423., 560.]), None, 0.8771288394927979, 36, None, {'class_name': 'c'}) - Label: c\n", + "Detection 5: (array([109., 309., 199., 616.]), None, 0.7382596731185913, 34, None, {'class_name': 'a'}) - Label: a\n", + "Detection 6: (array([298., 50., 348., 636.]), None, 0.7118730545043945, 42, None, {'class_name': 'i'}) - Label: i\n", + "Sorted Detections and Labels:\n", + "Detection 0: Detections(xyxy=array([[ 44., 1., 149., 613.]]), mask=None, confidence=array([0.93164212]), class_id=array([24]), tracker_id=None, data={'class_name': array(['P'], dtype='" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import os\n", + "from PIL import Image\n", + "import cv2\n", + "import numpy as np\n", + "import supervision as sv\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Load the image\n", + "#preprocessed_image_path = \"preprocessed_image.jpg\"\n", + "image_np = np.array(preprocessed_image) # Using OpenCV to read the image\n", + "\n", + "# Perform inference\n", + "result_doch1 = CLIENT.infer(preprocessed_image, model_id=\"doctor-s-handwriting/1\")\n", + "\n", + "# Extract labels and detections\n", + "labels = [item[\"class\"] for item in result_doch1[\"predictions\"]]\n", + "detections = sv.Detections.from_inference(result_doch1)\n", + "\n", + "# Debug: Print unsorted detections and labels\n", + "print(\"Unsorted Detections and Labels:\")\n", + "for i, detection in enumerate(detections):\n", + " print(f\"Detection {i}: {detection} - Label: {labels[i]}\")\n", + "\n", + "# Function to extract the x1 coordinate from the detection\n", + "def get_x1(detection):\n", + " # Extract the x1 coordinate from detection's bounding box\n", + " return detection.xyxy[0][0] # Access the first element of the bounding box array\n", + "\n", + "# Sort detections and labels by the x-coordinate of the bounding box\n", + "sorted_indices = sorted(range(len(detections)), key=lambda i: get_x1(detections[i]))\n", + "sorted_detections = [detections[i] for i in sorted_indices]\n", + "sorted_labels = [labels[i] for i in sorted_indices]\n", + "\n", + "# Debug: Print sorted detections and labels\n", + "print(\"Sorted Detections and Labels:\")\n", + "for i, detection in enumerate(sorted_detections):\n", + " print(f\"Detection {i}: {detection} - Label: {sorted_labels[i]}\")\n", + "\n", + "# Function to plot bounding boxes\n", + "def plot_bounding_boxes(image_np, detections):\n", + " image_with_boxes = image_np.copy()\n", + " for detection in detections:\n", + " x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates\n", + " cv2.rectangle(image_with_boxes, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0), 2)\n", + " return image_with_boxes\n", + "\n", + "# Function to plot labels\n", + "def plot_labels(image_np, detections, labels):\n", + " image_with_labels = image_np.copy()\n", + " for i, detection in enumerate(detections):\n", + " x1, y1, x2, y2 = detection.xyxy[0] # Extract bounding box coordinates\n", + " label = labels[i]\n", + " cv2.putText(image_with_labels, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2)\n", + " return image_with_labels\n", + "\n", + "# Plot bounding boxes with sorted detections\n", + "image_with_boxes = plot_bounding_boxes(image_np, sorted_detections)\n", + "\n", + "# Plot labels with sorted detections and labels\n", + "image_with_labels = plot_labels(image_np, sorted_detections, sorted_labels)\n", + "\n", + "# Convert images to RGB for plotting with matplotlib\n", + "image_with_boxes_rgb = cv2.cvtColor(image_with_boxes, cv2.COLOR_BGR2RGB)\n", + "image_with_labels_rgb = cv2.cvtColor(image_with_labels, cv2.COLOR_BGR2RGB)\n", + "\n", + "# Plot results using matplotlib\n", + "plt.figure(figsize=(12, 6))\n", + "\n", + "plt.subplot(1, 2, 1)\n", + "plt.title(\"Bounding Boxes\")\n", + "plt.imshow(image_with_boxes_rgb)\n", + "plt.axis('off')\n", + "\n", + "plt.subplot(1, 2, 2)\n", + "plt.title(\"Labels\")\n", + "plt.imshow(image_with_labels_rgb)\n", + "plt.axis('off')\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "c30c3f9d-463a-444a-96b5-8603428827f0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Paricel\n" + ] + } + ], + "source": [ + "# Convert list to string\n", + "resulting_string = ''.join(sorted_labels)\n", + "\n", + "print(resulting_string)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "96710cc5-cd5f-4aac-a04f-d11b5ce4857d", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ab338503-a6fc-40bb-8434-2caf407dd491", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1e5700c1-1a5a-4a84-855c-0c0f4e39f039", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "82d8544a-a06c-474a-9d31-7736012eb8e0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8a62a71f-2cd7-494f-b759-869482248381", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "900e34e0-4e85-47f9-93d3-8d75f256f322", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1ea2c525-ba1c-472b-aad5-d9e736b43c69", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9f30326a-aa6f-4ac3-8bb0-fba0e00094d3", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "35e34c3f-6ed2-47fe-8091-78f33603d62c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2e45a849-b818-4766-a36a-0735f29d4d25", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2b5cb7e3-3801-4027-b565-0f2d58e237bd", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "74e44a15-ac35-4080-a9cd-fcd89a68d3ef", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "19794036-c486-452e-a0eb-1c574ad505b5", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/logistic_regression_model.pkl b/logistic_regression_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..70dff0ca349c678253237465986bdba5753f9b90 --- /dev/null +++ b/logistic_regression_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd5b38cded9c2b4426bb8cc9f337cd078973f5488e2692f3ecd21db3cc41c96 +size 601655 diff --git a/normal_from_website.jpeg b/normal_from_website.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b6f4cf994b6ca1ad8958d822e50eafde3d2fc3f5 --- /dev/null +++ b/normal_from_website.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f740d39c1a90f7c1fd88127298b34ac4a16946cf3dda018c55838009869fcbf8 +size 16580 diff --git a/packages.txt b/packages.txt new file mode 100644 index 0000000000000000000000000000000000000000..a72c3b87c81fa656ec198458485c0f6b4f7df89a --- /dev/null +++ b/packages.txt @@ -0,0 +1 @@ +libgl1-mesa-glx \ No newline at end of file diff --git a/pneumoni_from_Website.png b/pneumoni_from_Website.png new file mode 100644 index 0000000000000000000000000000000000000000..8c1463a585025e21bbec8a4ad5ec30dc5b4ad95f Binary files /dev/null and b/pneumoni_from_Website.png differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4ff4b131be43f92a7f37c36924fb3c23e243fc3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +tensorflow +streamlit +requests +ai71 +python-dotenv +opencv-python +supervision +matplotlib +Pillow +inference-sdk +tensorflow +beautifulsoup4 +scikit-learn +nltk \ No newline at end of file diff --git a/utils/ai71_utils.py b/utils/ai71_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..6313977adcf9a09ac7e68d04a78e346ccec74a1b --- /dev/null +++ b/utils/ai71_utils.py @@ -0,0 +1,34 @@ +from ai71 import AI71 +import os +from dotenv import load_dotenv + +load_dotenv() + +AI71_API_KEY = os.getenv("AI71_API_KEY") +client = AI71(AI71_API_KEY) + +def get_ai71_response(user_input): + system_prompt = """You are an advanced AI assistant specializing in healthcare and prescription analysis. Your role is to: + +1. Analyze prescription images and extracted text to identify medications accurately. +2. Provide detailed information about identified drugs, including their full names, primary uses, common side effects, recommended dosages, and any relevant warnings or precautions. +3. Assist in interpreting unclear or incomplete drug names, offering possible matches and relevant information. +4. Support general healthcare queries, offering informative and helpful responses while maintaining medical accuracy. +5. Aid in potential disease diagnosis based on symptoms, always recommending professional medical consultation. +6. Provide information on public health issues, including outbreak alerts and preventive measures. + +Remember to always prioritize patient safety. Encourage users to consult healthcare professionals for personalized medical advice, diagnosis, or treatment. Your role is to inform and assist, not to replace professional medical consultation.""" + + messages = [ + {"role": "system", "content": system_prompt}, + {"role": "user", "content": user_input} + ] + + response = client.chat.completions.create( + messages=messages, + model="tiiuae/falcon-180B-chat", + stream=False, + max_tokens=500 # Added max_tokens parameter + ) + + return response.choices[0].message.content